From 36f3be895696e674fced66ef2b6d285149ee5562 Mon Sep 17 00:00:00 2001 From: main Date: Mon, 23 Mar 2026 14:19:38 -0400 Subject: Add Codex phone-opus skill --- assets/codex-skills/phone-opus/SKILL.md | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 assets/codex-skills/phone-opus/SKILL.md (limited to 'assets/codex-skills') diff --git a/assets/codex-skills/phone-opus/SKILL.md b/assets/codex-skills/phone-opus/SKILL.md new file mode 100644 index 0000000..481cd4a --- /dev/null +++ b/assets/codex-skills/phone-opus/SKILL.md @@ -0,0 +1,42 @@ +--- +name: phone-opus +description: Use when you want a consultative Claude Code pass through the local `phone_opus` MCP server. Trigger for blocking second-opinion analysis, repository inspection, summaries, or planning where Claude should have read-only built-in tools but no edit capability. +--- + +# phone-opus + +Use `phone_opus.consult` when you want a blocking Claude Code consult without edit permissions. + +## When to use it + +- Ask for a second opinion on code, architecture, debugging, or design. +- Point Claude at a specific repository with `cwd`. +- Cap the consultation with `max_turns` when needed. + +## Tool surface + +- `consult` + - required: `prompt` + - optional: `cwd`, `max_turns`, `render`, `detail` +- `health_snapshot` +- `telemetry_snapshot` + +## Runtime posture + +- Uses the system `claude` install. +- Runs with default Claude settings. +- Exposes no MCP servers to Claude. +- Restricts Claude to the read-only built-in toolset: + - `Bash,Read,Grep,Glob,LS,WebFetch,WebSearch` +- Uses `--permission-mode dontAsk`, so only globally preapproved read-only Bash commands can execute. +- This surface is consultative only. Edit tools are unavailable. + +## Example + +Call `phone_opus.consult` with: + +- `prompt`: `Inspect the Rust workspace and tell me where the retry logic is brittle.` +- `cwd`: `/absolute/path/to/repo` +- `max_turns`: `6` + +Expect a blocking response containing Claude's answer plus execution metadata such as duration, turn count, session id, and cost when available. -- cgit v1.2.3