Setup Overview¶
How to install and set up Mavric DevEnv.
Install¶
Run this in your project directory:
This adds:
.claude/- AI skills and commands.devenv/- Development standards and references
Then restart Claude Code.
What Gets Installed¶
your-project/
├── .claude/
│ ├── commands/ # Slash commands
│ │ ├── start-project.md
│ │ ├── discovery-only.md
│ │ ├── schema.md
│ │ ├── tests.md
│ │ └── verify.md
│ ├── skills/ # AI skills
│ │ ├── saas-project-orchestrator/
│ │ ├── discovery-interviewer/
│ │ ├── schema-architect/
│ │ ├── backend-bootstrapper/
│ │ ├── auth-bootstrapper/
│ │ ├── test-generator/
│ │ ├── feature-builder/
│ │ └── product-brief-writer/
│ └── templates/ # Prompt templates
└── .devenv/
├── standards/ # Development standards
│ ├── saas/ # SaaS patterns
│ ├── apso/ # Apso schema guide
│ └── foundations/ # Testing methodology
├── docs/ # Reference documentation
└── setup/ # Setup scripts
Prerequisites¶
| Requirement | Minimum | Purpose |
|---|---|---|
| Claude Code | Latest | AI interface |
| Node.js | 18.0.0 | Runtime |
| PostgreSQL | 13.0 | Database (for backend projects) |
Install Prerequisites¶
Usage¶
Open Claude Code and say:
Or use slash commands:
| Command | Description |
|---|---|
/start-project |
Full discovery workflow |
/discovery-only |
Discovery interview only |
/schema |
Design database schema |
/tests |
Generate test scenarios |
/verify |
Verify project consistency |
Approaches¶
Full Project Orchestration¶
For new SaaS projects:
Runs through discovery, scenarios, schema, brief, and implementation.
Quick Backend Setup¶
If you already have requirements:
Creates a running backend in ~5 minutes.
Add Auth to Existing Project¶
If you have an Apso backend without auth:
Updating¶
Re-run the install command:
Your project files are preserved - only .claude/ and .devenv/ are updated.
Troubleshooting¶
Skills not loading¶
Make sure you're in a directory with .claude/ folder:
Database connection issues¶
Port conflicts¶
Next Steps¶
- Quick Start - Get running in 5 minutes
- Templates - Available schema templates
- Backend Bootstrapper - Backend setup details