Agent Skills: Ask AI Provider

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/codex_skills/ask

Skill Files

Browse the full folder contents for ask.

Download Skill

Loading file tree…

codex_skills/ask/SKILL.md

Skill Metadata

Name
ask
Description
Send the user's request to specified AI provider asynchronously

Ask AI Provider

Send the user's request to the specified AI provider via ask.

Usage

The first argument must be the provider name. The message MUST be provided via stdin (heredoc or pipe), not as CLI arguments, to avoid shell globbing issues:

  • gemini - Send to Gemini
  • claude - Send to Claude
  • opencode - Send to OpenCode
  • droid - Send to Droid

Execution (MANDATORY)

CCB_CALLER=codex ask $PROVIDER <<'EOF'
$MESSAGE
EOF

Rules

  • After running the command, say "[Provider] processing..." and immediately end your turn.
  • Do not wait for results or check status in the same turn.
  • The task ID and log file path will be displayed for tracking.

Examples

  • /ask gemini What is 12+12? (send via heredoc)
  • CCB_CALLER=codex ask gemini <<'EOF' What is 12+12? EOF

Notes

  • If it fails, check backend health with the corresponding ping command (ccb-ping <provider> (e.g., ccb-ping gemini)).
  • Codex-managed sessions default to foreground; use --background or CCB_ASK_BACKGROUND=1 for async.