# Clone the repository
git clone https://github.com/bivex/ultra-builder-pro.git
cd ultra-builder-pro
# Copy to Claude Code config directory
cp -r ./* ~/.claude/
# Start Claude Code
claude| Priority | Rule |
|---|---|
| 1 | Role + Safety: Deployable code, KISS/YAGNI, think in English, respond in English |
| 2 | Context Blocks: Honor XML blocks exactly as written |
| 3 | Evidence-First: External facts require verification (Context7/Exa MCP) |
| 4 | Honesty & Challenge: Challenge user assumptions, name logical gaps |
| 5 | Architecture: Critical state must be persistable/recoverable/observable |
| 6 | Code Quality: No TODO/FIXME/placeholder, modular, avoid deep nesting |
| 7 | Testing: No mocking core logic, external deps allow test doubles |
| 8 | Action Bias: Default to progress, high-risk must brake and ask |
"There is no test code. There is no demo. There is no MVP. Every line is production code. Every test is production verification."
Code Quality = Real Implementation Γ Real Tests Γ Real Dependencies
If ANY component is fake/mocked/simulated β Quality = 0
/ultra-init β /ultra-research β /ultra-plan β /ultra-dev β /ultra-test β /ultra-deliver
β β β β β β
Project 4-Round Task TDD Cycle Quality Release
Setup Discovery Breakdown REDβGREEN Audit & Deploy
| Command | Purpose | Key Features |
|---|---|---|
/ultra-init |
Initialize project | Auto-detect type/stack, copy templates, git setup |
/ultra-research |
Interactive discovery | 4 rounds (UserβFeatureβArchitectureβQuality), 90%+ confidence |
/ultra-plan |
Task planning | Dependency analysis, complexity assessment, context files |
/ultra-dev |
TDD development | REDβGREENβREFACTOR, Codex review, auto git flow |
/ultra-test |
Quality audit | Anti-Pattern detection, Coverage gaps, E2E, Performance, Security |
/ultra-deliver |
Release preparation | CHANGELOG, build, version bump, tag, push |
/ultra-status |
Progress monitoring | Real-time stats, risk analysis, recommendations |
/ultra-think |
Deep analysis | Structured reasoning, multi-dimension comparison |
- Auto-detects project type (web/api/cli/fullstack)
- Auto-detects tech stack from dependencies
- Creates
.ultra/structure with specs and tasks - Interactive confirmation for existing projects
- Round 1: User & Scenario (Personas, User Scenarios)
- Round 2: Feature Definition (User Stories, Features, Metrics)
- Round 3: Architecture Design (arc42 Β§1-6)
- Round 4: Quality & Deployment (arc42 Β§7-12)
- Each round: 6-step cycle with satisfaction rating (β₯4 stars to continue)
- TDD workflow: RED (failing tests) β GREEN (pass) β REFACTOR
- Git branch management with decision tree
- Mandatory Codex review before commit
- Dual-write mode: update specs when implementation reveals gaps
- Anti-Pattern Detection: Tautology, empty tests, core logic mocks
- Coverage Gap Analysis: Find untested exported functions
- E2E Testing: Chrome MCP for web UI
- Performance: Core Web Vitals (LCP <2.5s, INP <200ms, CLS <0.1)
- Security: Dependency vulnerability scan
- Auto-fix loop (max 5 attempts)
| Skill | Purpose | Modes |
|---|---|---|
codex |
OpenAI Codex CLI | Code analysis, refactoring, can modify code |
gemini |
Google Gemini CLI | Research, validation, docs; -y for code changes |
frontend |
Frontend development | React/Vue/Next.js, Core Web Vitals, a11y |
backend |
Backend development | Node.js/Python/Go, API design, security |
smart-contract |
Smart contract dev | EVM/Solana, security audit, Foundry tests |
skill-creator |
Create new skills | Workflow guidance, packaging |
Templates:
research-review: Validate research output (read-only)code-review: Review code diff (read-only, high effort)test-review: Audit test suite (workspace-write)
Config: Model default, Effort medium, Sandbox workspace-write
Templates:
tech-research: Deep research with evidencearchitecture-review: Validate architecture decisionsdocumentation-gen: Generate/review documentationspec-validation: Validate implementation vs speccode-review: Review code (read-only by default)
Config: Model gemini-3-flash-preview, Mode suggest (read-only default)
Note: Use -y flag for auto-approve when code changes needed
| Skill | Resources |
|---|---|
frontend |
React/Vue/Next.js patterns, performance scripts, component templates |
backend |
API design, Node/Python/Go patterns, security audit scripts |
smart-contract |
ERC20/721/1155/esToken templates, vulnerability checklist, Foundry patterns |
| Gate | Requirement |
|---|---|
| Anti-Pattern | No tautology, empty tests, core logic mocks |
| Coverage Gaps | No HIGH priority untested functions |
| E2E | All critical flows pass |
| Performance | Core Web Vitals pass (frontend) |
| Security | No critical/high vulnerabilities |
| Codex Review | No critical issues |
| Metric | Limit |
|---|---|
| Function lines | β€ 50 |
| Nesting depth | β€ 3 |
| Cyclomatic complexity | β€ 10 |
| Type | Mock Allowed? |
|---|---|
| Core Logic (domain/service/state) | NO |
| Repository interfaces | NO (use testcontainers) |
| External APIs | Yes (testcontainers/sandbox/stub) |
| Third-party services | Yes (with rationale) |
~/.claude/
βββ CLAUDE.md # Main configuration (Priority Stack)
βββ README.md # This file
βββ settings.json # Claude Code settings
β
βββ commands/ # /ultra-* commands (8)
β βββ ultra-init.md
β βββ ultra-research.md
β βββ ultra-plan.md
β βββ ultra-dev.md
β βββ ultra-test.md
β βββ ultra-deliver.md
β βββ ultra-status.md
β βββ ultra-think.md
β
βββ skills/ # Domain skills (6)
β βββ codex/ # OpenAI Codex CLI
β βββ gemini/ # Google Gemini CLI
β βββ frontend/ # React/Vue/Next.js
β βββ backend/ # Node.js/Python/Go
β βββ smart-contract/ # EVM/Solana
β βββ skill-creator/ # Create new skills
β
βββ .ultra-template/ # Project initialization templates
βββ specs/
β βββ product.md # Product specification template
β βββ architecture.md # arc42 architecture template
βββ tasks/
β βββ tasks.json # Task registry
β βββ contexts/ # Task context files
βββ docs/
βββ research/ # Research reports
Core Changes:
- Unified Priority Stack in CLAUDE.md
- Removed agents directory (empty)
- Removed hooks system
- Removed install.sh, execution_config.json
- Removed plans/, plugins/, chrome/, telemetry/
Codex Integration:
- Added
codexskill with 3 review templates - Mandatory Codex review in
/ultra-dev,/ultra-test,/ultra-research
Gemini Integration:
- Added
geminiskill with 5 templates - Default read-only mode,
-yfor code changes
Command Refinements:
/ultra-test: Anti-Pattern Detection (replaced TAS scoring)/ultra-dev: Git branch decision tree/ultra-research: 4-round interactive discovery with satisfaction rating
- Production Absolutism enforcement
- ZERO MOCK policy for core logic
Ultra Builder Pro integrates with these MCP services:
| Service | Purpose |
|---|---|
| Context7 | Official documentation lookup |
| Exa | Code examples and community practices |
| Chrome | E2E testing and web automation |
MIT
Ultra Builder Pro: No mock. No demo. No MVP. Production-grade only.