@quantiya/codevibe-claude-plugin 2.0.37 → 2.0.39

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 (25) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/node_modules/@quantiya/codevibe-core/dist/credential-broker/scrubber.d.ts +8 -0
  3. package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +1 -1
  4. package/node_modules/@quantiya/codevibe-core/dist/index.js +450 -441
  5. package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +10 -0
  6. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/m7-brief-exclusion.test.d.ts +1 -0
  7. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/m7-repo-state-freshness.test.d.ts +1 -0
  8. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/m7-user-context.test.d.ts +1 -0
  9. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/m7-worktree-fingerprint.test.d.ts +1 -0
  10. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/user-rules.test.d.ts +1 -0
  11. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/brainstorm-quorum.d.ts +5 -3
  12. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +12 -0
  13. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +3235 -2662
  14. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-compaction.d.ts +111 -2
  15. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items.d.ts +21 -1
  16. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-store.d.ts +44 -0
  17. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +64 -8
  18. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +20 -0
  19. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/route-browse.d.ts +1 -1
  20. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/slash-router.d.ts +8 -0
  21. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/user-rules.d.ts +83 -0
  22. package/node_modules/@quantiya/codevibe-core/dist/planner/index.d.ts +1 -1
  23. package/node_modules/@quantiya/codevibe-core/dist/planner/local-advisory.d.ts +3 -1
  24. package/node_modules/@quantiya/codevibe-core/package.json +1 -1
  25. package/package.json +2 -2
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevibe-claude",
3
- "version": "2.0.37",
3
+ "version": "2.0.39",
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"
@@ -18,6 +18,14 @@ export interface ScrubResult {
18
18
  /** One finding per (field, pattern_class) hit; empty if nothing matched. */
19
19
  readonly findings: ScrubFinding[];
20
20
  }
21
+ /**
22
+ * M7 (SHARED-CONTEXT-M7-ADDENDUM.md §3.1 "Text") — the string form of the
23
+ * scrubber: the SAME `SECRET_PATTERNS` applied to free text the shell renders
24
+ * into agent prompts (the user's pinned rules and earlier messages), with a
25
+ * readable placeholder. The known-uncovered classes documented above still
26
+ * pass (design DL-1).
27
+ */
28
+ export declare function redactSecretShapesInText(value: string, placeholder?: string): string;
21
29
  /**
22
30
  * Does this object-key NAME itself match a high-confidence secret shape?
23
31
  * A key like `"sk-ant-…"` carries the secret AS the key — value-only
@@ -39,7 +39,7 @@ export * as Planner from './planner';
39
39
  export { OllamaGemmaPlannerRunner, type OllamaRuntimeConfig } from './local-model/ollama';
40
40
  export * as Continuation from './continuation';
41
41
  export * as StructuralSummary from './structural-summary';
42
- export { runOrchestrationShell, handleShellUserInput, createOrchestrationStore, type OrchestrationStore, routeBrowse, type RouteBrowseDeps } from './orchestration-shell';
42
+ export { runOrchestrationShell, handleShellUserInput, createOrchestrationStore, type OrchestrationStore, routeBrowse, type RouteBrowseDeps, type RetainedBrowsePage, RETAINED_PAGE_MAX_CHARS, composeBrainstormPanelBrief, MAX_BRAINSTORM_PAGE_CHARS, MAX_BRAINSTORM_PAGE_TOKENS, MAX_BRAINSTORM_PAGE_BYTES, extractQueryRelevantSnippets, htmlToText, validateAgyArgPrompt, AGY_ARG_PROMPT_MAX_UTF8_BYTES, } from './orchestration-shell';
43
43
  export { renderConversationEntry, ConversationPane, renderEntryAsLine, runLineLogFallback } from './orchestration-shell';
44
44
  export { initInkRuntime, getInkRuntime } from './orchestration-shell';
45
45
  export { runCompanionMode } from './companion-mode';