team

A coordination rule for running several coding agents as real worker processes in separate tmux panes. Tmux is a terminal tool that lets multiple shell sessions run side by side.

In plain words
What is it for?
Use it to divide work such as implementing an authentication layer, its routes, and its tests across separate workers, then track their results.
Why use it?
It helps split a large task into independent pieces and lets workers work in parallel while one coordinator assigns and monitors them.

Cursor rule

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 rules/jkudjo/oh-my-cursor/team
Clone the repo
git clone --depth 1 https://github.com/Jkudjo/oh-my-cursor
Per session 13 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 847 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.00013 $0.00847
Opus 5 $0.00006 $0.00424
Sonnet 5 $0.00003 $0.00169
Haiku 4.5 $0.00001 $0.00085

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

Security

Grade A, and why

team 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 2d 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.

rules/team.mdc · 87 lines

How it starts

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

@team

Trigger: When a task is large enough to benefit from parallel execution with real background workers.

How it works

  • omc team start spawns a tmux session with N worker panes
  • Each worker pane runs the omc team worker process — polling for tasks
  • The coordinator (you, in Cursor) assigns tasks via MCP tools
  • Workers pick up tasks, execute them with codex, and write results back
  • Results are visible in real time via omc team status or omc team attach

Coordinator Protocol (in Cursor chat)

  1. Start the team (run in terminal first):

    omc team start --workers 3 --goal "implement the auth module"
    
  2. Load the approved plan: load_plan with the latest approved plan ID.

  3. Break into parallel-safe tasks (different files, no shared state):

    assign_task session_id="team-XXX" title="Implement JWT middleware" description="..." assigned_to="worker-1"
    assign_task session_id="team-XXX" title="Write auth routes" description="..." assigned_to="worker-2"
    assign_task session_id="team-XXX" title="Add auth tests" description="..." assigned_to="worker-3"
    
  4. Monitor: get_team_status session_id="team-XXX" — or from terminal: omc team status

  5. Adversarial verification — when implementation tasks are done, before @review:

    assign_task session_id="team-XXX" title="Adversarial review of worker-1 output"
      description="Your job is to BREAK worker-1's implementation. Find flaws, test edge cases,
      attempt to construct inputs that cause failures. Report every weakness found — do not
      be polite. A flaw you miss here reaches production."
      assigned_to="worker-2"
    
    • The adversarial worker must attempt to break the implementation, not just read it
    • It must try: null inputs, boundary values, concurrent access, wrong types, large inputs
    • It must check: error paths, missing auth checks, SQL injection, unhandled exceptions
    • Result must be: list of flaws found (with severity) or explicit "no flaws found after X attempts"

Read the full file on GitHub · 87 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. 2d ago First seen · 87 lines · 13 tokens per session scan A af004c95fa52

Subscribe to this mod's changes

team is a cursor rule published in the GitHub repository Jkudjo/oh-my-cursor (1 stars, last pushed 5mo ago), licensed MIT. It adds 13 tokens to every session and 847 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-31.

Related

Other cursor rules, from other repositories