Your AI (LLM), guided by built-in workflows. Just tell it what you want.
AI builds a Slack bot with tests & docs — in 30s
You: "Build a Slack bot with Gemini API"
AI: ✓ Reads AGENTS.md
✓ Analyzes requirements
✓ Plans architecture
✓ Writes tests first (NEW in v0.2)
✓ Implements with best practices
✓ Verifies everything works
No configuration. No learning curve. Just results.
Claude Code users building TypeScript? Prefer a Claude-first stack with advanced sub-agents and rules: AI Coding Project Boilerplate.
npx github:shinpr/agentic-code my-project && cd my-project
# 🚀 Ready. Just tell it what to build.
That's it. Works with any AI tool - Codex, Cursor, Aider, GitHub Copilot, or anything AGENTS.md compatible.
Every AI coding tool has the same problems:
- Forgets your project structure after 10 messages
- Deletes tests when adding features
- Ignores architectural decisions
- Skips quality checks
We built the solution into the framework. AGENTS.md guides your AI through professional workflows automatically.
Pre-built workflows. No setup needed.
Any programming language. Any AI tool that reads AGENTS.md.
Generates test skeletons before code.
- Simple task → Direct execution
- Complex feature → Full workflow with approvals
- AGENTS.md tells your AI the process - Like a README but for AI agents
- Progressive rule loading - Only loads what's needed, when needed
- Quality gates - Automatic checkpoints ensure consistent output
- You stay in control - Approval points for major decisions
.agents/
├── tasks/ # What to build
│ ├── task-analysis.md # Entry point - AI starts here
│ └── ... # Design, test, implement, QA tasks
├── workflows/ # How to build it
└── rules/ # Quality standards
You: "Add API endpoint for user search"
# AI: Reads existing code → Plans changes → Tests → Implements → Done
You: "Build user authentication system"
# AI: Requirements → Design doc → Your approval → Test skeletons →
# Implementation → Quality checks → Done
# General purpose (any language)
npx github:shinpr/agentic-code my-project
# With TypeScript optimizations
npx github:shinpr/agentic-code my-project --lang=typescript
# Copy the framework files
cp -r path/to/agentic-code/AGENTS.md .
cp -r path/to/agentic-code/.agents .
# Set up language rules (choose one)
cd .agents/rules/language
ln -s general/rules.md rules.md
ln -s general/testing.md testing.md
Q: Do I need to learn a new syntax? Nope. Just describe what you want in plain language. The framework handles the rest.
Q: What if my AI doesn't support AGENTS.md? Check if your tool is AGENTS.md compatible. If yes, just tell it to read the AGENTS.md file first.
Q: Can I customize the workflows?
Absolutely! Everything in .agents/
is customizable. But honestly, the defaults work great.
Q: What about my existing codebase? Works perfectly. Your AI analyzes the code and follows your existing patterns.
The framework has three pillars:
- Tasks - Define WHAT to build
- Workflows - Define HOW to build it
- Rules - Define quality STANDARDS
Advanced features for the curious...
Rules load based on task analysis:
- Small (1-2 files) → Direct execution with minimal rules
- Medium/Large (3+ files) → Structured workflow with design docs
- Each task definition specifies its required rules
Automatic checkpoints ensure:
- Tests pass before proceeding
- Code meets standards
- Documentation stays updated
- Metacognition - AI self-assessment and error recovery
- Plan Injection - Enforces all required steps are in work plan
- Test Generation - Test skeletons from acceptance criteria
- 1-Commit Principle - Each task = one atomic commit
npx github:shinpr/agentic-code my-awesome-project
cd my-awesome-project
# Tell your AI what to build
No more chaotic AI coding sessions. Just reliable, professional development.
Found a bug? Want to add language-specific rules? PRs welcome!
MIT - Use it however you want.
Built on the AGENTS.md standard — an open community specification for AI coding agents.
Ready to code properly with AI? npx github:shinpr/agentic-code my-project