一键导入
dependency-management
Use when adding, removing, or updating Go/Rust dependencies. Enforces using go/cargo commands instead of direct file edits.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when adding, removing, or updating Go/Rust dependencies. Enforces using go/cargo commands instead of direct file edits.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when completing any Go code work or before marking Go tasks as done. Enforces gofmt, go test, and staticcheck as mandatory quality gates.
AI-native SDLC orchestration layer. Automatically routes tasks to strict/normal/rapid modes and coordinates Superpowers skills.
Use when completing any Rust code work or before marking Rust tasks as done. Enforces cargo fmt, cargo clippy, and cargo test as mandatory quality gates.
| name | dependency-management |
| description | Use when adding, removing, or updating Go/Rust dependencies. Enforces using go/cargo commands instead of direct file edits. |
Enforces using official package manager commands instead of direct file edits for dependency changes.
NEVER edit go.mod, go.sum, or Cargo.toml directly.
Add/Update:
go get github.com/pkg/example@latest
go add ./...
Remove (remove import first, then):
go mod tidy
Install specific version:
go get github.com/pkg/example@v1.2.3
Add:
cargo add serde --features derive
cargo add tokio --features "full"
cargo add anyhow
Add dev/test dependency:
cargo add --dev mockall
cargo add --test serde_json
Remove:
cargo remove unused_crate
Update:
cargo update
cargo update package_name
go get / cargo add commandgo.mod / Cargo.toml updated automaticallygo mod verify / cargo check)go/installer/, tools/bin2pb/, sni_tester/rust/tgbot/, rust/version-sync/go.mod or Cargo.toml lives)