Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/lukacf/meerkat/workgraph-workflownpx skills add lukacf/meerkat --skill workgraph-workflowgit clone --depth 1 https://github.com/lukacf/meerkatWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00020 | $0.00682 |
| Opus 5 | $0.00010 | $0.00341 |
| Sonnet 5 | $0.00004 | $0.00136 |
| Haiku 4.5 | $0.00002 | $0.00068 |
Grade A, and why
workgraph-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
WorkGraph Workflow
Use WorkGraph when work must survive sessions, compaction, restarts, schedules, or coordination between agents. It is the shared commitment graph, not private scratch space and not semantic memory.
Operating Rules
- Use
workgraph_createfor a new durable commitment. Keep related work in the same namespace; omitted namespace meansdefault. - Use
workgraph_readyto find eligible work. Do not infer readiness from item fields, blocker counts, due times, or edges yourself. - Claim an item before doing durable or shared work with
workgraph_claim. Include your typed owner and the currentexpected_revision. Choose eitherlease_secondsorlease_expires_at, never both. - If a write fails with a stale revision, reload the item with
workgraph_getorworkgraph_snapshot, reconsider the current state, then retry only if the work still makes sense. - Every successful mutation advances the item revision. Use the returned item, not an older cached revision, for the next claim, update, evidence, release, block, or close operation.
- Use
workgraph_linkfor real dependencies and relationships. Useblocksonly when the target should not be ready until the source is terminally resolved. - Attach evidence with
workgraph_add_evidencefor artifacts, PRs, logs, summaries, external tickets, or other proof that the work changed state. - Close with
workgraph_closeonly when terminal truth exists. Usecompleted,failed, orcancelledhonestly. A non-self-attested completion policy can require typed confirmation evidence before close. - Release a claim with
workgraph_releasewhen you are stopping before terminal completion and the work should be claimable by someone else. - Use
workgraph_eventsfor audit history andworkgraph_snapshotfor a graph-wide view. Do not reconstruct either from peer chat or task lists. workgraph_policy_escalateandworkgraph_attention_reassignare available only with a runtime-bound attention authority. Their absence on an unscoped surface is intentional.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 64 lines · 20 tokens per session scan A 24678a2f6efe
workgraph-workflow is a skill published in the GitHub repository lukacf/meerkat (20 stars, last pushed 3d ago), licensed Apache-2.0. It adds 20 tokens to every session and 682 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
batch
Execute batch operations on multiple files in parallel. Automatically discovers files, splits into chunks, and processes with parallel worker agents. Use /batch followed by operation and file pattern.
notion
Notion API for creating and managing pages, databases, and blocks. Use when the user wants to create a Notion page, query a Notion database, update Notion properties, search Notion, add content to Notion, manage Notion blocks, or interact with Notion data sources and workspaces via the API.
pr-feedback
Fetches PR review feedback and inline comments, categorizes them, and presents options to the user. Use when the user asks to get, read, address, or fix review comments on a pull request.
blog-post
杂志感长文, 含 masthead、hero、figures、pull quote、作者署名.
deck-course-module
暖纸背景 + Playfair, 左侧学习目标常驻, 含 MCQ 自测页.
argent-native-profiler
Native profiling for CPU hotspots, UI hangs, memory issues. iOS via xctrace; Android via Perfetto. Use when diagnosing native-level performance issues.