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 skills add mnthe/hardworker-marketplace --skill worker-workflowgit clone --depth 1 https://github.com/mnthe/hardworker-marketplaceWrote 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/mnthe/hardworker-marketplace/worker-workflow)<a href="https://agentmods.dev/skills/mnthe/hardworker-marketplace/worker-workflow"><img src="https://agentmods.dev/badge/skills/mnthe/hardworker-marketplace/worker-workflow.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.00044 | $0.03139 |
| Opus 5 | $0.00022 | $0.01570 |
| Sonnet 5 | $0.00009 | $0.00628 |
| Haiku 4.5 | $0.00004 | $0.00314 |
Grade A, and why
worker-workflow scanned grade A with 1 finding 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 8d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
| "API works" | "curl /api/users: 200 OK, 5 users returned, exit code 0" | How it starts
The opening of the file, as written. The whole thing — 497 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Task Execution Workflow
This skill provides the complete 8-phase lifecycle for executing teamwork tasks using native Claude Code APIs. Follow these phases in order.
Structured Description Convention
The orchestrator creates tasks with structured markdown sections in the description. Workers MUST parse these sections to determine approach, criteria, and verification commands.
## Description
What needs to be done
## Approach
standard | tdd
## Success Criteria
- Criterion 1
- Criterion 2
## Verification Commands
npm test -- path/to/test
npx tsc --noEmit src/file.ts
Parsing rules:
| Section | Required | Default |
|---|---|---|
## Description |
Yes | N/A |
## Approach |
No | standard |
## Success Criteria |
No | Use general evidence collection |
## Verification Commands |
No | Skip automated verification |
Workers extract these sections from the task description after claiming. If ## Approach is missing, default to standard. If ## Success Criteria is missing, use general evidence collection.
Phase 1: Find Task
List available tasks using native TaskList:
# List all tasks in the team
tasks = TaskList()
Filter for tasks that are:
- Unblocked: No pending dependencies (all
blockedBytasks are completed) - Unowned: No
ownerassigned yet - Open: Status is not
completedorin_progress
If your agent has a role specialization, prioritize tasks matching your role.
If no task found: Send a message to the orchestrator and wait for assignment.
SendMessage(
type="message",
recipient="orchestrator",
content="No available tasks matching my role. Waiting for assignment.",
summary="Worker idle - no tasks available"
)
Phase 2: Claim Task
Claim the task by setting yourself as the owner and updating the status:
TaskUpdate(
taskId="<TASK_ID>",
owner="<your-agent-name>",
status="in_progress",
activeForm="Working on: <task subject>"
)
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.
- 8d ago First seen · 497 lines · 44 tokens per session scan A 4c78d57ae660
worker-workflow is a skill published in the GitHub repository mnthe/hardworker-marketplace (4 stars, last pushed 4mo ago), licensed MIT. It adds 44 tokens to every session and 3,139 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…