@coregenai/sdlc-setup
v1.0.3
Published
Setup Claude Code for SDLC MCP orchestration
Maintainers
Readme
@coregenai/sdlc-setup
Setup Claude Code for SDLC MCP orchestration. This CLI scaffolds all necessary configuration files to connect your project to the SDLC MCP server.
Installation
npx @coregenai/sdlc-setupUsage
Interactive Mode
cd my-project
npx @coregenai/sdlc-setupYou'll be prompted for:
- Your SDLC API key (from the portal)
- MCP server URL (optional, uses default)
Non-Interactive Mode
npx @coregenai/sdlc-setup --api-key sk_live_xxxxxOptions
| Option | Description |
|--------|-------------|
| -h, --help | Show help message |
| -v, --version | Show version number |
| --api-key <key> | Provide API key (skip prompt) |
| --url <url> | Custom MCP server URL |
| -f, --force | Overwrite existing files without prompting |
| --dry-run | Show what would be created without creating |
Generated Files
| File | Location | Purpose |
|------|----------|---------|
| .mcp.json | Project root | MCP server configuration |
| SKILL.md | .claude/skills/sdlc-mcp/ | Teaches Claude how to use SDLC |
| prompt-executor.md | .claude/agents/ | Sub-agent for prompt execution |
| create_project.md | .claude/commands/ | Slash command for new projects |
| run_pipeline.md | .claude/commands/ | Slash command for continuing |
| .env | Project root | SDLC_API_KEY environment variable |
After Setup
Ensure your API key is set:
export SDLC_API_KEY=sk_live_xxxxxOpen Claude Code:
claudeCreate your first project:
/create_project "Build a REST API for user management"
Requirements
- Node.js >= 18.0.0
- A valid project directory (with
package.jsonor.git)
License
MIT
