workflow-mastery

Enforce parallel git worktree workflows with plan-then-execute and dotnet verification loops.

1|Updated Apr 28, 2026
One-click install
npx skills add https://github.com/Trossitec/dotnet-claude-kit --skill workflow-mastery-trossitec
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflow-mastery
Source: https://github.com/Trossitec/dotnet-claude-kit/tree/main/skills/workflow-mastery
Command: npx skills add https://github.com/Trossitec/dotnet-claude-kit --skill workflow-mastery-trossitec

SYSTEM DOCUMENTATION & REQUIREMENTS

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.”

Frequently Asked Questions about workflow-mastery

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run parallel Claude Code sessions on the same .NET repository?

Use git worktrees to create isolated working directories for each session, enabling parallel feature development, bugfixes, and test generation without file conflicts.

What is the plan-then-execute workflow for .NET development?

The plan-then-execute workflow uses plan mode to iterate on architecture until solid, then switches to auto-accept for faster implementation, improving accuracy in multi-file .NET changes.

How do I automate dotnet format to prevent CI formatting regressions?

Configure PostToolUse auto-format hooks to run dotnet format automatically after changes, preventing formatting regressions and reducing repetitive manual prompts during development.

Does workflow-mastery require specific .NET dependencies to run verification loops?

No external dependencies are required; verification loops run using standard dotnet build, dotnet test, and MCP diagnostics to ensure code changes are fully verified before acceptance.

What is the best way to verify .NET code changes before accepting an implementation?

Close the verification loop by running dotnet build and dotnet test with MCP diagnostics, ensuring done means verified rather than assumed in your .NET workflow.

How do I delegate code verification to subagents to control token budgets?

Delegate verification and code simplification tasks to subagents using staff engineer style grilling prompts, controlling token budgets while improving correctness in .NET sessions.