ingimar-eyfjord/claude-code-agent-workflows
Production-tested workflow system for Claude Code — 16 skills, 10 specialized agents, two-tier task tracking, and enforcement hooks.
Platform-specific configuration:
{
"mcpServers": {
"claude-code-agent-workflows": {
"command": "npx",
"args": [
"-y",
"claude-code-agent-workflows"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A production-tested system of specialized agents, workflow skills, and enforcement hooks for Claude Code. Battle-tested on a real B2B SaaS product with 18 agents and 16 workflows.
Based on Anthropic's agent-building guidance:
/quick-fix for most things. Only escalate to agent pipelines when complexity demands it..claude/
agents/ # 10 specialized agents (architect, backend, frontend, etc.)
skills/ # 16 workflow skills (see Workflow Ladder below)
contexts/ # Context document pattern (README + template)
CLAUDE.md # Template project instructions
quick-reference.md # Cheat sheet for workflow selection.claude/ directory into your project rootCLAUDE.md to your project root and customize it---
From lightest to heaviest:
| Workflow | Scope | Direct Edits | Agents | When to Use | |----------|-------|:------------:|:------:|-------------| | /quick-fix | 1-2 files | Yes | Optional | "Fix this bug", small refactors | | /docs | .md only | .md only | No | Documentation changes | | /explore | Read-only | No | No | Research, investigation | | /preflight-check | Read-only | No | No |
Loading reviews...