Agent skill
ask
Send the user's request to specified AI provider asynchronously
Install this agent skill to your Project
npx add-skill https://github.com/bfly123/claude_code_bridge/tree/main/codex_skills/ask
Metadata
Additional technical details for this skill
- short description
- Ask AI provider asynchronously
SKILL.md
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 Geminiclaude- Send to Claudeopencode- Send to OpenCodedroid- 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
--backgroundorCCB_ASK_BACKGROUND=1for async.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated 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.
file-op
Delegate file I/O to Codex via FileOpsREQ protocol. Use when Claude needs Codex to modify files.
cping
Test connectivity with AI provider (gemini/codex/opencode/droid/claude).
continue
Attach the newest context-transfer Markdown from the current project's ./.ccb/history/ into Claude using @file. Use when the user types /continue or asks to resume with the latest transfer file in this project.
mounted
Report which CCB providers are mounted (session exists AND daemon is online). Outputs JSON.
review
Dual review with Claude and Codex for quality verification. Use for step or task review.
Didn't find tool you were looking for?