team

team is a skill for Claude Code from xWael9/ClaudeBoss. It costs 59 tokens per session (601 once invoked), scanned A, original, MIT.

A workflow that delegates a task to an OpenCode coding agent, reviews its response, and then completes the work together with the user.

In plain words
What is it for?
Use it for coding, writing, research, or general tasks when the user asks for team mode or wants Claude Code and OpenCode to work as a pair.
Why use it?
It provides a second agent's first pass while keeping review and final implementation in the main workflow.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code; mentions OpenCode.

Part of the claudeboss plugin — 3 skills shipped together

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 skills/xwael9/claudeboss/team
Any agent
npx skills add xWael9/ClaudeBoss --skill team
Clone the repo
git clone --depth 1 https://github.com/xWael9/ClaudeBoss

Made for: Claude Code.

Or install claudeboss, the plugin that ships this one along with the rest of its 3 skills.

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 team

README.md
[![agentmods](https://agentmods.dev/badge/skills/xwael9/claudeboss/team.svg)](https://agentmods.dev/skills/xwael9/claudeboss/team)
Your own site
<a href="https://agentmods.dev/skills/xwael9/claudeboss/team"><img src="https://agentmods.dev/badge/skills/xwael9/claudeboss/team.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 601 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.1 $0.00059 $0.00601
Opus 5 $0.00030 $0.00300
Sonnet 5 $0.00012 $0.00120
Haiku 4.5 $0.00006 $0.00060

Measured 5d ago against content hash acab18d0195e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 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.

skills/team/SKILL.md · 40 lines

How it starts

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

ClaudeBoss — Team Mode

You (Claude Code) and a free opencode agent work as a pair on one task. Opencode does the first pass; you review it like a second engineer would, then implement/finish it yourself.

Drift-prone. Free model catalogs (OpenCode Zen, OpenRouter) change without notice. Model selection happens live via opencode models every run — never assume a specific model id still exists.

Prerequisites

Run once per machine: claudeboss install — checks/installs the opencode CLI, verifies a free model is reachable, and prints manual OpenRouter fallback steps if not (no automated account creation, by design).

Workflow

  1. Classify the task into one of: code, write, research, general (use /claudeboss:plan instead, first, if the task itself is "figure out the right approach"). Coding tasks (features, fixes, refactors) → code. Prose/docs/copy → write. Fact-finding/comparison → research. Anything else → general.

  2. Delegate. Run:

    claudeboss run <task-type> "<precise task description — same detail you'd give a human contractor>"
    

    This is a blocking call — wait for it to return, don't poll.

  3. Review the output like a code review, not a rubber stamp. Check:

    • Does it actually satisfy the request, not just look plausible?
    • Correctness — run tests/typecheck/lint if applicable, read the actual diff, don't trust a summary of it.
    • Fit with the existing codebase's conventions.
  4. Implement. You apply the result yourself — edit files with Edit/Write, run verification (tests, the run skill, a browser check for UI), and fix anything opencode got wrong or left incomplete. Treat its output as a first draft from a teammate, not a final answer.

  5. If opencode's draft is unusable (wrong approach, missed the point), don't loop forever — after 2 failed delegations, tell the user directly and offer to just do the task yourself. Free models are weaker than you; don't over-trust them on hard problems.

Read the full file on GitHub · 40 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 · 40 lines · 59 tokens per session scan A acab18d0195e

Subscribe to this mod's changes

team is a skill published in the GitHub repository xWael9/ClaudeBoss (2 stars, last pushed 2mo ago), licensed MIT. It adds 59 tokens to every session and 601 once invoked, about $0.0003 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 skills, from other repositories

phx-deps-audit

Audit Hex deps for supply-chain security risk — bidi chars, compile-time exec, maintainer changes, typosquats, CVEs. Use after mix deps.update, when checking if a package upgrade is safe, or reviewing mix.lock PR diffs.

oliver-kriska/claude-elixir-phoenix · 58 tokens

release

CONTRIBUTOR TOOL - Cut a plugin release: bump plugin.json version, finalize CHANGELOG, update README if needed, gate on make ci, commit, tag vX.Y.Z, and create the GitHub release. Use when shipping a new plugin version. NOT distributed.

oliver-kriska/claude-elixir-phoenix · 60 tokens

session-deep-dive

Deep qualitative analysis of high-signal sessions. Spawns subagents with v2 template, synthesizes patterns, compares against known findings. Use after /session-scan.

oliver-kriska/claude-elixir-phoenix · 40 tokens

brainstorm

Brainstorm Elixir/Phoenix features — explore ideas, compare approaches, gather requirements. Use when vague idea, not sure how to approach, or want to discuss before plan.

oliver-kriska/claude-elixir-phoenix · 39 tokens

elixir-idioms

OTP/BEAM patterns and Elixir idioms — GenServer, Supervisor, Task, Registry, pattern matching, with chains, pipes. Use when designing processes or debugging BEAM issues.

oliver-kriska/claude-elixir-phoenix · 44 tokens

security

Enforce Elixir/Phoenix security — auth, OAuth, sessions, CSRF, XSS, SQL injection, input validation, secrets. Use when editing auth files, login flows, RBAC, or API keys.

oliver-kriska/claude-elixir-phoenix · 47 tokens