Releases: petbrains/mvp-builder
v0.0.6 — Rules Migration & Auto Memory
What's Changed
Rules System
Skills converted to always-loaded rules in .claude/rules/:
git.md— branch naming, commit format, secret protectionauthentication.md— auth library decisions per platformbackend.md— stack decisions + non-negotiable rulesfrontend.md— UI/animation/asset decisions + quality gatesdocker.md— containerization standards
Session Continuity
- Removed
session-start.shandHANDOFF.md - Replaced by Claude Code native Auto Memory — context now accumulates automatically across sessions
Removed
skills-registry— no longer needed with rules-based routing/generate:agentcommand
See CHANGELOG.md for complete details.
v0.0.5 - Figma Roundtrip
🎨 Figma Roundtrip
Design pipeline теперь замкнут: design-setup достаёт из Figma → design-generate пушит обратно. Итерируйте с дизайнером без выхода из пайплайна.
New
design-generate agent
Валидирует HTML-референсы против токенов и design-system.md, фиксит расхождения, поднимает локальный сервер и захватывает экраны в Figma как редактируемые слои (не скриншоты).
figma-design-extraction skill
Извлекает токены, структуру экранов и визуальные референсы из Figma. Source tracking (figma-variables vs figma-context) для приоритизации при конфликтах.
figma-design-generate skill
Отправляет UI в Figma через generate_figma_design MCP tool. Поддерживает новый файл, существующий файл и буфер обмена.
design-setup-template.md
Шаблоны для design-system.md, style-guide.md, screen index и review checklist.
Fixed
/docs:design-setup:Bash(*)синтаксис,model: opus, разделение CSS/HTML приоритетов, параметрыcreate_design_system_rules, MCP-ссылки без/префикса
Pipeline
design-setup ──→ design-generate ──→ Figma
↑ │
└──────── design-setup [url] ◄─────┘
See CHANGELOG.md for complete details.
v0.0.4 - Design System Integration & UI Specifications
What's New
Design System Normalization
New /docs:design-setup command normalizes raw design generator output into structured references. Supports Figma extraction via MCP tools (get_metadata, get_screenshot).
Produces standardized artifacts in ai-docs/references/:
design-system.md— token tables, component list, variantsstyle-guide.md— Do's/Don'ts, usage rules, interaction patternstokens/*.json, *.css— patched token files in original formatsscreens/*.png + index.md— Figma screenshots with screen mapping
UI Specifications
New /docs:ui command generates structured UI specs that bridge UX behavior and implementation planning:
- Component Trees — hierarchy with props and nesting
- Component Catalog — DS mapping with variants and visual states
- Layout Structure — semantic layouts (vertical-stack, grid-2col)
- Visual State Mapping — state → visible/hidden/modified components
- Slot Markers — components accepting arbitrary children
References Pipeline
ai-docs/references/ directory is now a first-class pipeline stage. Created by /docs:prd, populated by user, normalized by /docs:design-setup, consumed by downstream commands (/docs:feature, /docs:ux, /docs:ui, /docs:plan). Each consumer documents which reference types it uses and why.
Pipeline Consistency Fixes
Slot markers, visual states, and responsive adaptations now traced end-to-end:
plan.md— maps slot markers to component API patternsvalidation.md— cross-checks slot coverage in planreview.md— verifies layout structure and slot children acceptancefeature-tdd— tests slot content acceptance in RED phasefeature-fix— aware of visual states and slot markers during fixes
See CHANGELOG.md for complete details.
v0.0.3 - Session Continuity & Codebase-Aware Planning
What's New
Session Continuity via Hooks
New SessionStart hook auto-injects project context (HANDOFF, PRD, FEATURES, README) into Claude's context window. Zero tool calls on session start — agent begins informed immediately.
New HANDOFF.md artifact captures goal, progress, blockers, and next steps between sessions. Agent updates it after TDD cycles; hook delivers it on next start.
Codebase-Aware Planning
/docs:plan now runs Code Analyzer before planning (Phase 0.2). Second and third features reuse existing modules instead of creating duplicates. Greenfield projects skip scan automatically.
Dual-Mode Memory
/docs:memory works in two modes:
- With path (
/docs:memory ai-docs/features/auth/) — adds feature to code map - Without arguments (
/docs:memory) — full project rescan for changes outside feature scope
CLAUDE.md Updates
- "Load these documents" replaced with hook-based auto-loading
- Context Handoff rules added to Session Continuity section
- HANDOFF.md added to AI Documentation Structure
See CHANGELOG.md for complete details.
v0.0.2 - Quality Gates & Self-Verification Rules
What's Changed
Rules (CLAUDE.md)
- TDD: verify test fails for the expected reason before implementation
- Verification Order: build → types → lint → tests sequence
- New Simplification section: minimal diff, fight complexity bias
- New Self-Check section: verify claims, no "should/probably" completions
- Plan Mode: concise plans with an unresolved questions list
Agents
feature-fix: added Quality Gates step before test suite
This release focuses on improving code quality verification processes and adding stricter self-check rules for more reliable AI-assisted development.
See CHANGELOG.md for complete details.
v0.0.1 — Initial Release
MVP Builder — Document-Driven Development instructions for Claude Code.
Highlights:
- 9 slash commands for full development pipeline (Define → Design → Build → Ship)
- 3 specialized agents (setup, TDD, fix) + custom agent generator
- Skills Registry with dynamic skill matching
- Full traceability (FR → TEST → IMPL → CHK → REV)
- Self-verification feedback loop
See CHANGELOG.md for complete details.