Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add yonatangross/orchestkit/plugin install orkWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/yonatangross/orchestkit/task-dependency-patterns)<a href="https://agentmods.dev/skills/yonatangross/orchestkit/task-dependency-patterns"><img src="https://agentmods.dev/badge/skills/yonatangross/orchestkit/task-dependency-patterns.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00051 | $0.01804 |
| Opus 5 | $0.00026 | $0.00902 |
| Sonnet 5 | $0.00010 | $0.00361 |
| Haiku 4.5 | $0.00005 | $0.00180 |
Grade A, and why
task-dependency-patterns 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 today.
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 — 218 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Task Dependency Patterns
Overview
Claude Code 2.1.16 introduces a native Task Management System with four tools:
CC 2.1.233 caveat: the Task tools are removed for the newest models unless
CLAUDE_CODE_ENABLE_TODO_TOOLS=1is set in user or managed settings (or the shell). ork cannot ship that flag (CC reads onlypermissionsfrom plugin settings), so treat every Task-tool call in this skill as conditional on the operator's environment.
- TaskCreate: Create new tasks with subject, description, and activeForm
- TaskUpdate: Update status (pending → in_progress → completed), set dependencies
- TaskGet: Retrieve full task details including blockers
- TaskList: View all tasks with status and dependency summary
Tasks enable structured work tracking, parallel coordination, and clear progress visibility.
When to Use
- Breaking down complex multi-step implementations
- Coordinating parallel work across multiple files
- Tracking progress on large features
- Managing dependencies between related changes
- Providing visibility into work status
Key Patterns
1. Task Decomposition
Break complex work into atomic, trackable units:
Feature: Add user authentication
Tasks:
#1. [pending] Create User model
#2. [pending] Add auth endpoints (blockedBy: #1)
#3. [pending] Implement JWT tokens (blockedBy: #2)
#4. [pending] Add auth middleware (blockedBy: #3)
#5. [pending] Write integration tests (blockedBy: #4)
2. Dependency Chains
Use addBlockedBy to create execution order:
// Task #3 cannot start until #1 and #2 complete
{"taskId": "3", "addBlockedBy": ["1", "2"]}
3. Status Workflow
pending → in_progress → completed
↓ ↓
(unblocked) (active)
pending/in_progress → deleted
- pending: Task created but not started
- in_progress: Actively being worked on
- completed: Work finished and verified
- deleted: Task removed — permanently removes the task
Task Deletion
Use status: "deleted" to permanently remove tasks:
What ships with it
12 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- checklists/dependency-checklist.md 2.2 KB
- checklists/task-design-checklist.md 2.4 KB
- references/dependency-tracking.md 1.6 KB
- references/multi-agent-coordination.md 2.7 KB
- references/status-workflow.md 3.1 KB
- rules/_sections.md 574 B
- rules/_template.md 339 B
- rules/task-agent-coordination.md 2.8 KB
- rules/task-completion-criteria.md 3.2 KB
- rules/task-dependency-validation.md 2.5 KB
- scripts/task-tree-visualizer.py 5.3 KB runs code
- test-cases.json 3.7 KB
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.
- today First seen · 218 lines · 51 tokens per session scan A 9886d728aa16
task-dependency-patterns is a skill published in the GitHub repository yonatangross/orchestkit (228 stars, last pushed yesterday), licensed MIT. It adds 51 tokens to every session and 1,804 once invoked, about $0.0003 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-09-05.
Other skills, from other repositories
Agent Workflow Builder
Build multi-agent AI workflows with orchestration, tool use, and state management.
Agent Workflow Builder
Build multi-agent AI workflows with orchestration, tool use, and state management.
flow-nexus-swarm
Cloud-based AI swarm deployment and event-driven workflow automation with Flow Nexus platform.
Agent Workflow Builder
Build multi-agent AI workflows with orchestration, tool use, and state management.
flow-nexus-swarm
Cloud-based AI swarm deployment and event-driven workflow automation with Flow Nexus platform.
trulens-evaluation-workflow
Systematically evaluate your LLM application with TruLens.