Agent Skills: ask

Async via ask, end turn immediately; use when user explicitly delegates to any AI provider (gemini/codex/opencode/droid); NOT for questions about the providers themselves.

UncategorizedID: bfly123/claude_code_bridge/ask

Repository

bfly123License: NOASSERTION
1,052101

Install this agent skill to your local

pnpm dlx add-skill https://github.com/bfly123/claude_code_bridge/tree/HEAD/inherit_skills/codex_skills/ask

Skill Files

Browse the full folder contents for ask.

Download Skill

Loading file tree…

inherit_skills/codex_skills/ask/SKILL.md

Skill Metadata

Name
ask
Description
Send a request to a CCB agent with `ask`.

Use this skill when the user writes $ask <target> <message...>.

  • TARGET = first token; MESSAGE = raw remainder sent as the task body.
  • ask may append reply guidance unless the message already contains explicit output requirements.
  • TARGET=all broadcasts.
  • Plain ask injects concise-reply guidance while still delivering the full reply body.
  • Use --compact when the caller wants an actively distilled answer, such as review findings, status, risks, blockers, or next actions.
  • Use --silence when success does not need a body; failures, blockers, or required next actions should still surface.
  • Use --callback only from inside an active CCB task when this agent needs the target's result before finishing the original task. The current turn must end after submit; CCB will route the target result back as a new continuation task.
  • Plain nested ask from an active CCB task is rejected; choose --callback for needed results or --silence for independent no-result-needed work.
  • Do not manually append output-policy text; ask injects reply guidance.
  • ask get, pend, watch, and ping are diagnostics-only commands for explicit debugging requests, not normal ask workflow tools.
command ask "$TARGET" <<'EOF'
$MESSAGE
EOF
command ask --compact "$TARGET" <<'EOF'
$MESSAGE
EOF
command ask --silence "$TARGET" <<'EOF'
$MESSAGE
EOF
command ask --callback "$TARGET" <<'EOF'
$MESSAGE
EOF

After submit, return the command output and stop. Do not wait for a reply, do not run ask get / pend / ping / watch, and do not poll. For --callback, report only that delegation was submitted; the final result belongs in the later continuation task.