@quantiya/codevibe-claude-plugin 2.0.38 → 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.
- package/.claude-plugin/plugin.json +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/scrubber.d.ts +8 -0
- package/node_modules/@quantiya/codevibe-core/dist/index.js +446 -437
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/m7-brief-exclusion.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/m7-repo-state-freshness.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/m7-user-context.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/m7-worktree-fingerprint.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/user-rules.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +654 -120
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-compaction.d.ts +111 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items.d.ts +21 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-store.d.ts +44 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +60 -7
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/slash-router.d.ts +8 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/user-rules.d.ts +83 -0
- package/node_modules/@quantiya/codevibe-core/package.json +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codevibe-claude",
|
|
3
|
-
"version": "2.0.
|
|
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
|