worker-workflow

worker-workflow is a skill for Claude Code from mnthe/hardworker-marketplace. It costs 44 tokens per session (3,139 once invoked), scanned A, original, MIT.

An eight-step process for workers completing assigned software tasks. It covers finding and claiming a task, reading its requirements, writing tests first when requested, implementing the change, checking it, and reporting completion.

In plain words
What is it for?
Use it to execute teamwork tasks from structured descriptions. It helps workers follow success criteria, run listed verification commands, commit selected changes, and report what was done.
Why use it?
It gives every worker the same way to handle tasks and verify results. TDD, or test-driven development, means writing tests before the implementation; this process supports that option.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: mentions Claude Code.

Part of the teamwork plugin — 4 skills, 5 commands shipped together

Good fit Use it to execute teamwork tasks from structured descriptions. It helps workers follow success criteria, run listed verification commands, commit selected changes, and report what was done.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mnthe/hardworker-marketplace/worker-workflow
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.

Any agent
npx skills add mnthe/hardworker-marketplace --skill worker-workflow
Clone the repo
git clone --depth 1 https://github.com/mnthe/hardworker-marketplace

Made for: Claude Code.

Or install teamwork, the plugin that ships this one along with the rest of its 4 skills, 5 commands.

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

agentmods badge for worker-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/mnthe/hardworker-marketplace/worker-workflow.svg)](https://agentmods.dev/skills/mnthe/hardworker-marketplace/worker-workflow)
Your own site
<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>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,139 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00044 $0.03139
Opus 5 $0.00022 $0.01570
Sonnet 5 $0.00009 $0.00628
Haiku 4.5 $0.00004 $0.00314

Measured 8d ago against content hash 4c78d57ae660, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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" |
plugins/teamwork/skills/worker-workflow/SKILL.md · 497 lines

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 blockedBy tasks are completed)
  • Unowned: No owner assigned yet
  • Open: Status is not completed or in_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>"
)

Read the full file on GitHub · 497 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. 8d ago First seen · 497 lines · 44 tokens per session scan A 4c78d57ae660

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

vercel/next.js · 95 tokens

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…

vercel/next.js · 170 tokens

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…

vercel/next.js · 103 tokens

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…

microsoft/vscode · 72 tokens