mcpbeat Sign in

Project Flow Ops Agent Skill

Use when projects or tasks need explicit state, WIP control, ownership, definitions of done, blocker handling, and verified closure.

1k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
132
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Mark393295827/third-brain-v7-skills --skill project-flow-ops

The instruction itself

8 sections, as written by the author

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.

Usage Template

Provide: project objective, current tasks, owners, dependencies, time budget, artifacts, and definition of done. Optional: prior review receipts.

Workflow

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

  • Rank work by objective impact, urgency, dependency leverage, and cost of delay.
  • Limit ACTIVE to one or two items per owner.
  • Decompose the selected item until one bounded action can produce a reviewable artifact.
  • For a blocker, record owner, missing condition, evidence, next probe, and review time; move independent work forward.
  • Run the verification named in the definition of done.
  • Move to COMPLETED only with a fresh receipt; otherwise keep ACTIVE or BLOCKED.
  • At review, remove stale backlog items and state the next constraint.

</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>

Failure Protocol

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

Output Contract

Return status, result (project board and transition decisions), evidence (artifacts and receipts), unknowns, and next_action with owner and review time.

Edge Cases

  • Everything is marked urgent: use cost of delay and dependency leverage, then force one explicit tradeoff.
  • A task is 90% complete but verification is unavailable: keep it active or blocked; never infer the final 10%.

Success Metrics

  • Active WIP remains within the declared limit.
  • Every completed task has an artifact and fresh verification receipt.
  • Blocked work names an owner, next probe, and review time.

Quality Gates

  • [ ] Every active task has one owner and bounded budget.
  • [ ] State transitions are legal and traceable.
  • [ ] Completion evidence is fresh and objective.
  • [ ] The next constraint is explicit after each review.

</skill_contract>

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take mark393295827/project-flow-ops from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

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.