home / skills / jezweb / claude-skills / developer-toolbox

developer-toolbox skill

/skills/developer-toolbox

This skill streamlines development workflows by coordinating commit, build, test, review, debug, and documentation tasks with specialized agents.

npx playbooks add skill jezweb/claude-skills --skill developer-toolbox

Review the files below or copy the command above to add this skill to your agents.

Files (11)
SKILL.md
4.0 KB
---
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)

| Agent | Purpose | Triggers On |
|-------|---------|-------------|
| **commit-helper** | Generate conventional commit messages | "commit message", "staged changes" |
| **build-verifier** | Verify dist/ matches source after builds | "changes not appearing", "verify build" |
| **code-reviewer** | Security audits and code quality reviews | "code review", "security audit", "OWASP" |
| **debugger** | Systematic debugging with root cause analysis | "error", "TypeError", "stack trace", "bug" |
| **test-runner** | TDD workflow and test creation | "write tests", "TDD", "coverage", "jest" |
| **orchestrator** | Coordinate complex multi-step projects | "coordinate", "multi-step", "complex feature" |
| **documentation-expert** | README, API docs, architecture diagrams | "document", "README", "API docs" |

### Rules (1)

| Rule | Purpose |
|------|---------|
| **agent-first-thinking** | Behavioral 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
```
"Help me write a commit message for these staged changes"
```

### Build Verifier
```
"My changes aren't appearing in production, verify the build output"
```

### Code Reviewer
```
"Review this authentication code for security vulnerabilities"
```

### Debugger
```
"I'm getting TypeError: Cannot read property 'map' of undefined"
```

### Test Runner
```
"Use TDD to implement this user validation function"
```

### Orchestrator
```
"Coordinate a refactor of the authentication system across 5 services"
```

### Documentation Expert
```
"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+ times | Explore agent |
| Read 5+ files | Explore agent |
| Same edit across files | Parallel agents |
| Audit multiple items | Parallel 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:

```
"Review this code for security issues, then write tests for the critical paths"
# → code-reviewer first, then test-runner
```

```
"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

Overview

This skill bundles seven focused development workflow agents for code review, debugging, testing, documentation, commit generation, build verification, and orchestration. It integrates with Claude Code and auto-discovers relevant agents using trigger phrases to speed common developer tasks. The agents are lightweight, opinionated, and designed to be used proactively as part of everyday workflows.

How this skill works

Each agent watches for natural language triggers (error messages, task phrases, or workflow keywords) and activates the best-fit specialist to handle that task. Agents perform concrete actions like generating conventional commits, running test-driven workflows, auditing code for security, verifying build artifacts, and coordinating multi-step refactors. You can chain agents together so outputs flow from one specialist to the next for end-to-end automation.

When to use it

  • Writing or polishing commit messages for staged changes
  • Investigating why built artifacts don’t reflect source changes
  • Requesting security or quality reviews for authentication, input handling, or dependencies
  • Debugging runtime errors, analyzing stack traces, and finding root causes
  • Creating tests with a TDD approach or improving test coverage
  • Coordinating multi-service refactors or producing README/API documentation

Best practices

  • Invoke agent-first-thinking: prefer an agent for repetitive or multi-file tasks
  • Trigger specific agents with clear keywords or sample error text for accurate auto-discovery
  • Chain agents in logical order (debugger → documentation → commit-helper) for repeatable workflows
  • Customize agent markdowns locally for project-specific rules, linters, or commit conventions
  • Run build-verifier after CI builds to ensure dist/site outputs match source

Example use cases

  • "Help me write a conventional commit message for these staged changes"
  • "My UI changes aren’t appearing in production — verify the build output and diff dist/"
  • "Perform a security review of this authentication module and suggest fixes per OWASP"
  • "I have a failing test and TypeError stack trace — find root cause and propose a fix"
  • "Coordinate a refactor across five microservices and produce a migration plan"
  • "Generate README and API docs for a new REST endpoint including examples and architecture notes"

FAQ

How do agents get selected automatically?

Agents use trigger phrases and error fragments defined in their descriptions; Claude Code matches your request text to those triggers and proposes the best agent(s).

Can I customize an agent for my project conventions?

Yes. Each agent’s configuration file can be edited locally so it follows your linters, commit formats, or documentation templates.