work

work is a command for Claude Code from cloudrepo-io/founder-os. It costs 11 tokens per session (1,314 once invoked), scanned A, original, MIT.

A command that selects the next pending work item from a project queue and starts it.

In plain words
What is it for?
Use it to inspect active work, choose the highest-priority unblocked item, move it into progress, and report its acceptance criteria.
Why use it?
It applies the queue’s priority and dependency rules and loads the project context before work begins.

Command for Claude Code

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 commands/cloudrepo-io/founder-os/work
Clone the repo
git clone --depth 1 https://github.com/cloudrepo-io/founder-os

Made for: Claude Code.

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 work

README.md
[![agentmods](https://agentmods.dev/badge/commands/cloudrepo-io/founder-os/work.svg)](https://agentmods.dev/commands/cloudrepo-io/founder-os/work)
Your own site
<a href="https://agentmods.dev/commands/cloudrepo-io/founder-os/work"><img src="https://agentmods.dev/badge/commands/cloudrepo-io/founder-os/work.svg" alt="Measured on agentmods" height="20"></a>
Per session 11 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,314 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.00011 $0.01314
Opus 5 $0.00005 $0.00657
Sonnet 5 $0.00002 $0.00263
Haiku 4.5 $0.00001 $0.00131

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

Security

Grade A, and why

work 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 4d 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.

.claude/commands/queue/work.md · 184 lines

How it starts

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

Work Next Queue Item

Pick up the highest-priority pending item and begin working on it.

Process

  1. Read .claude/queue/active.json and .claude/queue/backlog.json

  2. Check if there's already an active item:

    • If yes, report its status and ask if you should continue or abandon it
    • If no, proceed to pick up next item
  3. Select the next item from backlog:

    • Highest priority (lowest number) first
    • If same priority, oldest (earliest created) first
    • Skip items with blocked_by arrays containing unresolved task IDs — check if each blocking task exists in completed/ directory. If all blockers are completed, the task is unblocked.
  4. Move the item from backlog to active:

    • Remove from backlog.json
    • Add to active.json with status: "in_progress"
    • Update the "updated" timestamp
  5. Load company context before working:

    • Read .claude/company.yaml for tech stack, differentiators, market context
    • Read root CLAUDE.md for workflow rules and team structure
    • Read .claude/learnings/codebase.md for accumulated patterns
  6. Report what you're starting:

    • Work item ID, title, and type
    • Problem to solve
    • Acceptance criteria (or research questions)
    • Files hint (if any)
  7. Execute based on task type:


Branch A: Implementation Tasks (type: "implementation")

Standard implementation work.

  1. If a plan_reference exists, read the referenced plan file first — it contains the approved approach
  2. Follow story sizing rules (single context window, 3-5 files max)
  3. Implement the solution
  4. Apply goal-backward verification before completion
  5. Use the appropriate specialist agent via Task tool if needed

On completion:

  • Run goal-backward verification checklist
  • Move item from active.json to .claude/queue/completed/{id}.json
  • Update status to "completed"
  • Add result object with summary, files_changed, and verification
  • Generate completion report in .claude/queue/reports/{id}.md
  • Report completion and what was accomplished

Read the full file on GitHub · 184 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. 4d ago First seen · 184 lines · 11 tokens per session scan A 606f32a266c2

Subscribe to this mod's changes

work is a command published in the GitHub repository cloudrepo-io/founder-os (19 stars, last pushed 7mo ago), licensed MIT. It adds 11 tokens to every session and 1,314 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.