@quantiya/codevibe-claude-plugin 2.0.14 → 2.0.16
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/dist/server.js +15 -15
- package/node_modules/@quantiya/codevibe-core/dist/appsync/appsync-client.d.ts +5 -1
- package/node_modules/@quantiya/codevibe-core/dist/index.js +239 -239
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +183 -22
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/__tests__/round-scope.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/index.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/round-scope.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/types.d.ts +30 -0
- package/node_modules/@quantiya/codevibe-core/package.json +1 -1
- package/node_modules/fs-ext/build/Makefile +1 -1
- package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
- package/package.json +2 -2
|
@@ -3,7 +3,7 @@ import { CreateEventInput, CreateSessionInput, UpdateSessionInput, UpdateEventSt
|
|
|
3
3
|
import type { PostDecisionAction } from '../orchestration-shell/types';
|
|
4
4
|
import type { InvocationUsageSnapshot } from '../reviewer/token-usage';
|
|
5
5
|
import type { CreateTaskGroupInput, CreateTaskGroupResult, SubmitMergeGateVerdictInput, SubmitMergeGateVerdictResult, SubmitTrackVerificationOutcomeInput, SubmitTrackVerificationOutcomeResult, ClaimGroupDecisionInput, ClaimGroupDecisionResult } from '../local-executor/task-group-types';
|
|
6
|
-
import type { ReviewerVerdict, ReviewerRole, AgentKind as ReviewerAgentKind } from '../reviewer/types';
|
|
6
|
+
import type { ReviewScopeContext, ReviewerVerdict, ReviewerRole, AgentKind as ReviewerAgentKind } from '../reviewer/types';
|
|
7
7
|
import type { PlannerDecision } from '../planner/types';
|
|
8
8
|
/**
|
|
9
9
|
* Dispose a watcher/subscription WebSocket without crashing the process
|
|
@@ -171,6 +171,8 @@ export interface ReviewerPromptResult {
|
|
|
171
171
|
role: ReviewerRole;
|
|
172
172
|
/** Decrypted plaintext rendered prompt (UTF-8) → ReviewerSpec.prompt_template. */
|
|
173
173
|
prompt: string;
|
|
174
|
+
/** Server-authored P24 scope; prior finding text is redacted because it is already in the encrypted prompt. */
|
|
175
|
+
reviewScope?: ReviewScopeContext | null;
|
|
174
176
|
}
|
|
175
177
|
/** One reviewer seat in a round's `reviewers[]` (decrypted). */
|
|
176
178
|
export interface TaskReviewSummaryReviewer {
|
|
@@ -924,6 +926,8 @@ export declare class AppSyncClient {
|
|
|
924
926
|
roundNumber: number;
|
|
925
927
|
rawOutput: string;
|
|
926
928
|
usage?: InvocationUsageSnapshot;
|
|
929
|
+
/** P24 explicit comprehensive-baseline reset for a revise round. */
|
|
930
|
+
reviewScopeReset?: boolean;
|
|
927
931
|
}, sessionKeyBase64: string): Promise<{
|
|
928
932
|
gateId: string;
|
|
929
933
|
workflowState: string;
|