What problem does it solve?
It solves the productivity loss and quality gaps that happen when building .NET features in slow, sequential loops without reliable planning, verification, and formatting/permission guardrails.
Core Features & Use Cases
- Parallel sessions with git worktrees: Run multiple Claude sessions at once (feature, bugfix, tests, analysis) with isolated worktrees to avoid conflicts and cut wall-clock time.
- Plan-then-execute strategy: Use plan mode for multi-file or architectural work, iterate until the plan is solid, then switch to auto-accept for faster, more accurate implementation.
- Verification and feedback loops: Close the loop with
dotnet build, dotnet test, and MCP diagnostics so “done” means verified, not assumed.
- Workflow automation for frictionless execution: Add PostToolUse auto-format hooks (dotnet format) and pre-allow safe dotnet permissions to reduce repetitive prompts and CI failures.
- Prompting and subagent patterns: Use “staff engineer” style grilling prompts and delegate verification/code simplification to subagents to control token budgets and improve correctness.
Quick Start
Load workflow-mastery and ask: “Set up a parallel worktree plan for my current .NET change, then verify with dotnet build and dotnet test before I accept the implementation.”