一键导入
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 |