@quantiya/codevibe-claude-plugin 2.0.11 → 2.0.13
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/.claude-plugin/plugin.json +1 -1
- package/dist/server.js +19 -18
- package/hooks/session-end.sh +20 -24
- package/hooks/session-start.sh +6 -4
- package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/index.js +259 -259
- package/node_modules/@quantiya/codevibe-core/dist/session/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/session/session-resume.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/package.json +1 -1
- package/node_modules/fs-ext/build/Makefile +2 -2
- package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
- package/node_modules/fs-ext/build/Release/obj.target/fs_ext/fs-ext.o +0 -0
- package/node_modules/fs-ext/build/config.gypi +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { resumeOrCreateSession, prepareSessionEncryption, PlannerProxyServiceKeyMissingError, SessionEncryptionPreparationError, } from './session-resume';
|
|
1
|
+
export { resumeOrCreateSession, prepareSessionEncryption, PlannerProxyServiceKeyMissingError, SessionEncryptionPreparationError, RetiredSessionCannotReactivateError, isRetiredSessionCannotReactivateError, } from './session-resume';
|
|
2
2
|
export type { ResumeOrCreateSessionInput, ResumeOrCreateSessionResult, SessionEncryptionPreparationFailureKind, } from './session-resume';
|
|
3
3
|
export { createSessionWithPendingLedger, replayPendingSessionCreateForIntent, } from './pending-session-create';
|
|
4
4
|
export type { PendingSessionCreateIntent } from './pending-session-create';
|
|
@@ -38,6 +38,18 @@ export interface ResumeOrCreateSessionResult {
|
|
|
38
38
|
*/
|
|
39
39
|
sessionKeyGen: string | null;
|
|
40
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* The backend permanently fenced the requested session generation. Continuing
|
|
43
|
+
* with its cached key would let callers subscribe, heartbeat, and emit against
|
|
44
|
+
* a row that can never become ACTIVE again.
|
|
45
|
+
*/
|
|
46
|
+
export declare class RetiredSessionCannotReactivateError extends Error {
|
|
47
|
+
readonly code = "RETIRED_SESSION_CANNOT_REACTIVATE";
|
|
48
|
+
readonly sessionId: string;
|
|
49
|
+
readonly cause: unknown;
|
|
50
|
+
constructor(sessionId: string, cause: unknown);
|
|
51
|
+
}
|
|
52
|
+
export declare function isRetiredSessionCannotReactivateError(error: unknown): error is RetiredSessionCannotReactivateError;
|
|
41
53
|
/**
|
|
42
54
|
* CP-1.b IMPL r5 H-2 — Typed error thrown by `prepareSessionEncryption()`
|
|
43
55
|
* when `listServiceDeviceKeys()` returns an empty array across all
|
|
@@ -331,8 +331,8 @@ ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
|
|
|
331
331
|
endif
|
|
332
332
|
|
|
333
333
|
quiet_cmd_regen_makefile = ACTION Regenerating $@
|
|
334
|
-
cmd_regen_makefile = cd $(srcdir); /opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/Users/hendryyeh/Library/Caches/node-gyp/24.4.0" "-Dnode_gyp_dir=/opt/homebrew/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/<(target_arch)/node.lib" "-Dmodule_root_dir=/Users/hendryyeh/Workspace/CodeVibe
|
|
335
|
-
Makefile: $(srcdir)
|
|
334
|
+
cmd_regen_makefile = cd $(srcdir); /opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/Users/hendryyeh/Library/Caches/node-gyp/24.4.0" "-Dnode_gyp_dir=/opt/homebrew/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/<(target_arch)/node.lib" "-Dmodule_root_dir=/Users/hendryyeh/Workspace/CodeVibe/codevibe-claude-plugin/node_modules/fs-ext" "-Dnode_engine=v8" "--depth=." "-Goutput_dir=." "--generator-output=build" -I/Users/hendryyeh/Workspace/CodeVibe/codevibe-claude-plugin/node_modules/fs-ext/build/config.gypi -I/opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/common.gypi "--toplevel-dir=." binding.gyp
|
|
335
|
+
Makefile: $(srcdir)/../../../../../../../opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/addon.gypi $(srcdir)/build/config.gypi $(srcdir)/binding.gyp $(srcdir)/../../../../../Library/Caches/node-gyp/24.4.0/include/node/common.gypi
|
|
336
336
|
$(call do_cmd,regen_makefile)
|
|
337
337
|
|
|
338
338
|
# "all" is a concatenation of the "all" targets from all the included
|
|
Binary file
|
|
Binary file
|
|
@@ -490,7 +490,7 @@
|
|
|
490
490
|
"python": "/opt/homebrew/opt/python@3.14/bin/python3.14",
|
|
491
491
|
"standalone_static_library": 1,
|
|
492
492
|
"global_prefix": "/opt/homebrew",
|
|
493
|
-
"local_prefix": "/Users/hendryyeh/Workspace/CodeVibe
|
|
493
|
+
"local_prefix": "/Users/hendryyeh/Workspace/CodeVibe/codevibe-claude-plugin",
|
|
494
494
|
"globalconfig": "/opt/homebrew/etc/npmrc",
|
|
495
495
|
"init_module": "/Users/hendryyeh/.npm-init.js",
|
|
496
496
|
"userconfig": "/Users/hendryyeh/.npmrc",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quantiya/codevibe-claude-plugin",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.13",
|
|
4
4
|
"description": "Control Claude Code 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
|
"codevibe": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"node": ">=22.0.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@quantiya/codevibe-core": "2.0.
|
|
50
|
+
"@quantiya/codevibe-core": "2.0.11",
|
|
51
51
|
"@quantiya/quorum-core": "^1.0.1",
|
|
52
52
|
"dotenv": "^16.6.1",
|
|
53
53
|
"express": "^5.1.0",
|