AgentSkillsCN

developer-toolbox

代码审查、调试、测试、文档编写,以及 Git 操作等开发工作流程中不可或缺的专用代理。 包含 7 个经过精心设计的专用代理,具备强大的自动发现触发机制。 适用于:搭建开发工作流程、进行代码审查、调试错误、编写测试、生成文档、创建提交,或验证构建结果时。

SKILL.md
--- frontmatter
name: developer-toolbox
description: |
  Essential development workflow agents for code review, debugging, testing, documentation, and git operations.
  Includes 7 specialized agents with strong auto-discovery triggers.

  Use when: setting up development workflows, code reviews, debugging errors, writing tests,
  generating documentation, creating commits, or verifying builds.
license: MIT
metadata:
  version: "1.0.0"
  last_verified: "2025-01-20"
  author: "Jezweb"

Developer Toolbox

A collection of essential development workflow agents that integrate seamlessly with Claude Code.

What's Included

Agents (7)

AgentPurposeTriggers On
commit-helperGenerate conventional commit messages"commit message", "staged changes"
build-verifierVerify dist/ matches source after builds"changes not appearing", "verify build"
code-reviewerSecurity audits and code quality reviews"code review", "security audit", "OWASP"
debuggerSystematic debugging with root cause analysis"error", "TypeError", "stack trace", "bug"
test-runnerTDD workflow and test creation"write tests", "TDD", "coverage", "jest"
orchestratorCoordinate complex multi-step projects"coordinate", "multi-step", "complex feature"
documentation-expertREADME, API docs, architecture diagrams"document", "README", "API docs"

Rules (1)

RulePurpose
agent-first-thinkingBehavioral interrupt - consider agents before manual work

Installation

bash
# Via marketplace
/plugin install developer-toolbox

# Or local development
/plugin install ./skills/developer-toolbox

After installation, restart Claude Code to load the agents.

Usage Examples

Commit Helper

code
"Help me write a commit message for these staged changes"

Build Verifier

code
"My changes aren't appearing in production, verify the build output"

Code Reviewer

code
"Review this authentication code for security vulnerabilities"

Debugger

code
"I'm getting TypeError: Cannot read property 'map' of undefined"

Test Runner

code
"Use TDD to implement this user validation function"

Orchestrator

code
"Coordinate a refactor of the authentication system across 5 services"

Documentation Expert

code
"Create comprehensive API documentation for this REST endpoint"

Agent Design Philosophy

All agents follow the "MUST BE USED when" pattern for reliable auto-discovery:

yaml
description: |
  [Role] specialist. MUST BE USED when: [trigger 1], [trigger 2], [trigger 3].
  Use PROACTIVELY for [broad task category].

  Keywords: keyword1, keyword2, error-message-fragment

This ensures Claude Code discovers and proposes the right agent automatically based on user requests.

Agent-First Thinking Rule

The included agent-first-thinking.md rule encourages using agents by default:

The Inversion:

  • Wrong: "I'll do this manually unless it's big enough for agents"
  • Right: "I'll use agents unless there's a reason not to"

Triggers:

If about to...Use instead...
grep/glob 3+ timesExplore agent
Read 5+ filesExplore agent
Same edit across filesParallel agents
Audit multiple itemsParallel swarm

Customization

Each agent can be extended by editing its markdown file after installation:

bash
# Find installed agents
ls ~/.claude/plugins/cache/*/developer-toolbox/*/agents/

# Or copy to user-level for customization
cp [plugin-path]/agents/code-reviewer.md ~/.claude/agents/

Combining Agents

Agents work well together:

code
"Review this code for security issues, then write tests for the critical paths"
# → code-reviewer first, then test-runner
code
"Debug this failing test, document the root cause, and commit the fix"
# → debugger → documentation-expert → commit-helper

Version History

  • 1.0.0 (2025-01-20): Initial release with 7 agents and 1 rule