From devflow
Disciplined task-by-task implementation — minimal diffs, per-task verification, test-mode rules, debug-attempt cap, context hygiene.
How this skill is triggered — by the user, by Claude, or both
Slash command
/devflow:devflow-executing-tasksThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- `git status` (if repo). Dirty tree with files unrelated to the task → list them, confirm with user. Don't assume those changes are yours.
git status (if repo). Dirty tree with files unrelated to the task → list them, confirm with user. Don't assume those changes are yours.Safety: never run git push, destructive SQL, or write secret-looking files unless the user explicitly asked — devflow hooks additionally deny most of these; report a denial as a blocker, never work around the guard. Operations outside the hook's reach (CI/CD edits, IAM/infra changes, dependency removals, long network-heavy commands) also require explicit user approval.
"<what changes>" → verify: <specific check>.docs/devflow/profile.md). Quote output.<cmd> > <log> 2>&1). Read only the last 3 lines for pass/fail + counts. On failure: read last 80 lines, grep the error, read only the relevant block. Never dump a full log into context.Per distinct error: attempt 1 (read error → hypothesis → fix), attempt 2 (re-read → revised hypothesis → fix). Still failing → STOP, return a blocker: exact error quoted, both attempts summarized, current root-cause hypothesis, what information would help. No runaway fix-test-fix loops.
Per-task and full-suite commands come from the project profile (docs/devflow/profile.md, written by devflow-discovery). No profile → load devflow-discovery to generate one. Per-stack command recipes live in ${CLAUDE_PLUGIN_ROOT}/skills/devflow-discovery/stack-recipes.md — consult only when the profile doesn't cover the stack.
npx claudepluginhub latsode/devflow --plugin devflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.