Context Engineering Framework with ready-to-use development workflows that bring structure to chaos.
Structured Workflow System - designed to help both high-tier and low-tier AI models follow consistent processes:
- 🧠 Context Engineering - workflows engineered for reliable AI execution across model tiers
- 🔧 9 Workflows - battle-tested processes that provide structure and guardrails
- ⚡ Smart Validation - automatically validates prerequisites and skips irrelevant steps
- 📋 25+ Mini-Prompts - context-engineered prompts organized by development phases
# 1. Clone repository
git clone https://github.com/your-repo/agents-playbook
cd agents-playbook
# 2. Install dependencies
npm install
# 3. Add OpenAI API key to .env
OPENAI_API_KEY=your_key_here
# 4. Generate search index
npm run build:embeddings
# 5. Start server
npm run dev
MCP Server: http://localhost:3000/api/mcp
# MCP Inspector for testing
DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector@latest http://localhost:3000/api/mcp
# Run tests (47 tests)
npm run test:integration
Search workflows with AI semantic search.
Example:
- Input:
"fix critical bug"
- Output:
quick-fix
workflow (🎯 89% match)
Get complete workflow with execution plan.
Step-by-step navigation with smart validation.
- feature-development - Complete feature development lifecycle
- product-development - From idea to product launch
- quick-fix - Fast bug fixes and hotfixes
- code-refactoring - Code architecture improvements
- trd-creation - Technical Requirements Document creation
- brd-creation - Business Requirements with research
- brd-to-trd-translation - Business → Technical specification translation
- project-initialization - New project setup
- infrastructure-setup - Infrastructure deployment
1. Search: "create new feature"
2. Result: feature-development workflow (🎯 92% match)
3. Execute: 14 steps with TRD integration and smart skipping
1. Search: "technical documentation"
2. Result: trd-creation workflow (🎯 94% match)
3. Execute: 7 steps of TRD creation with validation
{
"mcpServers": {
"agents-playbook": {
"url": "http://localhost:3000/api/mcp"
}
}
}
# Copy entire playbook to your project
cp -r playbook/ /path/to/your/project/
Benefits:
- ✅ Works without MCP server
- ✅ Customize for your team
- ✅ Offline access
- ✅ Version control with project
- Context Engineering - workflows designed with clear context boundaries and validation
- Semantic Search - OpenAI embeddings understand task context for workflow selection
- YAML Workflows - structured processes with phases, steps, and guardrails
- Mini-Prompts - context-engineered reusable prompts that work across model tiers
- Smart Validation - prevents execution without required context, provides structure for low-tier models
- Use simple terms: "bug", "feature", "documentation"
- Check:
npm run build:embeddings
- Check
OPENAI_API_KEY
in.env
- System falls back to text search if OpenAI unavailable
- Make sure server is running:
npm run dev
- URL:
http://localhost:3000/api/mcp
- This is normal behavior! System skips steps without required context
- Check logs to understand skip reasons
🎯 Structured Workflow Engine - Context engineering framework that brings order to chaos in AI-driven development