@quantiya/codevibe-codex-plugin 1.0.20 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/hooks/post-tool-use.sh +4 -0
- package/hooks/pre-tool-use.sh +6 -0
- package/hooks/session-start.sh +4 -0
- package/hooks/stop.sh +4 -0
- package/hooks/user-prompt.sh +4 -0
- package/package.json +1 -1
package/hooks/post-tool-use.sh
CHANGED
package/hooks/pre-tool-use.sh
CHANGED
|
@@ -8,3 +8,9 @@ INPUT=$(read_json_input)
|
|
|
8
8
|
log "DEBUG" "Payload: $INPUT"
|
|
9
9
|
|
|
10
10
|
send_to_server "event" "$INPUT"
|
|
11
|
+
|
|
12
|
+
# Hooks are best-effort telemetry. Never propagate send_to_server failures to
|
|
13
|
+
# Codex. PreToolUse is especially load-bearing — a non-zero exit here would
|
|
14
|
+
# block the tool call itself, so a missing/unreachable daemon must not gate
|
|
15
|
+
# Codex execution.
|
|
16
|
+
exit 0
|
package/hooks/session-start.sh
CHANGED
package/hooks/stop.sh
CHANGED
package/hooks/user-prompt.sh
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quantiya/codevibe-codex-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"description": "Control OpenAI Codex CLI from your iPhone and Android — real-time sync, approve file edits, send prompts by voice. Part of CodeVibe.",
|
|
5
5
|
"main": "dist/server.js",
|
|
6
6
|
"bin": {
|