mark393295827/project-flow-ops
Use when projects or tasks need explicit state, WIP control, ownership, definitions of done, blocker handling, and verified closure.
npx skills add https://github.com/Mark393295827/third-brain-v7-skills --skill project-flow-ops
<skill_contract>
<input>Project objective, tasks, owners, dependencies, budgets, artifacts, current states, and definitions of done.</input>
<output>A WIP-limited project state with ranked work, explicit blockers, bounded actions, and verified closure receipts.</output>
<done>Every active item has one owner and observable artifact, and completion is backed by its named fresh verification.</done>
<non_goals>Hidden WIP, duplicate ownership, status by intuition, backlog accumulation, or completion without evidence.</non_goals>
Maintain a small, inspectable project state machine: BACKLOG -> ACTIVE -> BLOCKED | COMPLETED. Optimize flow and verified outcomes, not task volume.
Provide: project objective, current tasks, owners, dependencies, time budget, artifacts, and definition of done. Optional: prior review receipts.
<intake>
Normalize each item into {id, objective, owner, state, artifact, definition_of_done, budget, dependencies}. Reject duplicate ownership and distinguish waiting from active execution.
</intake>
<unknowns_gate>
If an active item lacks an owner, artifact, or observable definition of done, return NEEDS_INPUT. Probe the ambiguity with the largest impact on scheduling; do not guess priority from wording alone.
</unknowns_gate>
<execute>
ACTIVE to one or two items per owner.COMPLETED only with a fresh receipt; otherwise keep ACTIVE or BLOCKED.</execute>
<evaluate>
Check state-transition legality, WIP limits, ownership, artifact existence, and completion evidence. Use an independent check for consequential deliverables. If verification fails, reopen the item with the failure evidence and smallest corrective action.
</evaluate>
<state_contract>
Persist {run_id, status, attempt, budget, evidence, unknowns, last_error, next_action} plus project objective, task ledger, dependency map, WIP count, transition history, and receipts. Transitions are append-only events; current state is derived from the latest valid event.
</state_contract>
NEEDS_INPUT: ownership, priority boundary, or definition of done is missing.BLOCKED_DEPENDENCY: execution cannot continue; preserve the blocker contract and review time.VERIFY_FAILED: the artifact fails its named check; reopen rather than relabel completion.NO_PROGRESS: two reviews produce no new evidence; reduce scope, change strategy, or escalate.BUDGET_STOP: stop active work, persist state, and report the highest-value next action.Return status, result (project board and transition decisions), evidence (artifacts and receipts), unknowns, and next_action with owner and review time.
</skill_contract>
Take mark393295827/project-flow-ops from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.