audit-tools 0.35.7 → 0.36.0
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/dist/audit/clarification/blastRadius.d.ts +5 -6
- package/dist/audit/clarification/blastRadius.d.ts.map +1 -1
- package/dist/audit/clarification/blastRadius.js +18 -5
- package/dist/audit/clarification/blastRadius.js.map +1 -1
- package/dist/audit/clarification/partition.d.ts.map +1 -1
- package/dist/audit/clarification/partition.js +5 -4
- package/dist/audit/clarification/partition.js.map +1 -1
- package/dist/audit/cli/charterClarificationPrompt.d.ts.map +1 -1
- package/dist/audit/cli/charterClarificationPrompt.js +34 -11
- package/dist/audit/cli/charterClarificationPrompt.js.map +1 -1
- package/dist/audit/cli/charterDeltaPrompt.d.ts +10 -7
- package/dist/audit/cli/charterDeltaPrompt.d.ts.map +1 -1
- package/dist/audit/cli/charterDeltaPrompt.js +75 -19
- package/dist/audit/cli/charterDeltaPrompt.js.map +1 -1
- package/dist/audit/cli/charterExtractionPrompt.d.ts +24 -15
- package/dist/audit/cli/charterExtractionPrompt.d.ts.map +1 -1
- package/dist/audit/cli/charterExtractionPrompt.js +80 -87
- package/dist/audit/cli/charterExtractionPrompt.js.map +1 -1
- package/dist/audit/cli/conceptualDispatch.d.ts.map +1 -1
- package/dist/audit/cli/conceptualDispatch.js +5 -1
- package/dist/audit/cli/conceptualDispatch.js.map +1 -1
- package/dist/audit/cli/nextStepCommand.d.ts.map +1 -1
- package/dist/audit/cli/nextStepCommand.js +17 -7
- package/dist/audit/cli/nextStepCommand.js.map +1 -1
- package/dist/audit/cli/nextStepHelpers.d.ts.map +1 -1
- package/dist/audit/cli/nextStepHelpers.js +38 -21
- package/dist/audit/cli/nextStepHelpers.js.map +1 -1
- package/dist/audit/extractors/commentDecomposition.d.ts +8 -6
- package/dist/audit/extractors/commentDecomposition.d.ts.map +1 -1
- package/dist/audit/extractors/commentDecomposition.js +56 -10
- package/dist/audit/extractors/commentDecomposition.js.map +1 -1
- package/dist/audit/io/artifacts.d.ts.map +1 -1
- package/dist/audit/io/artifacts.js +15 -1
- package/dist/audit/io/artifacts.js.map +1 -1
- package/dist/audit/orchestrator/charterDeltaExecutor.d.ts.map +1 -1
- package/dist/audit/orchestrator/charterDeltaExecutor.js +19 -2
- package/dist/audit/orchestrator/charterDeltaExecutor.js.map +1 -1
- package/dist/audit/orchestrator/charterExtractionExecutor.d.ts.map +1 -1
- package/dist/audit/orchestrator/charterExtractionExecutor.js +19 -4
- package/dist/audit/orchestrator/charterExtractionExecutor.js.map +1 -1
- package/dist/audit/orchestrator/charterPackets.d.ts +44 -0
- package/dist/audit/orchestrator/charterPackets.d.ts.map +1 -0
- package/dist/audit/orchestrator/charterPackets.js +217 -0
- package/dist/audit/orchestrator/charterPackets.js.map +1 -0
- package/dist/audit/orchestrator/dependencyMap.d.ts.map +1 -1
- package/dist/audit/orchestrator/dependencyMap.js +9 -4
- package/dist/audit/orchestrator/dependencyMap.js.map +1 -1
- package/dist/audit/orchestrator/dependencySlices.d.ts +0 -15
- package/dist/audit/orchestrator/dependencySlices.d.ts.map +1 -1
- package/dist/audit/orchestrator/dependencySlices.js +32 -23
- package/dist/audit/orchestrator/dependencySlices.js.map +1 -1
- package/dist/audit/orchestrator/designReviewPrompt.js +1 -1
- package/dist/audit/orchestrator/designReviewPrompt.js.map +1 -1
- package/dist/audit/types/charterRegister.d.ts +46 -14
- package/dist/audit/types/charterRegister.d.ts.map +1 -1
- package/dist/audit/types/charterRegister.js +11 -1
- package/dist/audit/types/charterRegister.js.map +1 -1
- package/dist/audit/validation/artifacts.d.ts.map +1 -1
- package/dist/audit/validation/artifacts.js +1 -19
- package/dist/audit/validation/artifacts.js.map +1 -1
- package/dist/shared/decompose/charterExtraction.d.ts +285 -143
- package/dist/shared/decompose/charterExtraction.d.ts.map +1 -1
- package/dist/shared/decompose/charterExtraction.js +340 -99
- package/dist/shared/decompose/charterExtraction.js.map +1 -1
- package/dist/shared/index.d.ts +2 -2
- package/dist/shared/index.d.ts.map +1 -1
- package/dist/shared/index.js +1 -1
- package/dist/shared/index.js.map +1 -1
- package/dist/shared/types/charter.d.ts +109 -34
- package/dist/shared/types/charter.d.ts.map +1 -1
- package/dist/shared/types/charter.js +87 -22
- package/dist/shared/types/charter.js.map +1 -1
- package/dist/shared/types/intentCheckpoint.d.ts +9 -196
- package/dist/shared/types/intentCheckpoint.d.ts.map +1 -1
- package/dist/shared/types/intentCheckpoint.js +10 -13
- package/dist/shared/types/intentCheckpoint.js.map +1 -1
- package/package.json +1 -1
|
@@ -141,107 +141,16 @@ export declare const IntentCheckpointSchema: z.ZodObject<{
|
|
|
141
141
|
conceptual_depth: z.ZodOptional<z.ZodEnum<["shallow", "deep"]>>;
|
|
142
142
|
perspectives: z.ZodOptional<z.ZodNumber>;
|
|
143
143
|
/**
|
|
144
|
-
* The
|
|
145
|
-
* `confirm_intent`.
|
|
146
|
-
* only `conceptual_depth`/`perspectives` stays
|
|
147
|
-
*
|
|
148
|
-
*
|
|
149
|
-
*
|
|
150
|
-
*
|
|
151
|
-
*
|
|
152
|
-
*
|
|
153
|
-
* - `ceiling`: the premise-height consent dial (how far up a finding may reach).
|
|
144
|
+
* The premise-height consent dial (how far up a finding may reach),
|
|
145
|
+
* captured at `confirm_intent`. Optional and additive — a legacy
|
|
146
|
+
* checkpoint carrying only `conceptual_depth`/`perspectives` stays
|
|
147
|
+
* valid. NOTE: the checkpoint deliberately carries the ceiling as
|
|
148
|
+
* INPUT only — charters/teleologies/goal graph live on
|
|
149
|
+
* `charter_register.json` (the OUTPUT artifact), never here; embedding
|
|
150
|
+
* them would create a staleness cycle with the checkpoint the register
|
|
151
|
+
* depends on. (Never-written `charters`/`goal_graph` embeds were
|
|
152
|
+
* deleted 2026-08-06, design resolution 4.)
|
|
154
153
|
*/
|
|
155
|
-
goal_graph: z.ZodOptional<z.ZodObject<{
|
|
156
|
-
nodes: z.ZodArray<z.ZodObject<{
|
|
157
|
-
node_id: z.ZodString;
|
|
158
|
-
premise_height: z.ZodNumber;
|
|
159
|
-
statement: z.ZodString;
|
|
160
|
-
}, "strict", z.ZodTypeAny, {
|
|
161
|
-
node_id: string;
|
|
162
|
-
premise_height: number;
|
|
163
|
-
statement: string;
|
|
164
|
-
}, {
|
|
165
|
-
node_id: string;
|
|
166
|
-
premise_height: number;
|
|
167
|
-
statement: string;
|
|
168
|
-
}>, "many">;
|
|
169
|
-
edges: z.ZodArray<z.ZodObject<{
|
|
170
|
-
from: z.ZodString;
|
|
171
|
-
to: z.ZodString;
|
|
172
|
-
}, "strict", z.ZodTypeAny, {
|
|
173
|
-
from: string;
|
|
174
|
-
to: string;
|
|
175
|
-
}, {
|
|
176
|
-
from: string;
|
|
177
|
-
to: string;
|
|
178
|
-
}>, "many">;
|
|
179
|
-
}, "strict", z.ZodTypeAny, {
|
|
180
|
-
nodes: {
|
|
181
|
-
node_id: string;
|
|
182
|
-
premise_height: number;
|
|
183
|
-
statement: string;
|
|
184
|
-
}[];
|
|
185
|
-
edges: {
|
|
186
|
-
from: string;
|
|
187
|
-
to: string;
|
|
188
|
-
}[];
|
|
189
|
-
}, {
|
|
190
|
-
nodes: {
|
|
191
|
-
node_id: string;
|
|
192
|
-
premise_height: number;
|
|
193
|
-
statement: string;
|
|
194
|
-
}[];
|
|
195
|
-
edges: {
|
|
196
|
-
from: string;
|
|
197
|
-
to: string;
|
|
198
|
-
}[];
|
|
199
|
-
}>>;
|
|
200
|
-
charters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
201
|
-
charter_id: z.ZodString;
|
|
202
|
-
kind: z.ZodEnum<["stated", "inferred", "revealed", "true"]>;
|
|
203
|
-
purpose: z.ZodString;
|
|
204
|
-
provenance: z.ZodArray<z.ZodObject<{
|
|
205
|
-
kind: z.ZodEnum<["doc", "intent_checkpoint", "user_feedback", "code", "comment", "inferred"]>;
|
|
206
|
-
ref: z.ZodString;
|
|
207
|
-
quote: z.ZodOptional<z.ZodString>;
|
|
208
|
-
}, "strict", z.ZodTypeAny, {
|
|
209
|
-
kind: "code" | "inferred" | "doc" | "intent_checkpoint" | "user_feedback" | "comment";
|
|
210
|
-
ref: string;
|
|
211
|
-
quote?: string | undefined;
|
|
212
|
-
}, {
|
|
213
|
-
kind: "code" | "inferred" | "doc" | "intent_checkpoint" | "user_feedback" | "comment";
|
|
214
|
-
ref: string;
|
|
215
|
-
quote?: string | undefined;
|
|
216
|
-
}>, "many">;
|
|
217
|
-
confidence: z.ZodEnum<["high", "medium", "low"]>;
|
|
218
|
-
nominated_alternative: z.ZodOptional<z.ZodString>;
|
|
219
|
-
nominated_cost: z.ZodOptional<z.ZodString>;
|
|
220
|
-
}, "strict", z.ZodTypeAny, {
|
|
221
|
-
confidence: "high" | "low" | "medium";
|
|
222
|
-
kind: "stated" | "inferred" | "revealed" | "true";
|
|
223
|
-
charter_id: string;
|
|
224
|
-
purpose: string;
|
|
225
|
-
provenance: {
|
|
226
|
-
kind: "code" | "inferred" | "doc" | "intent_checkpoint" | "user_feedback" | "comment";
|
|
227
|
-
ref: string;
|
|
228
|
-
quote?: string | undefined;
|
|
229
|
-
}[];
|
|
230
|
-
nominated_alternative?: string | undefined;
|
|
231
|
-
nominated_cost?: string | undefined;
|
|
232
|
-
}, {
|
|
233
|
-
confidence: "high" | "low" | "medium";
|
|
234
|
-
kind: "stated" | "inferred" | "revealed" | "true";
|
|
235
|
-
charter_id: string;
|
|
236
|
-
purpose: string;
|
|
237
|
-
provenance: {
|
|
238
|
-
kind: "code" | "inferred" | "doc" | "intent_checkpoint" | "user_feedback" | "comment";
|
|
239
|
-
ref: string;
|
|
240
|
-
quote?: string | undefined;
|
|
241
|
-
}[];
|
|
242
|
-
nominated_alternative?: string | undefined;
|
|
243
|
-
nominated_cost?: string | undefined;
|
|
244
|
-
}>, "many">>;
|
|
245
154
|
ceiling: z.ZodOptional<z.ZodObject<{
|
|
246
155
|
rung: z.ZodEnum<["shallow", "deep", "deepest"]>;
|
|
247
156
|
explicit_opt_in: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -266,30 +175,6 @@ export declare const IntentCheckpointSchema: z.ZodObject<{
|
|
|
266
175
|
}, "strict", z.ZodTypeAny, {
|
|
267
176
|
conceptual_depth?: "shallow" | "deep" | undefined;
|
|
268
177
|
perspectives?: number | undefined;
|
|
269
|
-
goal_graph?: {
|
|
270
|
-
nodes: {
|
|
271
|
-
node_id: string;
|
|
272
|
-
premise_height: number;
|
|
273
|
-
statement: string;
|
|
274
|
-
}[];
|
|
275
|
-
edges: {
|
|
276
|
-
from: string;
|
|
277
|
-
to: string;
|
|
278
|
-
}[];
|
|
279
|
-
} | undefined;
|
|
280
|
-
charters?: {
|
|
281
|
-
confidence: "high" | "low" | "medium";
|
|
282
|
-
kind: "stated" | "inferred" | "revealed" | "true";
|
|
283
|
-
charter_id: string;
|
|
284
|
-
purpose: string;
|
|
285
|
-
provenance: {
|
|
286
|
-
kind: "code" | "inferred" | "doc" | "intent_checkpoint" | "user_feedback" | "comment";
|
|
287
|
-
ref: string;
|
|
288
|
-
quote?: string | undefined;
|
|
289
|
-
}[];
|
|
290
|
-
nominated_alternative?: string | undefined;
|
|
291
|
-
nominated_cost?: string | undefined;
|
|
292
|
-
}[] | undefined;
|
|
293
178
|
ceiling?: {
|
|
294
179
|
rung: "shallow" | "deep" | "deepest";
|
|
295
180
|
explicit_opt_in?: boolean | undefined;
|
|
@@ -298,30 +183,6 @@ export declare const IntentCheckpointSchema: z.ZodObject<{
|
|
|
298
183
|
}, {
|
|
299
184
|
conceptual_depth?: "shallow" | "deep" | undefined;
|
|
300
185
|
perspectives?: number | undefined;
|
|
301
|
-
goal_graph?: {
|
|
302
|
-
nodes: {
|
|
303
|
-
node_id: string;
|
|
304
|
-
premise_height: number;
|
|
305
|
-
statement: string;
|
|
306
|
-
}[];
|
|
307
|
-
edges: {
|
|
308
|
-
from: string;
|
|
309
|
-
to: string;
|
|
310
|
-
}[];
|
|
311
|
-
} | undefined;
|
|
312
|
-
charters?: {
|
|
313
|
-
confidence: "high" | "low" | "medium";
|
|
314
|
-
kind: "stated" | "inferred" | "revealed" | "true";
|
|
315
|
-
charter_id: string;
|
|
316
|
-
purpose: string;
|
|
317
|
-
provenance: {
|
|
318
|
-
kind: "code" | "inferred" | "doc" | "intent_checkpoint" | "user_feedback" | "comment";
|
|
319
|
-
ref: string;
|
|
320
|
-
quote?: string | undefined;
|
|
321
|
-
}[];
|
|
322
|
-
nominated_alternative?: string | undefined;
|
|
323
|
-
nominated_cost?: string | undefined;
|
|
324
|
-
}[] | undefined;
|
|
325
186
|
ceiling?: {
|
|
326
187
|
rung: "shallow" | "deep" | "deepest";
|
|
327
188
|
explicit_opt_in?: boolean | undefined;
|
|
@@ -364,30 +225,6 @@ export declare const IntentCheckpointSchema: z.ZodObject<{
|
|
|
364
225
|
design_review?: {
|
|
365
226
|
conceptual_depth?: "shallow" | "deep" | undefined;
|
|
366
227
|
perspectives?: number | undefined;
|
|
367
|
-
goal_graph?: {
|
|
368
|
-
nodes: {
|
|
369
|
-
node_id: string;
|
|
370
|
-
premise_height: number;
|
|
371
|
-
statement: string;
|
|
372
|
-
}[];
|
|
373
|
-
edges: {
|
|
374
|
-
from: string;
|
|
375
|
-
to: string;
|
|
376
|
-
}[];
|
|
377
|
-
} | undefined;
|
|
378
|
-
charters?: {
|
|
379
|
-
confidence: "high" | "low" | "medium";
|
|
380
|
-
kind: "stated" | "inferred" | "revealed" | "true";
|
|
381
|
-
charter_id: string;
|
|
382
|
-
purpose: string;
|
|
383
|
-
provenance: {
|
|
384
|
-
kind: "code" | "inferred" | "doc" | "intent_checkpoint" | "user_feedback" | "comment";
|
|
385
|
-
ref: string;
|
|
386
|
-
quote?: string | undefined;
|
|
387
|
-
}[];
|
|
388
|
-
nominated_alternative?: string | undefined;
|
|
389
|
-
nominated_cost?: string | undefined;
|
|
390
|
-
}[] | undefined;
|
|
391
228
|
ceiling?: {
|
|
392
229
|
rung: "shallow" | "deep" | "deepest";
|
|
393
230
|
explicit_opt_in?: boolean | undefined;
|
|
@@ -430,30 +267,6 @@ export declare const IntentCheckpointSchema: z.ZodObject<{
|
|
|
430
267
|
design_review?: {
|
|
431
268
|
conceptual_depth?: "shallow" | "deep" | undefined;
|
|
432
269
|
perspectives?: number | undefined;
|
|
433
|
-
goal_graph?: {
|
|
434
|
-
nodes: {
|
|
435
|
-
node_id: string;
|
|
436
|
-
premise_height: number;
|
|
437
|
-
statement: string;
|
|
438
|
-
}[];
|
|
439
|
-
edges: {
|
|
440
|
-
from: string;
|
|
441
|
-
to: string;
|
|
442
|
-
}[];
|
|
443
|
-
} | undefined;
|
|
444
|
-
charters?: {
|
|
445
|
-
confidence: "high" | "low" | "medium";
|
|
446
|
-
kind: "stated" | "inferred" | "revealed" | "true";
|
|
447
|
-
charter_id: string;
|
|
448
|
-
purpose: string;
|
|
449
|
-
provenance: {
|
|
450
|
-
kind: "code" | "inferred" | "doc" | "intent_checkpoint" | "user_feedback" | "comment";
|
|
451
|
-
ref: string;
|
|
452
|
-
quote?: string | undefined;
|
|
453
|
-
}[];
|
|
454
|
-
nominated_alternative?: string | undefined;
|
|
455
|
-
nominated_cost?: string | undefined;
|
|
456
|
-
}[] | undefined;
|
|
457
270
|
ceiling?: {
|
|
458
271
|
rung: "shallow" | "deep" | "deepest";
|
|
459
272
|
explicit_opt_in?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"intentCheckpoint.d.ts","sourceRoot":"","sources":["../../../src/shared/types/intentCheckpoint.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"intentCheckpoint.d.ts","sourceRoot":"","sources":["../../../src/shared/types/intentCheckpoint.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB;;;;;;;GAOG;AACH,eAAO,MAAM,sBAAsB;;;IAI/B;;;;OAIG;;IAEH,yDAAyD;;IAEzD,wEAAwE;;IAExE;;;;OAIG;;IAEH,qEAAqE;;;;;;;;;;;IAIrE,gDAAgD;;IAEhD,gEAAgE;;;;;;;;;;;;;;;;;IAUhE;;;;;;OAMG;;QAKK;;;;;;;;WAQG;;QAEH,4CAA4C;;QAE5C,kEAAkE;;QAElE,kEAAkE;;;;;;;;;;;;;IAM1E;;;;;OAKG;;;;;;;;;;;;;;IAYH;;;;OAIG;;;;;;;;;;;IAQH;;;;;;;;;;;OAWG;;;;QAKC;;;;;;;;;;WAUG;;;;;;;;;;;QAEH;;;;;;;;;WASG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMA,CAAC;AACZ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import { FileDispositionStatusSchema } from "./disposition.js";
|
|
3
|
-
import {
|
|
3
|
+
import { CeilingSchema } from "./charter.js";
|
|
4
4
|
/**
|
|
5
5
|
* The accepted scope and intent for a run, confirmed by the host before
|
|
6
6
|
* planning. Single-sourced so both orchestrators share one shape: audit-code
|
|
@@ -118,19 +118,16 @@ export const IntentCheckpointSchema = z
|
|
|
118
118
|
conceptual_depth: z.enum(["shallow", "deep"]).optional(),
|
|
119
119
|
perspectives: z.number().int().min(1).optional(),
|
|
120
120
|
/**
|
|
121
|
-
* The
|
|
122
|
-
* `confirm_intent`.
|
|
123
|
-
* only `conceptual_depth`/`perspectives` stays
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
* - `ceiling`: the premise-height consent dial (how far up a finding may reach).
|
|
121
|
+
* The premise-height consent dial (how far up a finding may reach),
|
|
122
|
+
* captured at `confirm_intent`. Optional and additive — a legacy
|
|
123
|
+
* checkpoint carrying only `conceptual_depth`/`perspectives` stays
|
|
124
|
+
* valid. NOTE: the checkpoint deliberately carries the ceiling as
|
|
125
|
+
* INPUT only — charters/teleologies/goal graph live on
|
|
126
|
+
* `charter_register.json` (the OUTPUT artifact), never here; embedding
|
|
127
|
+
* them would create a staleness cycle with the checkpoint the register
|
|
128
|
+
* depends on. (Never-written `charters`/`goal_graph` embeds were
|
|
129
|
+
* deleted 2026-08-06, design resolution 4.)
|
|
131
130
|
*/
|
|
132
|
-
goal_graph: GoalGraphSchema.optional(),
|
|
133
|
-
charters: z.array(CharterSchema).optional(),
|
|
134
131
|
ceiling: CeilingSchema.optional(),
|
|
135
132
|
/**
|
|
136
133
|
* The ATTENTION dial (Phase D control surface, currency #3) — how much the
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"intentCheckpoint.js","sourceRoot":"","sources":["../../../src/shared/types/intentCheckpoint.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAC/D,OAAO,
|
|
1
|
+
{"version":3,"file":"intentCheckpoint.js","sourceRoot":"","sources":["../../../src/shared/types/intentCheckpoint.ts"],"names":[],"mappings":"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"}
|