agent-collaboration

agent-collaboration is a skill for Claude Code, Codex from jazzenchen/VibeAround. It costs 39 tokens per session (1,024 once invoked), scanned A, original, MIT.

A coordination workflow for starting and waiting for VibeAround subagents during a multi-agent coding session. It is intended for requests beginning with a special subagent instruction, such as parallel work.

In plain words
What is it for?
Use it to initialize parallel subagents, give each one a focused coding task, and wait for their completion reports.
Why use it?
It provides a defined way to send assignments to other coding agents and receive their reports before the main agent finishes. This keeps parallel work coordinated.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; mentions Claude Code; mentions Codex.

Good fit Use it to initialize parallel subagents, give each one a focused coding task, and wait for their completion reports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jazzenchen/vibearound/agent-collaboration
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 jazzenchen/VibeAround --skill agent-collaboration
Clone the repo
git clone --depth 1 https://github.com/jazzenchen/VibeAround

Made for: Claude Code, Codex.

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 agent-collaboration

README.md
[![agentmods](https://agentmods.dev/badge/skills/jazzenchen/vibearound/agent-collaboration.svg)](https://agentmods.dev/skills/jazzenchen/vibearound/agent-collaboration)
Your own site
<a href="https://agentmods.dev/skills/jazzenchen/vibearound/agent-collaboration"><img src="https://agentmods.dev/badge/skills/jazzenchen/vibearound/agent-collaboration.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,024 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00039 $0.01024
Opus 5 $0.00019 $0.00512
Sonnet 5 $0.00008 $0.00205
Haiku 4.5 $0.00004 $0.00102

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

Security

Grade A, and why

agent-collaboration 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.

src/skills/claude/agent-collaboration/SKILL.md · 121 lines

How it starts

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

VibeAround Agent Collaboration

Initialize a VibeAround multi-agent turn from the current host agent, then wait for subagent reports before finalizing.

When to Use

  • The user message starts with subagent=
  • The first supported mode is subagent=parallel

Protocol

All host-to-subagent and subagent-to-host control messages must use va-agent-protocol.

VibeAround intercepts protocol envelopes in the thread. The raw envelope is hidden from the web UI and forwarded internally to the target agent. The protocol envelope must be the final content in the assistant message; do not write prose after it.

Use this envelope for structured messages:

<va-agent-protocol>
{
  "protocol": "va-agent-protocol",
  "kind": "assignment",
  "turn_id": "<multi_agent_turn_id>",
  "to_agent_id": "<subagent_guid>",
  "task": "<clear task for this subagent>",
  "context": "<only the relevant context>"
}
</va-agent-protocol>

Subagents must report back with:

<va-agent-protocol>
{
  "protocol": "va-agent-protocol",
  "kind": "report",
  "turn_id": "<multi_agent_turn_id>",
  "from_agent_id": "<subagent_guid>",
  "status": "completed",
  "summary": "<what changed or what was found>",
  "files_changed": [],
  "tests": [],
  "notes": []
}
</va-agent-protocol>

Initialize Parallel Subagents

Call the VibeAround MCP tool:

Tool: va_mcp_initialize_subagents
Server: vibearound
Arguments:
  thread_id: "<value of $VIBEAROUND_THREAD_ID>"
  cwd: "<current working directory>"
  mode: "parallel"
  agents:
    - name: "<host-chosen display name, e.g. John Planner>"
      agent_kind: "codex"
      task: "<parallel task>"
    - name: "<host-chosen display name, e.g. Maya Reviewer>"
      agent_kind: "codex"
      task: "<parallel task>"

Then wait for the turn to finish:

Tool: va_mcp_wait_for_subagents
Server: vibearound
Arguments:
  thread_id: "<value of $VIBEAROUND_THREAD_ID>"
  turn_id: "<turn id returned by va_mcp_initialize_subagents>"

Rules:

  • Choose concise human names for subagents. Names are display aliases; the MCP tool returns GUID agent IDs.
  • For parallel, default to exactly 2 subagents.
  • Use codex for subagents by default, even when the host is Claude Code.
  • Only create more than 2 subagents or use another agent_kind when the user explicitly asks.
  • For parallel, split the user's request into independent tasks that can run in separate git worktrees.
  • VibeAround handles missing Git repositories by running git init and creating an empty initial commit when needed. If Git itself is missing, VibeAround attempts a platform install before reporting an error.
  • Do not merge or clean up worktrees automatically. The host agent decides after reviewing results.
  • If VibeAround reports a dirty workspace or worktree creation error, tell the user and stop the multi-agent turn.
  • VibeAround injects subagent role/system guidance at session startup. Keep assignments focused on the task and relevant context.

Read the full file on GitHub · 121 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 Changed dc392f19c733
  2. 9d ago First seen · 121 lines · 39 tokens per session scan A 327f140fd4a6

Subscribe to this mod's changes

agent-collaboration is a skill published in the GitHub repository jazzenchen/VibeAround (523 stars, last pushed 3d ago), licensed MIT. It adds 39 tokens to every session and 1,024 once invoked, about $0.0002 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.