tarcisiojr/ai-toolkit
Platform-specific configuration:
{
"mcpServers": {
"ai-toolkit": {
"command": "npx",
"args": [
"-y",
"ai-toolkit"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> The package registry for AI coding tool artifacts.
AI Toolkit is an open-source package manager for sharing and installing skills, MCP servers, templates, configs, and hooks across AI coding tools like Claude Code, OpenCode, Gemini CLI, and more.
# Search for artifacts
npx aitk-cli search code-review
# Install an artifact
npx aitk-cli install @user/skill-name
# Authenticate
npx aitk-cli login
# Publish your own artifact
npx aitk-cli publish| Type | Description | Install Path | |------|-------------|--------------| | Skill | SKILL.md instructions for AI assistants | .claude/skills/<name>/ | | MCP | MCP server configurations | Merged into .claude/settings.json | | Config | Configuration files for AI tools | .claude/ or tool-specific path | | Hook | Automation scripts for AI tool events | .claude/hooks/<name>/ | | Template | Pre-configured artifact bundles | Multiple paths |
AI Toolkit is a monorepo with 3 packages:
ai-toolkit/
├── packages/
│ ├── web/ # Next.js 15 (frontend + REST API)
│ ├── cli/ # Commander.js CLI (aitk)
│ └── shared/ # Shared types and validators (Zod)
├── openspec/ # OpenSpec specifications
├── turbo.json # Turborepo config
└── vercel.json # Vercel deployment config| Component | Technology | |-----------|------------| | Frontend + API | Next.js 15 (App Router) | | Database + Auth + Storage | S
Loading reviews...