v0.1.3 • View on npm
Scaffold a new Neural Tools workspace with best practices and templates.
Create a new workspace using npx (no installation required):
npx @neural-tools/create@latest my-workspace
Or install globally and use:
npm install -g @neural-tools/create
create-neural-tools my-workspace
The CLI will guide you through:
A typical Neural Tools workspace includes:
my-workspace/
├── .claude/ # Claude Code configuration
│ ├── commands/ # Custom slash commands
│ └── agents/ # AI agents
├── mcp-servers/ # MCP servers
│ └── example/
│ ├── Dockerfile
│ ├── docker-compose.yml
│ └── server.py
├── .github/
│ └── workflows/ # CI/CD pipelines
├── package.json
└── README.md
Includes:
Bare-bones setup for custom configurations:
After creating your workspace:
npm install -g @neural-tools/cli
cd my-workspace
neural-tools generate mcp my-server \
--description "My first MCP server"
cd mcp-servers/my-server
docker-compose up