AI Agent templates - Skills, Agents, Workflows, and AI-Ready Data Infrastructure Gateway
npm install @musashishao/agent-kit> π The Ultimate AI Agent System for Modern Development
>
> 22 Agents β’ 112 Skills β’ 30 Workflows β’ Multi-Platform Support


``bashStep 1: Install Agent Kit
npm install -g @musashishao/agent-kit
This command automatically creates an isolated environment, installs dependencies, and configures Claude Desktop, Cursor, and VS Code for your project.
This installs the
.agent folder containing all templates into your project.π¦ What's Included
| Component | Count | Description |
|-----------|-------|-------------|
| Agents | 22 | Specialist AI personas (frontend, backend, security, etc.) |
| Skills | 112 | Domain-specific knowledge modules |
| Intelligence | 5 | RAG, Knowledge Graph, Memory, Verification Gate, and NotebookLM |
| Workflows | 32 | Slash command procedures |
| Templates | 5 | Project templates (web, mobile, backend, game) |
π Multi-Platform Support
Agent Kit works seamlessly with multiple AI coding assistants:
| Platform | Status | Config File |
|----------|--------|-------------|
| Codex CLI | β
Full Support |
AGENTS.md |
| Gemini CLI | β
Full Support | GEMINI.md |
| Cursor | β
Compatible | .cursor/rules |
| Claude Code | β
Compatible | CLAUDE.md |
| Aider | β
Compatible | AGENTS.md |---
π― Codex CLI Integration
$3
`bash
Step 1: Install Agent Kit
npx @musashishao/agent-kit initStep 2: Generate AGENTS.md for your project
npx @musashishao/agent-kit codex --template webStep 3: Sync workflows as slash commands
npx @musashishao/agent-kit setup-codexStep 4: Verify installation
npx @musashishao/agent-kit doctor
`$3
| Template | Command | Use Case |
|----------|---------|----------|
| Web |
codex --template web | Next.js, React, Tailwind |
| Mobile | codex --template mobile | React Native, Flutter |
| Backend | codex --template backend | Node.js, Express, APIs |
| Default | codex | Generic projects |$3
After running
setup-codex, use Agent Kit workflows as slash commands:`bash
Create new features
/kit-create blog with authenticationDebug issues
/kit-debug why login returns 401Design premium UI
/kit-ui-ux-pro-max dashboard with glassmorphismQuality optimization
/kit-quality create production-ready checkout
`---
π CLI Commands
| Command | Description |
|---------|-------------|
|
setup | Full One-Click Setup (Venv + Deps + MCPs) |
| init | Install .agent folder into your project |
| codex | Generate AGENTS.md for Codex CLI |
| setup-codex | Sync workflows with Codex CLI slash commands |
| agents | List all available agents |
| skills | List all skills by category |
| workflows | List all workflows |
| status | Check installation status |
| sync | Advanced Sync (Graph + RAG + Memory) |
| memory | Manage JSON Memory & Session state |
| set-lang | Set Agent & Workflow language (vi/en) |
| setup-notebooklm | Setup NotebookLM MCP integration |
| setup-intel-verifier | Setup Intel Stack (Brave Search) |
| setup-memory-mcp | Setup Memory MCP (Knowledge Graph) |
| setup-notion-mcp | Setup Notion MCP integration |
$3
`bash
Codex template options
agent-kit codex --template web # Web application
agent-kit codex --template mobile # Mobile app
agent-kit codex --template backend # Backend API
agent-kit codex --force # Overwrite existingInit options
agent-kit init --force # Overwrite existing .agent folder
agent-kit init --path ./myapp # Install in specific directorySetup-codex options
agent-kit setup-codex --prefix my- # Custom prefix for slash commandsMemory management
agent-kit memory get --type session # View current session state
agent-kit memory update-task --task "X" --status "completed"Language management
agent-kit set-lang vi # Switch to Vietnamese
agent-kit set-lang en # Switch to English (default)
`---
π Localization & Multi-language
Agent Kit now supports full localization for the AI experience.
$3
- πΊπΈ English (en) - Default
- π»π³ Vietnamese (vi) - Professional translation$3
Running ak set-lang vi performs three actions:
1. AI Instruction Update: Updates GEMINI.md logic to ensure the AI responds in your chosen language.
2. Workflow Swapping: Physically updates the description field in all .agent/workflows/*.md files so that CLI tools (Codex, Antigravity) display localized help text.
3. Internal Config: Saves preference to .agent/memory/user.json.> Note: If
ak command is outdated, use npx @musashishao/agent-kit@latest set-lang vi---
π MCP Integration
Agent Kit includes built-in MCP (Model Context Protocol) servers to extend your AI assistant's capabilities.
$3
Agent Kit uses the Intel Stack to extend your AI assistant's capabilities.
`bash
Setup Intel Stack
ak setup-intel-verifierSetup NotebookLM (Deep Research)
ak setup-notebooklmRestart your AI client
`$3
| Server | Tools | Description |
|--------|-------|-------------|
| NotebookLM | 42 | Research, RAG, Audio/Video gen |
| Brave Search | 1 | Real-time web search |
| Memory MCP | 10 | Long-term Knowledge Graph |
| Notion | 15 | Workspace integration |
$3
| Template | Description |
|----------|-------------|
|
api | REST API integration |
| database | SQLite/PostgreSQL connector |
| web-scraper | Web page scraper |
| custom | Minimal starter template |---
π NotebookLM Integration (New)
Agent Kit deeply integrates with Google NotebookLM to provide Source-Grounded Reasoning (Reasoning based on actual facts).
$3
- Deep Research: Scours 40+ trusted web sources for project planning.
- Context Offloading: Offloads long documents (PDF, Docs) to NotebookLM to free up the Context Window.
- Evidence-Based: AI always provides source citations from your Notebook.
- Content Generation: Automatically generates Audio Podcasts, Slides, and Briefing Docs from your project.$3
`bash
Step 1: Run the automated setup script
ak setup-notebooklmStep 2: Run the Auth command (displayed after Step 1)
./venv/bin/notebooklm-mcp-auth
Step 3: Test the research workflow
/research AI Agentic Workflow 2026
`---
π Intel Stack (New)
The Intel Stack provides real-time search for Vibe Coding:
| MCP Server | Purpose | API Key |
|------------|---------|---------|
| Brave Search | Real-time technical web search | Required |
$3
`bash
One command to set up Brave Search
ak setup-intel-verifierOr via npx
npx @musashishao/agent-kit setup-intel-verifierRestart Codex/Antigravity
Verify
gemini mcp list
`
$3
`
Brave Search - Real-time research
"Search for 'Next.js 15 release notes'"`$3
The setup script writes to
~/.gemini/antigravity/mcp_config.json. For other clients, copy the printed JSON to:| Client | Config Path |
|--------|-------------|
| Cursor |
~/.cursor/mcp.json |
| VS Code | ~/.vscode/mcp.json |
| Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json |
---
π Project Structure
`
.agent/
βββ agents/ # 16 Specialist Agents
βββ skills/ # 42 Skills
βββ memory/ # π§ AI Session & State
βββ workflows/ # 17 Slash Commands
βββ rules/ # Platform-specific rules
β βββ CODEX.md # Codex CLI rules
β βββ GEMINI.md # Gemini CLI rules
βββ templates/ # Project templates
βββ ARCHITECTURE.md # Full documentation
`---
π― Usage
$3
Mention an agent by name to invoke specialized expertise:
`
Use the @security-auditor to review authentication
Use the @frontend-specialist to analyze React components
Use the @debugger to fix the login issue
`$3
Skills are loaded automatically based on task context. The AI reads skill descriptions and applies relevant knowledge.
$3
Invoke localized workflows with slash commands:
| Command | Description |
|---------|-------------|
|
/autofix | Autonomous self-healing loop for failed commands |
| /brainstorm | Structured brainstorming for projects and features |
| /context | Auto-generate optimal context for complex tasks |
| /create | Create new applications with AI-Ready infra |
| /enhance | Add or update features in an existing app |
| /spec | Create technical specifications before planning |
| /plan | Create detailed project plans and task breakdowns |
| /tasks | Generate executable task lists from plans |
| /orchestrate | Coordinate 3+ specialized agents for complex tasks |
| /debug | Systematic problem investigation and root cause analysis |
| /ui-ux-pro-max | Professional UI/UX planning with 50+ styles |
| /test | Generate and execute comprehensive test suites |
| /quality | Optimize context and output for high-quality results |
| /status | Display project and agent health status |
| /deploy | Production deployment with pre-flight checks |
| /preview | Manage local development and preview servers |
| /saas | Build SaaS features (billing, landing, etc.) |
| /marketing| Growth marketing and campaign planning |
| /pentest | Run security audits and penetration tests |
| /ai-agent | Build specialized AI agents and loops |
| /gamekit-init| Initialize game project structure |
| /dashboard | Create and view visual project dashboards |
| /compact-docs| Compact and distill decisions into ADRs |
| /next | Suggest the next logical steps for development |> π‘ Tip: Use
ak set-lang vi to see these descriptions in Vietnamese!Example:
`
/kit-create landing page with hero section
/kit-debug why login fails
/kit-ui-ux-pro-max dashboard with glassmorphism
`---
π Platform Setup Guides
$3
`bash
Install Agent Kit
npx @musashishao/agent-kit initConfigure Gemini settings
echo '{ "contextFileName": ".agent/rules/GEMINI.md" }' > .gemini/settings.json
`$3
`bash
Install Agent Kit
npx @musashishao/agent-kit initCopy rules to Cursor
mkdir -p .cursor/rules
cp .agent/rules/GEMINI.md .cursor/rules/agent-kit.md
`$3
`bash
Install Agent Kit
npx @musashishao/agent-kit initCopy rules for Claude
cp .agent/rules/GEMINI.md CLAUDE.md
`---
π Quality Validation
Ensure your setup is optimal:
`bash
Run health check
npx @musashishao/agent-kit doctorRun quality validator
python3 .agent/skills/context-engineering/scripts/quality_validator.py .
`Expected output:
`
π Summary
Passed: 32/32 (100%)
β Excellent! Agent Kit is fully configured for Codex CLI.
`---
π Documentation
- Website: agent-kit.musashi.works
- AGENTS.md: Project root
- ARCHITECTURE.md:
.agent/ARCHITECTURE.md
- Platform Guides: /docs/platforms/---
π€ Contributing
We welcome contributions! Please see
.agent/ARCHITECTURE.md` for guidelines.MIT Β© Musa (musashishao)