Home
Build
Build Tools
CLAUDE.md Builder
Generate a project CLAUDE.md file with conventions and instructions
Configuration preview updated
# Project — CLAUDE.md
## Commands
Skill Builder
Create a custom slash command skill
Configuration preview updated
---
user-invocable: true
---
# my-skill
Agent Builder
Define a custom subagent for Claude Code
Configuration preview updated
---
---
# my-agent
Hook Builder
Create a hook that runs on Claude Code events
Configuration preview updated
{
"hooks": {
"PostToolUse": [
{
"type": "command",
"command": "echo 'hook triggered'"
}
]
}
}MCP Server Builder
Configure a Model Context Protocol server connection
Configuration preview updated
{
"mcpServers": {
"my-server": {
"command": "npx",
"args": []
}
}
}Plugin Builder
Scaffold a Claude Code plugin package
Configuration preview updated
{
"name": "claude-plugin-my-tool",
"version": "0.1.0",
"description": "",
"type": "module",
"main": "index.js",
"claudePlugin": {
"version": 1
}
}