원클릭으로
dck-workflow-mastery
Use when optimizing AHKFlowApp agent workflow, worktrees, planning, verification loops, context budget, or tool usage.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when optimizing AHKFlowApp agent workflow, worktrees, planning, verification loops, context budget, or tool usage.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when creating, removing, or troubleshooting AHKFlowApp git worktrees across Claude Code, Codex, or Copilot.
Use when verifying AHKFlowApp build, tests, formatting, diagnostics, security, or readiness before commit, push, or PR.
Compact the current conversation into a handoff document for another agent to pick up.
Use to scan .NET code for performance anti-patterns across async, memory, strings, collections, LINQ, regex, and I/O.
Use to evaluate assertion depth and diversity across a test suite and flag assertion-free, shallow, or tautological tests.
Use to audit an existing test file or suite for anti-patterns and quality issues, producing a severity-ranked report.
| name | dck-workflow-mastery |
| description | Use when optimizing AHKFlowApp agent workflow, worktrees, planning, verification loops, context budget, or tool usage. |
main; see the worktrees skill for creating/removing them, never bare git worktree add.dotnet build, dotnet test, dotnet format, setup scripts, and targeted greps are the proof.AGENTS.md and .claude/rules/* define AHKFlowApp conventions.See the worktrees skill for creating, removing, and troubleshooting AHKFlowApp git worktrees (Claude Code, Codex, and Copilot).
Use an implementation plan for:
Review the plan against the live checkout before executing. Stop if project paths, architecture, or verification steps are stale.
Use dck-verify for the full pipeline. Short version:
dotnet restore AHKFlowApp.slnx
dotnet build AHKFlowApp.slnx --configuration Release --no-restore
dotnet test --configuration Release --no-build --verbosity normal
dotnet format AHKFlowApp.slnx --verify-no-changes
git diff --check
For skill changes, also run:
pwsh -NoProfile -File scripts/agents/setup-cross-agent-skills.ps1
The live .claude/rules/agents.md says to use the csharp-lsp plugin or Grep for type lookups, and dotnet build/dotnet test for regression checks. Roslyn Navigator MCP is now available as an additional option, not a mandate.
Use the cheapest reliable lookup:
| Need | Tool |
|---|---|
| Find symbol/type | Roslyn MCP, csharp-lsp, or rg |
| Find references | Roslyn MCP or rg |
| Confirm compiler state | dotnet build |
| Confirm behavior | dotnet test |
| Inspect exact edit target | Read the file fully |
rg --files and targeted rg -n.main.| Scenario | Approach |
|---|---|
| 3+ files or architecture | Plan first |
| Simple targeted fix | Edit and run focused verification |
| Large unknown area | Search/Roslyn first, then read exact files |
| Skill/plugin change | Setup script plus mirror/cache verification |
| Repeated failure | Stop, compare evidence, re-plan |