add

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

A command for adding a known implementation task to a project's work queue. It records details such as the task, priority, owner, problem, and acceptance criteria.

In plain words
What is it for?
Use it to queue work that is already understood, including its owner and completion conditions; use the separate research command when investigation or architectural decisions are needed.
Why use it?
It turns a coding request into a defined backlog item and checks whether the work is small enough for one implementation task.

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/add
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 add

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

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

Security

Grade A, and why

add 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 5d 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/add.md · 79 lines

How it starts

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

Add Implementation Work Item to Queue

Add a new implementation work item to the backlog for autonomous processing.

Arguments

  • $ARGUMENTS - Brief description of the work item

When to Use /queue:research Instead

Use /queue:research instead of /queue:add when:

  • The task requires investigation before coding
  • Multiple approaches need evaluation
  • Architecture decisions need documenting
  • Scope is unclear and needs a plan first

/queue:add is for known work — you know what needs to be built and how.

Process

  1. Read .claude/queue/backlog.json to get current items

  2. Gather required information:

    • Title: From the arguments (or ask if unclear)
    • Priority: 1 (urgent) to 5 (low) - ask if not specified
    • Owner: Which agent should handle this (e.g., staff-engineer, staff-software-architect)
    • Problem: What needs to be solved
    • Acceptance criteria: How do we know it's done
  3. Verify the task fits story sizing rules:

    • Can it be completed in a single context window?
    • Does it touch 3-5 files or fewer?
    • If not, suggest splitting into smaller tasks
  4. Create the work item:

    {
      "id": "YYYY-MM-DD-{slug}",
      "title": "Brief description",
      "type": "implementation",
      "priority": 1-5,
      "status": "pending",
      "requires_approval": false,
      "owner": "agent-type",
      "blocked_by": [],
      "context": {
        "problem": "What needs solving",
        "acceptance": ["Criterion 1", "Criterion 2"],
        "files_hint": ["optional/path/hints"]
      },
      "sizing": "single-context",
      "created": "ISO timestamp",
      "updated": "ISO timestamp"
    }
    
  5. Check for dependencies:

    • If this task depends on another task, add the dependency ID to blocked_by
    • Blocked tasks won't be picked up by /queue:work until dependencies are resolved
  6. Add to backlog.json and write the file

Confirmation

After adding, report:

  • Work item ID
  • Title and priority
  • Assigned owner
  • Number of acceptance criteria
  • Current backlog size
  • Any blocking dependencies

Read the full file on GitHub · 79 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. 5d ago First seen · 79 lines · 9 tokens per session scan A 76c6ef7fca01

Subscribe to this mod's changes

add is a command published in the GitHub repository cloudrepo-io/founder-os (19 stars, last pushed 7mo ago), licensed MIT. It adds 9 tokens to every session and 541 once invoked, about $0.0000 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.