task-workflow

A task-queue workflow for creating, claiming, updating, and completing work items shared by multiple AI agents. A dependency is a task that must be finished before another task can start.

In plain words
What is it for?
Use it to split large jobs into smaller tasks, delegate work to other agents, run independent tasks in parallel, and enforce task dependencies.
Why use it?
It prevents agents from taking the same work and makes task status and ordering visible. It also supports blocked and cancelled work.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/fthsrbst/mnema/task-workflow
Any agent
npx skills add fthsrbst/mnema --skill task-workflow
Clone the repo
git clone --depth 1 https://github.com/fthsrbst/mnema

Made for: Claude Code, Codex.

Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 803 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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

ModelPer sessionOnce invoked
Fable 5 $0.00045 $0.00803
Opus 5 $0.00023 $0.00402
Sonnet 5 $0.00009 $0.00161
Haiku 4.5 $0.00005 $0.00080

Measured 2d ago against content hash a823bb65d45a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

task-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 2d 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.

skills/task-workflow/SKILL.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Görev İş Akışı (Task Workflow)

Hub görev kuyruğu, agent'lar arası iş delegasyonunu sağlar. Bir agent iş oluşturur, başka bir agent (veya aynı agent farklı oturumda) o işi üstlenir ve tamamlar.

Görev Yaşam Döngüsü

pending → claimed → in_progress → done
                  ↘ blocked ↗
                  ↘ cancelled

Ne Zaman Görev Oluşturmalı

Durum Aksiyon
Büyük iş parçalara bölünebilir Her parça için ayrı görev
Başka agent'ın uzmanlığı gerekli agent_find ile uygun agent bul, görev oluştur
Paralel çalışılabilir alt işler var Bağımsız görevler oluştur
Sıralı bağımlılık var depends_on ile zincirle

MCP Araçları

task_create

{
  "title": "API endpoint'lerini test et",
  "description": "Tüm REST endpoint'lerinin smoke test'i",
  "project": "my-project",
  "priority": 5,
  "tags": ["testing", "api"],
  "created_by": "claude-code"
}

task_claim

Bir görevi üstlenmek için:

{ "uid": "task-uid", "agent": "cursor-agent" }
  • Sadece pending durumundaki görevler claim edilebilir
  • Bağımlılıkları (depends_on) tamamlanmamış görevler claim edilemez

task_update

Durum değiştirmek için:

{ "uid": "task-uid", "status": "in_progress" }

task_complete

İşi bitirince:

{ "uid": "task-uid", "result": "15 endpoint test edildi, 2 hata bulundu" }
  • result alanına yapılandırılmış çıktı koy — sonraki agent bu bilgiyi kullanır

task_queue

Proje için sıradaki işleri almak için:

{ "project": "my-project", "limit": 5 }
  • Önceliğe göre sıralı, bağımlılıkları karşılanmış görevleri döner

Bağımlılık Yönetimi

{
  "title": "Frontend'i backend'e bağla",
  "depends_on": ["backend-api-uid", "auth-uid"]
}
  • depends_on içindeki tüm görevler done olmadan bu görev claim edilemez
  • Döngüsel bağımlılık oluşturma

Öncelik (Priority)

  • 0 = normal (varsayılan)
  • 1-5 = artan aciliyet
  • 10+ = kritik (sadece gerçekten acil durumlar için)

En İyi Pratikler

Read the full file on GitHub · 93 lines

Changes

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.

  1. 2d ago First seen · 93 lines · 45 tokens per session scan A a823bb65d45a

Subscribe to this mod's changes

task-workflow is a skill published in the GitHub repository fthsrbst/mnema (2 stars, last pushed 2d ago), licensed MIT. It adds 45 tokens to every session and 803 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

gini-bug-report

File a locally-captured, already-redacted Gini crash report as a GitHub issue, with the user's consent. Reads the pending crash queue and delegates the actual filing to the github-issues skill.

Open-Curiosity/gini-agent · 47 tokens

os-platform

Query and update live Open Software os-platform production data through the platform API. Use when an agent needs current Issues/Bounties, Orgs, Projects, Submissions, Comments, Activity, Contributors, Product Memory, the team Timeline, or API status, or needs to create, assign, move, or comment on tracked work.

open-software-network/os-clovy · 69 tokens

os-task-prep

Use when the user wants to turn open Open Software Issues into AFK-ready, agent-implementable tasks: find ready-to-code Issues for an org/project, diagnose each against the local codebase (root cause, files, code fragments, dependencies, blockers, acceptance, verify), enrich the Issue description on the platform…

open-software-network/os-clovy · 130 tokens

pad

Talk to your project. Natural-language project management — create items, check status, plan work, brainstorm ideas, and more.

PerpetualSoftware/pad · 27 tokens

onboard

Link this project to a Pad workspace and set it up.

PerpetualSoftware/pad · 11 tokens

starcat-support-project-create

创建并登记 Starcat supports 独立支撑项目的完整流程。用于用户要在 supports/ 下新增 API、CLI、Launcher、浏览器扩展、Homebrew tap、文档、网站或其他独立仓库,并要求补齐开源治理文件、中英文 README、Starcat 营销区块、GitHub 模板/Actions、clone-all.sh、sync-starcat-readme-promo.py 和 supports 跨项目文档的场景。.

starcat-app/Starcat · 105 tokens