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
Update CLAUDE.md prompt injection to use unified commands
- Replace old commands (cask/gask/oask, cping/gping/oping, cpend/gpend/opend)
with unified commands (ask <provider>, ping <provider>, pend <provider>)
- Add Droid to the command map
- Update examples to use new command format
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: install.ps1
+14-10Lines changed: 14 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -513,24 +513,28 @@ Fast path (minimize latency):
513
513
- If the user message is only the prefix (no question): ask a 1-line clarification for what to send.
514
514
515
515
Actions:
516
-
- Ask a question (default) -> ``Bash(@"`n<question>`n"@ | <cask|gask|oask>, run_in_background=true)``, tell user "ASSISTANT processing (task: xxx)", then END your turn
517
-
- Check connectivity -> run ``PING_CMD``
518
-
- Use blocking/wait or "show previous reply" commands ONLY if the user explicitly requests them
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
519
520
520
Important restrictions:
521
521
- After starting a background ask, do NOT poll for results; wait for ``bash-notification``
522
-
- Do NOT use ``*-w`` / ``*pend`` / ``*end`` unless the user explicitly requests
522
+
- Do NOT use ``pend`` unless the user explicitly requests
Copy file name to clipboardExpand all lines: install.sh
+12-11Lines changed: 12 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -903,27 +903,28 @@ Fast path (minimize latency):
903
903
- If the user message is only the prefix (no question): ask a 1-line clarification for what to send.
904
904
905
905
Actions:
906
-
- Ask a question (default) -> `Bash(<cask|gask|oask> <<'EOF' ... EOF, run_in_background=true)`, tell user "`ASSISTANT` processing (task: xxx)", then END your turn
907
-
- Check connectivity -> run `PING_CMD`
908
-
- Use blocking/wait or "show previous reply" commands ONLY if the user explicitly requests them
906
+
- Ask a question (default) -> `Bash(CCB_CALLER=claude ask <provider> <<'EOF' ... EOF)`, tell user "`PROVIDER` processing...", then END your turn
907
+
- Check connectivity -> run `ping <provider>`
908
+
- Use "show previous reply" commands ONLY if the user explicitly requests them
909
909
910
910
Important restrictions:
911
911
- After starting a background ask, do NOT poll for results; wait for `bash-notification`
912
-
- Do NOT use `*pend` / `*end` unless the user explicitly requests
912
+
- Do NOT use `pend` unless the user explicitly requests
0 commit comments