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/majiayu000/claude-skill-registry/tree/main/skills/other/other/ask-bfly123-claude-code-bridge
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 (
ping <provider>(e.g.,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.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?