A comprehensive collection of AI agent prompts for software engineering workflows.
git clone https://github.com/mccode415/agent.git
| Agent |
Purpose |
| electron-specialist |
Electron desktop app development |
| llm-specialist |
LLM integration, prompts, production patterns |
| rag-specialist |
Retrieval-augmented generation systems |
| database-specialist |
Schema design, queries, migrations, optimization |
| frontend-specialist |
React, CSS, performance, accessibility |
| devops-specialist |
CI/CD, Docker, Kubernetes, infrastructure |
| api-integration-specialist |
Third-party APIs, OAuth, webhooks |
| realtime-specialist |
WebSockets, SSE, presence systems |
| search-specialist |
Full-text, vector, and hybrid search |
| quant-trading-engineer |
Trading systems and backtesting |
Quick commands invoked with /command syntax.
| Skill |
Trigger |
Purpose |
| commit |
/commit |
Create well-formatted git commit |
| review-pr |
/review-pr |
Review a pull request |
| create-pr |
/create-pr |
Create a pull request |
| test |
/test |
Run and analyze tests |
| lint |
/lint |
Run linters and fix issues |
| explain |
/explain |
Explain code or concepts |
| debug |
/debug |
Debug an issue |
| refactor |
/refactor |
Refactor code |
Trigger multi-agent workflows with keywords:
| Keyword |
Agents Run |
full-review |
security-fortress + change-validator-linter + change-verifier + performance-analyzer |
pre-deploy |
security-fortress + dependency-auditor + system-architect + test-generator |
new-feature |
codebase-explorer + system-architect + api-designer |
security-audit |
security-fortress + security-reviewer + dependency-auditor |
code-quality |
change-validator-linter + change-verifier + refactor-assistant + test-generator |
trading-review |
quant-trading-engineer + security-fortress + performance-analyzer |
documentation |
docs-generator + api-designer + codebase-explorer |
deep-analysis |
system-architect + codebase-explorer + performance-analyzer + security-fortress |
database-design |
database-specialist + system-architect |
api-integration |
api-integration-specialist + security-reviewer |
realtime-feature |
realtime-specialist + performance-analyzer |
staff-engineer |
Full lifecycle with research, planning, implementation, validation |
agent/
├── README.md
├── AGENT_TEMPLATE.md # Standard template for all agents
└── prompts/
├── staff-engineer.md # Core workflow agent (v2)
├── agent-orchestrator.md # Multi-agent coordinator
├── handoff-protocol.md # Agent communication
├── quick-reference.md # Cheat sheet
│
├── deep-research.md
├── system-architect.md
├── codebase-explorer.md
├── plan-visualizer.md
│
├── security-fortress.md
├── security-reviewer.md
├── change-validator-linter.md
├── change-verifier.md
├── performance-analyzer.md
├── dependency-auditor.md
│
├── test-generator.md
├── docs-generator.md
├── api-designer.md
├── refactor-assistant.md
│
├── quant-trading-engineer.md
│
├── domain/ # Domain specialists
│ ├── electron-specialist.md
│ ├── llm-specialist.md
│ ├── rag-specialist.md
│ ├── database-specialist.md
│ ├── frontend-specialist.md
│ ├── devops-specialist.md
│ ├── api-integration-specialist.md
│ ├── realtime-specialist.md
│ └── search-specialist.md
│
└── skills/ # Quick commands
├── README.md
├── commit.md
├── review-pr.md
├── create-pr.md
├── test.md
├── lint.md
├── explain.md
├── debug.md
└── refactor.md
- Concrete over vague: Checklists, not prose
- Safe by default: Always know how to rollback
- Right-sized process: Simple tasks get simple workflows
- Incremental: Commit working increments, validate early
- Selective: Only run relevant validators
- Domain expertise: Specialized knowledge for complex areas
These prompts can be used as:
- System prompts when building with Claude API
- Custom agent definitions in Claude Code (if supported)
- Reference for guiding Claude through engineering workflows
- Templates for building your own agents
Run a full local audit against installed Codex skills and this prompt repo:
./scripts/audit_codex_setup.py --skills-root ~/.codex/skills --agent-root .
To add or improve agents:
- Follow AGENT_TEMPLATE.md for consistent structure
- Include Role/Trigger/Receives/Hands off header
- Define Input/Process/Output/Handoff sections
- Provide concrete output templates with JSON formats
- Include quality checklists
- Add to this README