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.
git clone --depth 1 https://github.com/freibergergarcia/phone-a-friendWrote 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.
[](https://agentmods.dev/commands/freibergergarcia/phone-a-friend/phone-a-team)<a href="https://agentmods.dev/commands/freibergergarcia/phone-a-friend/phone-a-team"><img src="https://agentmods.dev/badge/commands/freibergergarcia/phone-a-friend/phone-a-team/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/freibergergarcia/phone-a-friend/phone-a-team"><img src="https://agentmods.dev/badge/commands/freibergergarcia/phone-a-friend/phone-a-team.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00033 | $0.14878 |
| Opus 5 | $0.00016 | $0.07439 |
| Sonnet 5 | $0.00007 | $0.02976 |
| Haiku 4.5 | $0.00003 | $0.01488 |
Grade D, and why
phone-a-team scanned grade D with 3 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.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
| **Ollama** | `PROMPT_JSON="$(jq -Rs . < "$PROMPT_FILE")"; curl -s http://localhost:11434/api/chat -H "Content-Type: application/json" -d "{\"model\":\"<model>\",\"messages\":[{\"role\":\"user\",\"content\":${PROMPT_JSO Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
`curl -fsSL https://opencode.ai/install | bash`" Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
| **Ollama** | `PROMPT_JSON="$(jq -Rs . < "$PROMPT_FILE")"; curl -s http://localhost:11434/api/chat -H "Content-Type: application/json" -d "{\"model\":\"<model>\",\"messages\":[{\"role\":\"user\",\"content\":${PROMPT_JSO How it starts
The opening of the file, as written. The whole thing — 1,209 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/phone-a-team
Autonomous iterative refinement loop. Delegate a task to one or more backends, review the output, iterate with feedback, and synthesize the final result.
Goal
Take a task description, relay it to backend(s) via phone-a-friend, review
the output, iterate up to MAX_ROUNDS rounds until convergence, then present a
synthesized result to the user.
Inputs
- Task description and options:
$ARGUMENTS
Step 0 — Relay mode
command -v phone-a-friend
- If found: set
RELAY_MODE = binary - If not found: set
RELAY_MODE = direct
No hard abort. The skill continues either way.
Direct call reference
When RELAY_MODE = direct, call backend CLIs directly instead of using the
phone-a-friend binary:
| Backend | Direct command |
|---|---|
| Codex | codex exec -C "$PWD" --skip-git-repo-check --sandbox <mode> "$(cat "$PROMPT_FILE")" < /dev/null |
| Gemini | gemini --sandbox --yolo --include-directories "$PWD" --output-format text -m <model> --prompt "$(cat "$PROMPT_FILE")" |
| Ollama | PROMPT_JSON="$(jq -Rs . < "$PROMPT_FILE")"; curl -s http://localhost:11434/api/chat -H "Content-Type: application/json" -d "{\"model\":\"<model>\",\"messages\":[{\"role\":\"user\",\"content\":${PROMPT_JSON}}],\"stream\":false}" | jq -r '.message.content' |
| OpenCode | opencode run --dir "$PWD" --model <provider/model> "$(cat "$PROMPT_FILE")" — omit --model when no override is set; never pass a bare model name in direct mode (see OpenCode backend below) |
Sandbox mapping for direct mode:
- Codex: pass the mode string directly (
--sandbox read-onlyor--sandbox workspace-write) - Gemini:
--sandboxflag is boolean. Present = sandboxed (read-only). Use--sandboxfor both read-only and workspace-write; omit it only fordanger-full-access. - Ollama: no sandbox support. All context must be in the prompt.
- OpenCode: no sandbox flag is available.
--dir "$PWD"scopes the workspace OpenCode reads but does not prevent writes. The user's OpenCode permission config controls file access.
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.
- 2d ago Changed · +35 lines 6455bbc86dc3
- 12d ago First seen · 1,174 lines · 33 tokens per session scan D 604cf02ae484
phone-a-team is a command published in the GitHub repository freibergergarcia/phone-a-friend (10 stars, last pushed 3d ago), licensed Apache-2.0. It adds 33 tokens to every session and 14,878 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 3 findings (sends data to an external url, downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
atomic-plan
Write a design doc (concepts, business rules, approaches) and a checkpoint-table spec (contract) for non-trivial work; inline spec only for trivial. Gauges triviality; loops spec authoring with subagents. Human-facing artifact, Mermaid diagrams allowed.
session-report
Capture what changed this session and why, scoped to the current branch. Read by ship verbs when synthesizing the commit message; deleted after a successful commit.
commit
Stage, commit, and optionally ship further. Pass an escalation token (push, pr, merge, squash, squash merge) to skip the prompt. With no token, commits then asks how far to ship. Delegates message format to the atomic-git-discipline skill.
create-task-list.template
This prompt was authored for Claude-style slash workflows. In Codex runtime, adapt tool calls as follows.
adopt-roadmap.template
This prompt was authored for Claude-style slash workflows. In Codex runtime, adapt tool calls as follows.
update-check.template
This prompt was authored for Claude-style slash workflows. In Codex runtime, adapt tool calls as follows.