@quantiya/codevibe-claude-plugin 2.0.26 → 2.0.28

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.
Files changed (28) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/node_modules/@quantiya/codevibe-core/dist/appsync/__tests__/supervision-subscription.test.d.ts +1 -0
  3. package/node_modules/@quantiya/codevibe-core/dist/appsync/appsync-client.d.ts +1 -0
  4. package/node_modules/@quantiya/codevibe-core/dist/appsync/queries.d.ts +1 -0
  5. package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +2 -0
  6. package/node_modules/@quantiya/codevibe-core/dist/index.js +407 -394
  7. package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +3 -1
  8. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/planner-confirmation-routing.test.d.ts +1 -0
  9. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +830 -1122
  10. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-compaction.d.ts +2 -0
  11. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +0 -15
  12. package/node_modules/@quantiya/codevibe-core/dist/planner/local-gemma.d.ts +35 -7
  13. package/node_modules/@quantiya/codevibe-core/dist/prompt-parser.d.ts +3 -1
  14. package/node_modules/@quantiya/codevibe-core/dist/terminal-menu.d.ts +22 -0
  15. package/node_modules/@quantiya/codevibe-core/package.json +1 -1
  16. package/package.json +2 -2
  17. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/direct-file-delete.d.ts +0 -22
  18. package/node_modules/fs-ext/build/Makefile +0 -347
  19. package/node_modules/fs-ext/build/Release/.deps/Release/fs_ext.node.d +0 -1
  20. package/node_modules/fs-ext/build/Release/.deps/Release/obj.target/fs_ext/fs-ext.o.d +0 -165
  21. package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
  22. package/node_modules/fs-ext/build/Release/obj.target/fs_ext/fs-ext.o +0 -0
  23. package/node_modules/fs-ext/build/binding.Makefile +0 -6
  24. package/node_modules/fs-ext/build/config.gypi +0 -503
  25. package/node_modules/fs-ext/build/fs_ext.target.mk +0 -183
  26. package/node_modules/fs-ext/build/gyp-mac-tool +0 -768
  27. package/node_modules/keytar/build/Release/keytar.node +0 -0
  28. /package/node_modules/@quantiya/codevibe-core/dist/{orchestration-shell/__tests__/direct-file-delete.test.d.ts → __tests__/terminal-menu.test.d.ts} +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevibe-claude",
3
- "version": "2.0.26",
3
+ "version": "2.0.28",
4
4
  "description": "Sync Claude Code sessions with iOS mobile app via AWS backend. Control Claude Code from your phone with real-time bidirectional synchronization.",
5
5
  "author": {
6
6
  "name": "CodeVibe Team"
@@ -1300,6 +1300,7 @@ export declare class AppSyncClient {
1300
1300
  */
1301
1301
  subscribeToEvents(sessionId: string, onEvent: (event: Event) => void, onError?: (error: Error) => void, options?: {
1302
1302
  receiveDesktopEvents?: boolean;
1303
+ onSupervisionEvent?: (event: Event) => void;
1303
1304
  onSubscribed?: (isReconnect: boolean) => void;
1304
1305
  onSessionRetired?: () => Promise<void> | void;
1305
1306
  }): () => void;
@@ -63,6 +63,7 @@ export declare const mutations: {
63
63
  submitReviewerVerdict: string;
64
64
  };
65
65
  export declare const subscriptions: {
66
+ onSupervisionEventCreated: string;
66
67
  onEventCreated: string;
67
68
  onDeviceKeyRegistered: string;
68
69
  onSessionUpdated: string;
@@ -21,6 +21,8 @@ export type { Config, Environment } from './config';
21
21
  export { Logger, logger, createLogger } from './logger';
22
22
  export { parseInteractivePrompt, normalizeSnapshot, } from './prompt-parser';
23
23
  export type { ParsedInteractivePrompt, PromptKind, InteractivePromptOption, } from './prompt-parser';
24
+ export { parseActiveTerminalMenu, selectTerminalMenuOption } from './terminal-menu';
25
+ export type { TerminalMenu, TerminalMenuDelivery } from './terminal-menu';
24
26
  export { classifyMobilePromptInput } from './mobile-prompt-input';
25
27
  export type { MobilePromptInputIntent } from './mobile-prompt-input';
26
28
  export { resumeOrCreateSession, prepareSessionEncryption, rekeySessionForNewDevices, startDeviceKeyWatcher, registerDeviceEncryptionKey, RetiredSessionCannotReactivateError, isRetiredSessionCannotReactivateError, prepareEventTimestamp, _resetPrepareEventTimestampForTesting, } from './session';