@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/user-rules.test.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -342,6 +342,18 @@ export interface DispatchContextTap {
|
|
|
342
342
|
agent: string;
|
|
343
343
|
roundNumber: number;
|
|
344
344
|
}) => Promise<string>;
|
|
345
|
+
/**
|
|
346
|
+
* M7 (SHARED-CONTEXT-M7-ADDENDUM.md §3.3) — the user's own words for an
|
|
347
|
+
* implementor round, called on EVERY round with that round's brief (the
|
|
348
|
+
* loop's `projectUserContext`). Inert (`''`) until `runOrchestrationShell`
|
|
349
|
+
* installs `renderUserContextSection`.
|
|
350
|
+
*/
|
|
351
|
+
userContextFn: (input: {
|
|
352
|
+
taskId: string;
|
|
353
|
+
agent: string;
|
|
354
|
+
roundNumber: number;
|
|
355
|
+
brief: string;
|
|
356
|
+
}) => Promise<string>;
|
|
345
357
|
}
|
|
346
358
|
/**
|
|
347
359
|
* [Gemma classifier · D11 + §Wiring] Resolve the reviewer verdict classifier
|