You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Use ${CLAUDE_MARKDOWN[@]+"${CLAUDE_MARKDOWN[@]}"} syntax to handle empty array
- Simplify CLAUDE.md prompt injection to minimal format
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Codex, Gemini, and OpenCode are other AI assistants running in separate terminal sessions (WezTerm or tmux).
504
-
505
-
### Common Rules (all assistants)
506
-
Trigger (any match):
507
-
- User explicitly asks to consult one of them (e.g. "ask codex ...", "let gemini ...")
508
-
- User uses an assistant prefix (see table)
509
-
- User asks about that assistant's status (e.g. "is codex alive?")
510
-
511
-
Fast path (minimize latency):
512
-
- If the user message starts with a prefix: treat the rest as the question and dispatch immediately.
513
-
- If the user message is only the prefix (no question): ask a 1-line clarification for what to send.
514
-
515
-
Actions:
516
-
- Ask a question (default) -> ``Bash(`$env:CCB_CALLER='claude'; ask <provider> <<'EOF' ... EOF)``, tell user "PROVIDER processing...", then END your turn
517
-
- Check connectivity -> run ``ping <provider>``
518
-
- Use "show previous reply" commands ONLY if the user explicitly requests them
519
-
520
-
Important restrictions:
521
-
- After starting a background ask, do NOT poll for results; wait for ``bash-notification``
522
-
- Do NOT use ``pend`` unless the user explicitly requests
0 commit comments