Structured development workflow with orchestrated AI agents - from brainstorming to PRD/ERD generation, task breakdown, automated implementation with review cycles, and PR creation
Interactively refine a vague feature idea through guided questions and chunked exploration
Generate a detailed Engineering Requirements Document (ERD) from a feature description
Create a pull request for the current branch with proper analysis and formatting
Generate a detailed Product Requirements Document (PRD) from an initial feature prompt
Generate a detailed, step-by-step task list from a Requirements Document (PRD or ERD)
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A centralized collection of instructions, guidelines, and custom slash commands for AI coding agents, specifically optimized for Claude Code. This repository provides structured workflows for feature development from ideation through production.
This repository provides:
claude-config/
├── README.md # This file - complete guide and workflows
├── CLAUDE.md # Repository-specific Claude Code instructions
├── AGENTS.md # Core agent guidelines (use in project roots)
├── Rakefile # Automated setup/uninstall tasks
├── .gitignore # Ignore OS files, editors, generated tasks
├── agents/ # Specialized agent role definitions
│ ├── implementer.md # Task execution agent (no scope creep)
│ └── review-architect.md # Code review and quality assurance agent
├── commands/ # Custom Claude Code slash commands
│ ├── brainstorm.md # Interactive idea refinement
│ ├── create-prd.md # Product requirements generation
│ ├── create-erd.md # Engineering requirements generation
│ ├── generate-tasks.md # Task breakdown from requirements
│ ├── task-orchestrator.md # Automated task execution with AI agents
│ ├── process-task-list.md # Manual task list workflow guidance
│ ├── smart-commit.md # Intelligent commit creation
│ ├── create-pr.md # Draft PR creation
│ └── update-docs.md # Documentation sync from git history
└── guidelines/ # Language-specific development guidelines
├── git-workflow.md # Branch naming, commits, PRs, rebasing
├── ruby-rails.md # Rails conventions and best practices
├── javascript.md # JS/TS, React, Hotwire/Stimulus guidelines
└── testing.md # RSpec, Jest, FactoryBot, mocking strategies
Automated Setup (Easiest):
# Clone or navigate to this repository
cd ~/Code/claude-config
# Run the automated setup
rake setup
# This will:
# - Create ~/.claude/ directory if needed
# - Symlink AGENTS.md to ~/.claude/CLAUDE.md
# - Symlink all files in agents/, commands/, and guidelines/ to ~/.claude/
# To remove symlinks later:
rake uninstall
Manual Setup (Alternative):
# Reference this repo in your global Claude Code config
echo "For all projects, follow guidelines in ~/Code/claude-config/AGENTS.md" >> ~/.claude/CLAUDE.md
Project-Specific Setup:
# Copy commands to use in a specific project
cp -r ~/Code/claude-config/commands /path/to/project/.claude/
# Copy AGENTS.md to project root for project-specific context
cp ~/Code/claude-config/AGENTS.md /path/to/project/
Install as Claude Plugin (Recommended for Web/IDE):
This repository is configured as a Claude plugin and can be installed directly in Claude Code (web version, VS Code extension, or JetBrains IDE):
/task-orchestrator, /brainstorm, etc.) will be availableThe plugin configuration is defined in .claude-plugin/plugin.json and includes:
commands/ directoryagents/ directoryguidelines/ directoryguidelines/ as neededThis repository can be installed in three ways:
npx claudepluginhub nobodyiscertain/claude-configAn example plugin demonstrating commands, agents, hooks, and MCP servers
Implementation planning, execution, and PR creation workflows with multi-agent collaboration
11 agents, 35 skills, 18 commands, 9 hooks — spec-driven multi-agent orchestration for Claude Code, with optional cross-device semantic memory.
Autonomous development methodology: PRD interviews → agent execution → automated review
AI-powered agents for specialized development tasks
Spec-driven development workflow system with structured phases: Requirements → Design → Tasks → Implementation
A curated set of skills for each stage of development — propose, spec, design, plan, implement, ship.