Command-first AI framework for Claude Code with automated workflows, quality enforcement, and persistent knowledge management
npx claudepluginhub MacroMan5/claude-code-workflow-pluginsPragmatic, flexible AI framework for Claude Code with optional TDD, smart reviews, and inline task management
Version: 2.2.2 | License: MIT | Status: Production-Ready | Platforms: Linux, macOS, Windows
3-minute setup to first working feature:
# 1. Copy LAZY_DEV to your project
cp -r LAZY_DEV/.claude/ .claude/
# 2. Set required environment variable
export ENRICHMENT_MODEL=claude-3-5-haiku
# 3. Plan your first feature
/lazy plan "Add user authentication"
# 4. Execute first task
/lazy code TASK-1
# 5. Review and create PR
/lazy review US-3.4
What just happened? PM agent created user stories, Coder agent implemented with TDD, quality pipeline validated code, PR was auto-created.
Modern AI-assisted development suffers from:
LAZY_DEV provides a turnkey framework with:
"Be lazy, but consistently excellent"
Automate the mundane (formatting, commits, PRs) while enforcing discipline (quality gates, TDD, security checks).
8 Commands
/lazy plan <brief> - Generate US-story + tasks/lazy code <input> - Implement from story/task/brief/issue/lazy review <id> - Review feature, create PR or generate debug report/lazy fix <report> - Apply review fixes from debug report/lazy docs <file> - Generate/update docs/lazy clean <path> - Remove dead code/lazy memory-graph <statement> - Persist to MCP/lazy memory-check - Verify MCP connectivity9 Specialized Agents (automatic delegation)
17 Skills (reusable patterns)
4 Hook Types (10 implementations)
LAZY_DEV works seamlessly on Linux, macOS, and Windows. All hooks, scripts, and tools are cross-platform by design.
Platform-specific guides:
pip install uv)# Copy LAZY_DEV to your project
cp -r LAZY_DEV/.claude/ .claude/
Or via plugin marketplace:
# Add marketplace
/plugin marketplace add MacroMan5/claude-code-workflow-plugins
# Install plugin
/plugin install lazy-dev@MacroMan5
# Restart Claude Code
# Required for pre-prompt enrichment
export ENRICHMENT_MODEL=claude-3-5-haiku
# Optional: Enable strict mode
export LAZYDEV_ENFORCE_TDD=1
export LAZYDEV_MIN_TESTS=3