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.
npx skills add freibergergarcia/phone-a-friend --skill codexgit 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/skills/freibergergarcia/phone-a-friend/codex)<a href="https://agentmods.dev/skills/freibergergarcia/phone-a-friend/codex"><img src="https://agentmods.dev/badge/skills/freibergergarcia/phone-a-friend/codex/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/skills/freibergergarcia/phone-a-friend/codex"><img src="https://agentmods.dev/badge/skills/freibergergarcia/phone-a-friend/codex.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.00075 | $0.02465 |
| Opus 5 | $0.00037 | $0.01233 |
| Sonnet 5 | $0.00015 | $0.00493 |
| Haiku 4.5 | $0.00007 | $0.00247 |
Grade C, and why
phone-a-team scanned grade C with 1 finding 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 9d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
trap 'rm -rf "$ROUND_DIR"' EXIT This is a copy
100% identical to phone-a-team — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/phone-a-team for Codex
Iterative multi-model refinement loop. Use this when the user wants more than a single relay — they want backends to push back on each other across rounds and converge on something. For one-shot "ask X and Y" requests, use /phone-a-friend (which already supports parallel multi-backend) instead.
You orchestrate the rounds yourself via Bash. Do not spawn Codex subagents for this — the skill is designed to run end-to-end in the parent turn. Codex's own model does the synthesis between rounds by reading the per-backend outputs you write to disk.
Inputs
$ARGUMENTS contains the user's request. Parse:
- TASK_DESCRIPTION: free-form text with flags stripped.
--backend <name>(or--backend a,b): comma-separated list of friend backends to query each round. Allowed:claude,gemini,opencode,ollama. Nevercodex(the recursion guard refuses; you would be calling yourself). Default:claude,gemini.antigravityis deliberately excluded until the PaF backend supports session continuity;/phone-a-friendsupports one-shot Antigravity relays.--max-rounds N: rounds before giving up. Clamp to [1, 5]. Default: 3.--model <name>: only meaningful forollamaandopencode.
If the user named only one backend, the team degenerates to a self-review loop against that backend across rounds. That is valid; do not error out, just proceed.
Step 0 — Preflight
-
Resolve the binary. Always use the PATH-installed phone-a-friend, never
./phone-a-friendfrom the current directory.RELAY_BIN="$(command -v phone-a-friend)" if [ -z "$RELAY_BIN" ]; then echo "phone-a-friend binary not on PATH. Install with: npm i -g @freibergergarcia/phone-a-friend" >&2 exit 1 fi -
Resolve the repository path.
REPO="$(git rev-parse --show-toplevel 2>/dev/null || pwd)" -
Check the Codex sandbox mode. You are running inside Codex. By default, Codex uses
workspace-write, which blocks subprocess access to the macOS Keychain and most outbound network. That means relays to Claude will returnNot logged in · Please run /login(false alarm — Claude is logged in; the sandbox is intercepting) and relays to Gemini will hang until the timeout fires (Gemini cannot reach Google for OAuth refresh).
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.
- 9d ago First seen · 180 lines · 75 tokens per session scan C dd57da2d5f14
phone-a-team is a skill published in the GitHub repository freibergergarcia/phone-a-friend (10 stars, last pushed yesterday), licensed Apache-2.0. It adds 75 tokens to every session and 2,465 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). It is 100% identical to phone-a-team, differing in 0 lines, and is treated as a copy.
Other skills, from other repositories
roundtable
Convene a "round table" of multiple frontier AI models — Grok, Codex/OpenAI, GLM, MiniMax, Claude, and Gemini — to get independent perspectives on a question, optionally deliberating across rounds until a Claude chair declares consensus, then synthesize a single recommendation. Use when the user says "round table"…
save-learning
Saves user instructions as persistent learnings for future sessions. Use when the user says 'remember this', 'always do X', 'from now on', 'never do Y', or gives any instruction they want persisted across sessions. Proactively suggest when the user states a preference, convention, or rule they clearly want followed in…
gwm
Manage git worktrees across any repository with the gwm Rust binary (CLI + ratatui TUI). Use when the user asks to create / list / remove / bootstrap / switch / link worktrees, run a command across worktrees (gwm exec) or reclaim build artifacts (gwm clean), materialise a PR into a worktree (gwm review), drive a…
web-access
A method for handling difficult web tasks across search, page fetching, and a real browser. It covers sites that need login sessions, dynamic pages, anti-bot handling, or exploration before their structure is understood.
skill-creator
A skill for creating or improving reusable instructions for an agent. It covers capturing the intended workflow, writing a draft, testing it, and refining its trigger description.
packing-list
A travel-packing aid that builds a checklist from the destination's climate, trip type, length, transport, accommodation, and travelling group. It treats a city break, hike, business trip, and family holiday as different packing problems.