@quantiya/codevibe-claude-plugin 2.0.24 → 2.0.26

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 (27) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/dist/server.js +7 -7
  3. package/node_modules/@quantiya/codevibe-core/dist/e1/__tests__/prompt-publication.test.d.ts +1 -0
  4. package/node_modules/@quantiya/codevibe-core/dist/e1/index.d.ts +1 -0
  5. package/node_modules/@quantiya/codevibe-core/dist/e1/prompt-publication.d.ts +14 -0
  6. package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +3 -2
  7. package/node_modules/@quantiya/codevibe-core/dist/index.js +621 -430
  8. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-browser.d.ts +42 -2
  9. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-runner.d.ts +13 -1
  10. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +8 -0
  11. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +649 -87
  12. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/flag-command.d.ts +4 -1
  13. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +16 -2
  14. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +2 -0
  15. package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +32 -32
  16. package/node_modules/@quantiya/codevibe-core/package.json +1 -1
  17. package/node_modules/fs-ext/build/Makefile +347 -0
  18. package/node_modules/fs-ext/build/Release/.deps/Release/fs_ext.node.d +1 -0
  19. package/node_modules/fs-ext/build/Release/.deps/Release/obj.target/fs_ext/fs-ext.o.d +165 -0
  20. package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
  21. package/node_modules/fs-ext/build/Release/obj.target/fs_ext/fs-ext.o +0 -0
  22. package/node_modules/fs-ext/build/binding.Makefile +6 -0
  23. package/node_modules/fs-ext/build/config.gypi +503 -0
  24. package/node_modules/fs-ext/build/fs_ext.target.mk +183 -0
  25. package/node_modules/fs-ext/build/gyp-mac-tool +768 -0
  26. package/node_modules/keytar/build/Release/keytar.node +0 -0
  27. package/package.json +2 -2
@@ -1,2 +1,3 @@
1
1
  export { newPromptRaise, raiseFieldsFromRecord, } from './prompt-raise';
2
+ export { PromptPublicationTracker, canRecoverPromptRaise, isOpenPromptRaise } from './prompt-publication';
2
3
  export type { E1ProducerKind, PromptRaiseRecord, E1RaiseFields, } from './prompt-raise';
@@ -0,0 +1,14 @@
1
+ import type { PromptRaiseRecord } from './prompt-raise';
2
+ /** Local publication state, never part of the backend prompt identity. */
3
+ export declare class PromptPublicationTracker {
4
+ private readonly active;
5
+ isPublishing(promptId: string): boolean;
6
+ run<T>(promptId: string, publish: () => Promise<T>): Promise<T>;
7
+ waitFor(promptId: string): Promise<void>;
8
+ }
9
+ export declare function isOpenPromptRaise<T>(entry: T, current: T | undefined, resolving?: boolean): boolean;
10
+ /** A missing first write is not a lost prompt; incomplete options are not suppression. */
11
+ export declare function canRecoverPromptRaise(entry: {
12
+ record: PromptRaiseRecord;
13
+ contentPlain?: string;
14
+ }, publishing?: boolean): boolean;
@@ -3,7 +3,7 @@ export { CryptoService, cryptoService, CryptoError, ENCRYPTION_VERSION } from '.
3
3
  export { encryptForEmit } from './crypto';
4
4
  export type { EncryptedEmitPayload } from './crypto';
5
5
  export { E1_PROMPT_ID_DOMAIN, deriveOpenPromptId, mintOwnerToken } from './crypto';
6
- export { newPromptRaise, raiseFieldsFromRecord } from './e1';
6
+ export { newPromptRaise, raiseFieldsFromRecord, PromptPublicationTracker, canRecoverPromptRaise, isOpenPromptRaise } from './e1';
7
7
  export type { E1ProducerKind, PromptRaiseRecord, E1RaiseFields } from './e1';
8
8
  export { installDaemonProcessGuards, isNetworkClass } from './daemon';
9
9
  export type { DaemonGuardLogger, DaemonProcessGuardOptions } from './daemon';
@@ -36,7 +36,7 @@ export * from './types';
36
36
  export * as Planner from './planner';
37
37
  export * as Continuation from './continuation';
38
38
  export * as StructuralSummary from './structural-summary';
39
- export { runOrchestrationShell } from './orchestration-shell';
39
+ export { runOrchestrationShell, handleShellUserInput } from './orchestration-shell';
40
40
  export { runCompanionMode } from './companion-mode';
41
41
  export { pickMode } from './orchestration-shell';
42
42
  export { emitShellEvent, createShellEventEmitter } from './orchestration-shell';
@@ -51,3 +51,4 @@ export { ToolActivityOccurrenceSchema, ToolActivityDetailSchema, ToolActivityGro
51
51
  export { digestOf, stableStringify } from './tool-activity';
52
52
  export { CONTEXT_SESSION_PSEUDO_TASK_NAMESPACE, deriveSessionPseudoTaskId, auditPartitionTaskIdFor, buildContextItemWireRow, decryptContextItemWireRow, type ContextItem, type ContextItemWireRow, } from './orchestration-shell';
53
53
  export type { Mode, Tier, PlannerDecision, AgentKind, PlannerHealthState, OrchestrationState, OrchestrationAction, ConversationEntry, RunningTaskState, ReviewerSeatState, GateState, ExecutionEventEntry, RefusalEventEntry, BypassEventEntry, MobileEventEntry, EventStreamEntry, QueuedTask, PendingClarification, LastModeFile, } from './orchestration-shell';
54
+ export { buildAuditBrowserModel, formatAuditExport, renderAuditBrowserText, renderAuditResultText, runAuditBrowser, type AuditDetailRow, type AuditFilterOptions, type AuditExportFormat, type AuditExportPayload, type AuditBrowserModel, type AuditEntryModel, } from './orchestration-shell';