swarm repositories / source
aboutsummaryrefslogtreecommitdiff
path: root/assets/codex-skills/phone-opus/SKILL.md
diff options
context:
space:
mode:
authormain <main@swarm.moe>2026-03-23 15:38:00 -0400
committermain <main@swarm.moe>2026-03-23 15:38:00 -0400
commitff76c72f3c78694eebe4824318e85c4751343cf4 (patch)
treecfb49d55874a9f90b11fed9756f00e1fc233faeb /assets/codex-skills/phone-opus/SKILL.md
parent36f3be895696e674fced66ef2b6d285149ee5562 (diff)
downloadphone_opus-ff76c72f3c78694eebe4824318e85c4751343cf4.zip
Support resuming Claude consult sessions
Diffstat (limited to 'assets/codex-skills/phone-opus/SKILL.md')
-rw-r--r--assets/codex-skills/phone-opus/SKILL.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/assets/codex-skills/phone-opus/SKILL.md b/assets/codex-skills/phone-opus/SKILL.md
index 481cd4a..5fe91d7 100644
--- a/assets/codex-skills/phone-opus/SKILL.md
+++ b/assets/codex-skills/phone-opus/SKILL.md
@@ -9,27 +9,28 @@ Use `phone_opus.consult` when you want a blocking Claude Code consult without ed
## When to use it
+Whenever you're making a *major, nontrivial, high level* design decision, you should get a second opinion from Opus.
+Opus is intelligent and has a different perspective, so takes its feedback seriously; but nothing it says
+should be taken as authoritative or final. It is a pure consultant.
+
- 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.
+- Reuse `session_id` from an earlier call when you want Claude to continue the same conversation.
## Tool surface
- `consult`
- required: `prompt`
- - optional: `cwd`, `max_turns`, `render`, `detail`
+ - optional: `cwd`, `max_turns`, `session_id`, `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.
+- The returned `session_id` is reusable: pass it back into a later `consult` call to continue that Claude conversation.
## Example