adr
Write an Architecture Decision Record documenting a significant technical decision.
Safely update project dependencies with compatibility verification.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/update-depsContext preview
What this command does when you run it.
Safely update project dependencies with compatibility verification.
name: update-deps description: Safely update project dependencies with compatibility verification.
Safely update project dependencies with compatibility verification.
1. List all outdated dependencies: `npm outdated`, `pip list --outdated`. 2. Categorize updates by risk:
3. For each update candidate:
4. Apply updates in order: patch first, then minor, then major. 5. After each batch, run the test suite. 6. If tests fail, identify the breaking dependency and provide fix guidance. 7. Update lock file and commit changes.
Dependency Updates Applied: Patch (safe): - <pkg> 1.0.0 -> 1.0.1 Minor (compatible): - <pkg> 1.0.0 -> 1.1.0 Major (breaking - review required): - <pkg> 1.0.0 -> 2.0.0: <breaking change summary> Tests: <pass/fail after updates>
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Write an Architecture Decision Record documenting a significant technical decision.
Conduct a structured design review of a module, feature, or system component.
Create a structured implementation plan for the requested feature or change.