Back to list
bearbinary

agentic-jumpstart-dependency-management

by bearbinary

0🍴 0📅 Jan 17, 2026

SKILL.md


name: "agentic-jumpstart-dependency-management" description: "Dependency management guidelines for Jarvy - crate selection criteria, feature flag best practices, version management, security auditing with cargo-audit and cargo-deny."

Dependency Management Guidelines

This skill provides guidance for managing Rust dependencies in the Jarvy project.

Dependency Selection Criteria

Prefer Standard Library First

Before adding external crates, verify stdlib cannot handle the need:

// PREFER: stdlib for simple operations
use std::fs;
use std::path::PathBuf;
use std::process::Command;

// AVOID: Adding crates for trivial functionality

Evaluation Checklist

When considering a new dependency:

  1. Necessity: Can this be implemented in <100 lines?
  2. Maintenance: Is the crate actively maintained?
  3. Transitive deps: How many dependencies does it bring?
  4. Compile time: What is the build time impact?
  5. License: Is it compatible (MIT, Apache-2.0, BSD)?

Reuse Existing Dependencies

NeedUse Existing
JSONserde_json
YAMLserde_yaml
TOMLtoml
Error typesthiserror
HTTPureq
Loggingtracing
CLI argsclap with derive
Interactive promptsinquire
Unique IDsuuid v7
Platform dirsdirs

Feature Flag Best Practices

Minimize Enabled Features

# GOOD: Explicit minimal features
clap = { version = "4.5", features = ["derive"] }
uuid = { version = "1.10", features = ["v7"] }
serde = { version = "1.0", features = ["derive"] }
ureq = { version = "3.1", features = ["json"] }

# BAD: Enabling all features
# clap = { version = "4.5", features = ["full"] }

Document Non-Obvious Features

# v7 provides time-ordered UUIDs for telemetry event ordering
uuid = { version = "1.10", features = ["v7"] }

Disable Default Features When Appropriate

some-crate = { version = "1.0", default-features = false, features = ["needed"] }

Version Management

Version Specification

# Standard: Allow patch and minor updates
serde = "1.0"

# Specific: Pin only when necessary
opentelemetry-otlp = "0.31.0"

Update Commands

# Update all dependencies
cargo update

# Update specific dependency
cargo update -p serde

# Check for outdated dependencies
cargo outdated

Lockfile Management

  • Commit Cargo.lock: This is an application, not a library
  • Review lockfile changes: Check diffs for unexpected updates

Security Auditing

Automated Auditing

# Install audit tools
cargo install cargo-audit
cargo install cargo-deny

# Run security advisory check
cargo audit

# Comprehensive check (security, licenses, duplicates)
cargo deny check

cargo-deny Configuration

Create deny.toml:

[advisories]
vulnerability = "deny"
unmaintained = "warn"
yanked = "deny"

[licenses]
unlicensed = "deny"
allow = ["MIT", "Apache-2.0", "BSD-2-Clause", "BSD-3-Clause", "ISC", "Zlib"]

[bans]
multiple-versions = "warn"
wildcards = "deny"

[sources]
unknown-registry = "deny"
unknown-git = "deny"

Security Workflow

  1. Pre-commit: Run cargo audit locally
  2. CI Pipeline: Run cargo deny check on every PR
  3. Weekly: Automated dependency update PRs
  4. Release: Full audit before publishing

Adding New Dependencies

Process

  1. Justify: Document why needed
  2. Research: Check alternatives and maintenance status
  3. Audit: Run cargo audit after adding
  4. Minimize: Enable only required features
  5. Test: Verify compile time impact

PR Template

## New Dependency: `crate-name`

**Purpose**: [What functionality?]

**Alternatives Considered**:
- stdlib: [Why not sufficient?]

**Metrics**:
- Transitive dependencies: [count]
- Build time impact: [minimal/moderate/significant]
- Last updated: [date]

**Features Enabled**: [list and why]

Build Optimization

Current Build Configuration

[build]
rustc-wrapper = "sccache"
jobs = 16

[profile.dev]
opt-level = 1

[profile.release]
lto = "thin"

Monitor Build Times

# Measure build time
cargo build --timings

# Generate HTML report
cargo build --timings=html

Platform-Specific Dependencies

[target.'cfg(target_os = "macos")'.dependencies]
macos-crate = "1.0"

[target.'cfg(target_os = "windows")'.dependencies]
windows-crate = "1.0"

Verify cross-platform compilation:

cargo check --target x86_64-unknown-linux-gnu
cargo check --target x86_64-apple-darwin
cargo check --target x86_64-pc-windows-msvc

Current Project Dependencies

Runtime Dependencies

CrateVersionPurpose
clap4.5.6CLI parsing
serde1.0.204Serialization
toml0.9.5Config parsing
thiserror2.0.16Error types
tracing0.1.40Logging
ureq3.1.2HTTP client
inquire0.9.1Interactive prompts
dirs6.0.0Platform directories
uuid1.10.0Unique IDs
machineid-rs1.2Machine fingerprint

Dev Dependencies

CrateVersionPurpose
tempfile3.20.0Temp file handling
assert_cmd2.0.17CLI testing

Dependency Checklist

  1. Checked if stdlib can handle the need
  2. Reviewed existing dependencies for reuse
  3. Minimized enabled features
  4. Ran cargo audit after adding
  5. Tested cross-platform compilation
  6. Documented justification in PR

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon