@quantiya/codevibe-claude-plugin 2.0.15 → 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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevibe-claude",
3
- "version": "2.0.15",
3
+ "version": "2.0.16",
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"
@@ -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;