Add BMAD, Claude, Cursor, and OpenCode configuration directories along with AGENTS.md documentation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Tool Template
This is a template for creating new tools in the modular structure.
How to Create a New Tool
-
Copy this template directory:
cp -r template/ your-tool-name/ -
Edit
index.ts:- Replace
exampleFunctionwith your tool's logic - Update the tool definition with proper description and args
- Export your functions and tool
- Replace
-
Add to main index:
- Add exports to
/tool/index.ts:
export { yourTool, yourFunction } from "./your-tool-name" - Add exports to
-
Test your tool:
bun -e "import('./your-tool-name/index.ts').then(m => console.log('Exports:', Object.keys(m)))"
Structure
your-tool-name/
└── index.ts # All tool functionality
Keep it simple - one file per tool with all functionality included.