@cat-factory/contracts 0.319.0 → 0.322.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/debug-api.d.ts +1 -1
- package/dist/debug-api.d.ts.map +1 -1
- package/dist/debug-api.js +3 -7
- package/dist/debug-api.js.map +1 -1
- package/dist/errors.d.ts +1 -1
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +7 -0
- package/dist/errors.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/kaizen.d.ts +74 -0
- package/dist/kaizen.d.ts.map +1 -1
- package/dist/kaizen.js +37 -0
- package/dist/kaizen.js.map +1 -1
- package/dist/public-api.d.ts +31 -0
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +33 -21
- package/dist/public-api.js.map +1 -1
- package/dist/public-kaizen.d.ts +316 -0
- package/dist/public-kaizen.d.ts.map +1 -0
- package/dist/public-kaizen.js +218 -0
- package/dist/public-kaizen.js.map +1 -0
- package/dist/public-paging.d.ts +24 -0
- package/dist/public-paging.d.ts.map +1 -0
- package/dist/public-paging.js +41 -0
- package/dist/public-paging.js.map +1 -0
- package/dist/public-provisioning.d.ts +193 -0
- package/dist/public-provisioning.d.ts.map +1 -1
- package/dist/public-provisioning.js +161 -0
- package/dist/public-provisioning.js.map +1 -1
- package/dist/routes/index.d.ts +1 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +1 -0
- package/dist/routes/index.js.map +1 -1
- package/dist/routes/kaizen.d.ts +6 -0
- package/dist/routes/kaizen.d.ts.map +1 -1
- package/dist/routes/public-api.d.ts +4 -0
- package/dist/routes/public-api.d.ts.map +1 -1
- package/dist/routes/public-board.d.ts +4 -0
- package/dist/routes/public-board.d.ts.map +1 -1
- package/dist/routes/public-kaizen.d.ts +240 -0
- package/dist/routes/public-kaizen.d.ts.map +1 -0
- package/dist/routes/public-kaizen.js +64 -0
- package/dist/routes/public-kaizen.js.map +1 -0
- package/dist/routes/public-provisioning.d.ts +147 -0
- package/dist/routes/public-provisioning.d.ts.map +1 -1
- package/dist/routes/public-provisioning.js +60 -2
- package/dist/routes/public-provisioning.js.map +1 -1
- package/dist/routes/sandbox.d.ts +20 -10
- package/dist/routes/sandbox.d.ts.map +1 -1
- package/dist/routes/sandbox.js +12 -2
- package/dist/routes/sandbox.js.map +1 -1
- package/dist/routes/tasks.d.ts +1 -1
- package/dist/sandbox.d.ts +70 -13
- package/dist/sandbox.d.ts.map +1 -1
- package/dist/sandbox.js +41 -2
- package/dist/sandbox.js.map +1 -1
- package/dist/tasks.d.ts +11 -2
- package/dist/tasks.d.ts.map +1 -1
- package/dist/tasks.js +10 -0
- package/dist/tasks.js.map +1 -1
- package/package.json +1 -1
package/dist/public-api.js
CHANGED
|
@@ -5,6 +5,7 @@ import { descriptorFieldValuesSchema } from './form-fields.js';
|
|
|
5
5
|
import { notificationSchema } from './notifications.js';
|
|
6
6
|
import { blockTypeSchema, createTaskTypeSchema, taskTypeSchema } from './primitives.js';
|
|
7
7
|
import { publicApiScopeSchema } from './public-api-keys.js';
|
|
8
|
+
import { cursorSchema, epochMsQuerySchema, pageLimitSchema } from './public-paging.js';
|
|
8
9
|
import { taskSourceKindSchema } from './tasks.js';
|
|
9
10
|
// ---------------------------------------------------------------------------
|
|
10
11
|
// Public-API wire contracts (the `/api/v1` surface for external systems).
|
|
@@ -22,24 +23,12 @@ import { taskSourceKindSchema } from './tasks.js';
|
|
|
22
23
|
// workspace (see the `publicTask` / `publicService` resources below). Board/engine
|
|
23
24
|
// internals are never leaked: these are deliberately small projections of a `Block`.
|
|
24
25
|
// ---------------------------------------------------------------------------
|
|
25
|
-
// ---- shared pagination primitives
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
*/
|
|
32
|
-
const cursorSchema = v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(200));
|
|
33
|
-
/**
|
|
34
|
-
* Rows one page may return. Arrives as a query STRING, so it is digit-checked BEFORE the numeric
|
|
35
|
-
* coercion — `Number()` alone also accepts `1e9`, `0x64` and `' '`, which would read as plausible
|
|
36
|
-
* limits rather than the 400 a malformed request deserves. The hard `maxValue` is what makes the
|
|
37
|
-
* bound a real backstop rather than a suggestion (a caller cannot ask for the whole table back by
|
|
38
|
-
* passing a huge limit).
|
|
39
|
-
*/
|
|
40
|
-
const pageLimitSchema = v.pipe(v.string(), v.regex(/^\d+$/, 'Must be a whole number'), v.transform(Number), v.number(), v.integer(), v.minValue(1), v.maxValue(100));
|
|
41
|
-
/** An epoch-ms query filter: digits only, for the same reason as {@link pageLimitSchema}. */
|
|
42
|
-
const epochMsQuerySchema = v.pipe(v.string(), v.regex(/^\d+$/, 'Must be a whole number of epoch milliseconds'), v.transform(Number), v.number(), v.integer(), v.minValue(0));
|
|
26
|
+
// ---- shared pagination primitives ----
|
|
27
|
+
//
|
|
28
|
+
// Read from `./public-paging.js` rather than declared here: the cursor encoding, the page-limit
|
|
29
|
+
// ceiling and the epoch-ms filter are ONE contract across every bounded list on this surface
|
|
30
|
+
// (`backend/docs/public-api.md`, "Pagination"), and a local copy is how one endpoint's ceiling
|
|
31
|
+
// comes to differ from its neighbour's.
|
|
43
32
|
/** Start a headless job (run a public, inline pipeline against a brief). */
|
|
44
33
|
export const createPublicJobSchema = v.object({
|
|
45
34
|
/** Id of a PUBLIC, inline pipeline (e.g. `pl_initiative_breakdown`). */
|
|
@@ -290,8 +279,31 @@ export const publicTaskTicketSchema = v.object({
|
|
|
290
279
|
/** The ticket's canonical key OR its full issue URL. */
|
|
291
280
|
ref: v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(500)),
|
|
292
281
|
});
|
|
282
|
+
/**
|
|
283
|
+
* Characters a task's own `description` may carry, on create and on patch alike.
|
|
284
|
+
*
|
|
285
|
+
* NAMED rather than written out at the two holes, because it is a number a CALLER has to know: it is
|
|
286
|
+
* what decides whether a brief goes in `description` or into an attached document, and a caller that
|
|
287
|
+
* cannot read it discovers the ceiling as a `422` on the first task of an automated setup. It is not
|
|
288
|
+
* shared with the repository/service descriptions on `public-provisioning.ts`, which merely happen to
|
|
289
|
+
* hold the same value: those bound a label, this bounds a framing echoed into every prompt.
|
|
290
|
+
*
|
|
291
|
+
* The DOCUMENT path is the surface's own answer for anything longer (see
|
|
292
|
+
* {@link publicTaskDocumentSchema}), which is why this stays where it is rather than being raised.
|
|
293
|
+
*/
|
|
294
|
+
export const MAX_TASK_DESCRIPTION_CHARS = 2000;
|
|
293
295
|
/** Characters of document text ONE uploaded attachment may carry (see {@link publicTaskDocumentSchema}). */
|
|
294
296
|
export const MAX_UPLOADED_DOCUMENT_CHARS = 100_000;
|
|
297
|
+
/**
|
|
298
|
+
* Characters an ATTACHED DOCUMENT's title may carry (see {@link publicTaskUploadedDocumentSchema}).
|
|
299
|
+
*
|
|
300
|
+
* Named for the same reason as {@link MAX_TASK_DESCRIPTION_CHARS}: a caller that composes an
|
|
301
|
+
* attachment (any suite filing a brief bigger than a `description` holds) has to check the title
|
|
302
|
+
* before the round trip, and one that cannot read the bound restates it, which drifts the moment
|
|
303
|
+
* either side moves. Not shared with the TASK title bound, which merely happens to hold the same
|
|
304
|
+
* value today and answers a different question.
|
|
305
|
+
*/
|
|
306
|
+
export const MAX_DOCUMENT_TITLE_CHARS = 200;
|
|
295
307
|
/** Context documents ONE task creation may attach (imported and uploaded together). */
|
|
296
308
|
export const MAX_TASK_DOCUMENTS = 10;
|
|
297
309
|
/** A page NAMED in a document source the workspace has connected. See {@link publicTaskDocumentSchema}. */
|
|
@@ -309,7 +321,7 @@ export const publicTaskSourceDocumentSchema = v.object({
|
|
|
309
321
|
export const publicTaskUploadedDocumentSchema = v.object({
|
|
310
322
|
kind: v.literal('upload'),
|
|
311
323
|
/** Names the document for the agent (it becomes the attachment's heading and filename). */
|
|
312
|
-
title: v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(
|
|
324
|
+
title: v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(MAX_DOCUMENT_TITLE_CHARS)),
|
|
313
325
|
/**
|
|
314
326
|
* The document text, as Markdown. Refused when it yields no readable text at all (a body of
|
|
315
327
|
* pure markup would reach the agent as an empty attachment).
|
|
@@ -374,7 +386,7 @@ const presetPinSchema = v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength
|
|
|
374
386
|
*/
|
|
375
387
|
export const createPublicTaskSchema = v.object({
|
|
376
388
|
title: v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(200)),
|
|
377
|
-
description: v.optional(v.pipe(v.string(), v.trim(), v.maxLength(
|
|
389
|
+
description: v.optional(v.pipe(v.string(), v.trim(), v.maxLength(MAX_TASK_DESCRIPTION_CHARS))),
|
|
378
390
|
/** The kind of work; omitted → `feature`. `recurring` is not creatable here. */
|
|
379
391
|
taskType: v.optional(createTaskTypeSchema),
|
|
380
392
|
/**
|
|
@@ -495,7 +507,7 @@ export const startPublicTaskSchema = v.object({
|
|
|
495
507
|
*/
|
|
496
508
|
export const updatePublicTaskSchema = v.object({
|
|
497
509
|
title: v.optional(v.pipe(v.string(), v.trim(), v.minLength(1), v.maxLength(200))),
|
|
498
|
-
description: v.optional(v.pipe(v.string(), v.trim(), v.maxLength(
|
|
510
|
+
description: v.optional(v.pipe(v.string(), v.trim(), v.maxLength(MAX_TASK_DESCRIPTION_CHARS))),
|
|
499
511
|
/**
|
|
500
512
|
* The per-case values for the task's own type, keyed by field, checked against the SAME
|
|
501
513
|
* descriptors `POST /services/:serviceId/tasks` validates a `fields` bag against
|
package/dist/public-api.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
/** Machine-readable `details.reason` for an entry id this workspace does not hold. */
|
|
3
|
+
export declare const KAIZEN_ENTRY_NOT_FOUND_REASON = "kaizen_entry_not_found";
|
|
4
|
+
/**
|
|
5
|
+
* Machine-readable `details.reason` for acknowledging an entry that has not settled yet.
|
|
6
|
+
*
|
|
7
|
+
* Distinct from a 404 because it is about TIMING rather than identity: the entry exists, the
|
|
8
|
+
* grader has simply not finished with it, and a caller that acknowledged it now would be marking
|
|
9
|
+
* recommendations triaged before they were written. Retry once the entry reaches `complete` or
|
|
10
|
+
* `failed`.
|
|
11
|
+
*/
|
|
12
|
+
export declare const KAIZEN_ENTRY_NOT_SETTLED_REASON = "kaizen_entry_not_settled";
|
|
13
|
+
/**
|
|
14
|
+
* The board coordinates of the graded run, resolved at read time — null when the task block has
|
|
15
|
+
* since been deleted.
|
|
16
|
+
*
|
|
17
|
+
* Separate from the entry's own `taskId` on purpose: the id is a fact the grading row RECORDED
|
|
18
|
+
* and always answers, while this is what the board says about it NOW. Collapsing the two would
|
|
19
|
+
* make a deleted task read as an entry that never had one.
|
|
20
|
+
*/
|
|
21
|
+
export declare const publicKaizenEntryTaskSchema: v.ObjectSchema<{
|
|
22
|
+
readonly title: v.StringSchema<undefined>;
|
|
23
|
+
/**
|
|
24
|
+
* The task's board lifecycle status, in the SAME vocabulary `/api/v1/tasks` speaks
|
|
25
|
+
* (`publicTaskStatusSchema`) rather than the internal block one it happens to mirror today.
|
|
26
|
+
*
|
|
27
|
+
* Typed against the public picklist on purpose: the two are separate closed vocabularies
|
|
28
|
+
* precisely so the board can gain a status without that widening `/api/v1` by accident. Reading
|
|
29
|
+
* the internal one here would publish the new member with no version decision, and would let two
|
|
30
|
+
* endpoints answer differently about the same task. Adding a member internally now fails to
|
|
31
|
+
* compile until somebody decides what the public surface says about it.
|
|
32
|
+
*/
|
|
33
|
+
readonly status: v.PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* The enclosing service frame (`GET /api/v1/services/{serviceId}`), or null for a task outside
|
|
36
|
+
* one — a headless job's anchor, or a board block that predates services.
|
|
37
|
+
*
|
|
38
|
+
* Resolved by walking the block's parent chain to its service frame, which is how every other
|
|
39
|
+
* `/api/v1` surface answers the same question (`GET /api/v1/services/{serviceId}/tasks`,
|
|
40
|
+
* `GET /api/v1/tasks/{taskId}`). Deriving it any other way would let one task report a service
|
|
41
|
+
* here and a different answer (or none) there, for the same board.
|
|
42
|
+
*/
|
|
43
|
+
readonly serviceId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
44
|
+
/**
|
|
45
|
+
* That service's title. Non-null exactly when `serviceId` is: both are read off the SAME
|
|
46
|
+
* resolved frame block, so a caller never receives an id that `GET /api/v1/services/{serviceId}`
|
|
47
|
+
* cannot answer for.
|
|
48
|
+
*/
|
|
49
|
+
readonly serviceTitle: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
50
|
+
}, undefined>;
|
|
51
|
+
export type PublicKaizenEntryTask = v.InferOutput<typeof publicKaizenEntryTaskSchema>;
|
|
52
|
+
/**
|
|
53
|
+
* Where the entry's `(agentKind, model, promptVersion)` combo stands in the verification streak,
|
|
54
|
+
* or null when nothing has been recorded for it yet.
|
|
55
|
+
*
|
|
56
|
+
* Carried because it decides whether an entry is worth acting on: a VERIFIED combo is one the
|
|
57
|
+
* engine has stopped grading, so its recommendations are historical, and a long streak says the
|
|
58
|
+
* pairing is behaving even if this one run was not.
|
|
59
|
+
*/
|
|
60
|
+
export declare const publicKaizenEntryComboSchema: v.ObjectSchema<{
|
|
61
|
+
/** Consecutive high grades (4 or 5, no recommendations) recorded for the combo. */
|
|
62
|
+
readonly consecutiveHighGrades: v.NumberSchema<undefined>;
|
|
63
|
+
/** Whether it crossed the streak threshold and is no longer graded. */
|
|
64
|
+
readonly verified: v.BooleanSchema<undefined>;
|
|
65
|
+
/** Epoch ms it crossed, else null. */
|
|
66
|
+
readonly verifiedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
67
|
+
}, undefined>;
|
|
68
|
+
export type PublicKaizenEntryCombo = v.InferOutput<typeof publicKaizenEntryComboSchema>;
|
|
69
|
+
/**
|
|
70
|
+
* One Kaizen entry as `/api/v1` speaks it: the grading, what produced it, and its triage state.
|
|
71
|
+
*
|
|
72
|
+
* The id vocabulary is the public one — `entryId` for the grading, `runId` and `taskId` for the
|
|
73
|
+
* run and board block the stored row calls `executionId` and `blockId` — so every id here
|
|
74
|
+
* addresses something on this API. Nothing the row holds is dropped.
|
|
75
|
+
*/
|
|
76
|
+
export declare const publicKaizenEntrySchema: v.ObjectSchema<{
|
|
77
|
+
/** The id to pass to `GET /api/v1/kaizen/entries/{entryId}` and the acknowledge route. */
|
|
78
|
+
readonly entryId: v.StringSchema<undefined>;
|
|
79
|
+
/** The run whose step was graded (`GET /api/v1/debug/runs/{runId}` for its own detail). */
|
|
80
|
+
readonly runId: v.StringSchema<undefined>;
|
|
81
|
+
/** Index of the graded step within that run's pipeline. */
|
|
82
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
83
|
+
/** The board task the run was started on, as the row recorded it. */
|
|
84
|
+
readonly taskId: v.StringSchema<undefined>;
|
|
85
|
+
/** What the board says about that task now, or null when it has been deleted. */
|
|
86
|
+
readonly task: v.NullableSchema<v.ObjectSchema<{
|
|
87
|
+
readonly title: v.StringSchema<undefined>;
|
|
88
|
+
/**
|
|
89
|
+
* The task's board lifecycle status, in the SAME vocabulary `/api/v1/tasks` speaks
|
|
90
|
+
* (`publicTaskStatusSchema`) rather than the internal block one it happens to mirror today.
|
|
91
|
+
*
|
|
92
|
+
* Typed against the public picklist on purpose: the two are separate closed vocabularies
|
|
93
|
+
* precisely so the board can gain a status without that widening `/api/v1` by accident. Reading
|
|
94
|
+
* the internal one here would publish the new member with no version decision, and would let two
|
|
95
|
+
* endpoints answer differently about the same task. Adding a member internally now fails to
|
|
96
|
+
* compile until somebody decides what the public surface says about it.
|
|
97
|
+
*/
|
|
98
|
+
readonly status: v.PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
99
|
+
/**
|
|
100
|
+
* The enclosing service frame (`GET /api/v1/services/{serviceId}`), or null for a task outside
|
|
101
|
+
* one — a headless job's anchor, or a board block that predates services.
|
|
102
|
+
*
|
|
103
|
+
* Resolved by walking the block's parent chain to its service frame, which is how every other
|
|
104
|
+
* `/api/v1` surface answers the same question (`GET /api/v1/services/{serviceId}/tasks`,
|
|
105
|
+
* `GET /api/v1/tasks/{taskId}`). Deriving it any other way would let one task report a service
|
|
106
|
+
* here and a different answer (or none) there, for the same board.
|
|
107
|
+
*/
|
|
108
|
+
readonly serviceId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
109
|
+
/**
|
|
110
|
+
* That service's title. Non-null exactly when `serviceId` is: both are read off the SAME
|
|
111
|
+
* resolved frame block, so a caller never receives an id that `GET /api/v1/services/{serviceId}`
|
|
112
|
+
* cannot answer for.
|
|
113
|
+
*/
|
|
114
|
+
readonly serviceTitle: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
115
|
+
}, undefined>, undefined>;
|
|
116
|
+
/** The graded step's agent kind (`coder`, `architect`, a deployment's own kind, …). */
|
|
117
|
+
readonly agentKind: v.StringSchema<undefined>;
|
|
118
|
+
/** The model the step actually dispatched on, as resolved at dispatch. */
|
|
119
|
+
readonly model: v.StringSchema<undefined>;
|
|
120
|
+
/** The shipped prompt version the step ran, from the agents prompt-version registry. */
|
|
121
|
+
readonly promptVersion: v.NumberSchema<undefined>;
|
|
122
|
+
/** `agentKind|model|promptVersion(|revision|variant)` — what the streak is kept against. */
|
|
123
|
+
readonly comboKey: v.StringSchema<undefined>;
|
|
124
|
+
/** The combo's verification progress, or null when nothing has been recorded for it. */
|
|
125
|
+
readonly combo: v.NullableSchema<v.ObjectSchema<{
|
|
126
|
+
/** Consecutive high grades (4 or 5, no recommendations) recorded for the combo. */
|
|
127
|
+
readonly consecutiveHighGrades: v.NumberSchema<undefined>;
|
|
128
|
+
/** Whether it crossed the streak threshold and is no longer graded. */
|
|
129
|
+
readonly verified: v.BooleanSchema<undefined>;
|
|
130
|
+
/** Epoch ms it crossed, else null. */
|
|
131
|
+
readonly verifiedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
132
|
+
}, undefined>, undefined>;
|
|
133
|
+
/** Where the grading itself got to (`scheduled` / `running` / `complete` / `failed`). */
|
|
134
|
+
readonly status: v.PicklistSchema<["scheduled", "running", "complete", "failed"], undefined>;
|
|
135
|
+
/** 1..5 once `complete` (5 = smooth, guided, efficient); null while pending or failed. */
|
|
136
|
+
readonly grade: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
137
|
+
/** The grader's prose account of how the interaction went; empty until it completes. */
|
|
138
|
+
readonly summary: v.StringSchema<undefined>;
|
|
139
|
+
/** What the grader recommends changing. Empty ⇒ it found nothing to improve. */
|
|
140
|
+
readonly recommendations: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
141
|
+
/** `provider:model` that produced the grade, so a reader can weigh the grader itself. */
|
|
142
|
+
readonly graderModel: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
143
|
+
/**
|
|
144
|
+
* Why the grading `failed`, else null. A failure is a real entry rather than a hidden one: it
|
|
145
|
+
* usually names a deployment-level problem (prompt recording off, no grader model wired) that
|
|
146
|
+
* nothing else reports, and it is acknowledgeable for exactly that reason.
|
|
147
|
+
*/
|
|
148
|
+
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
149
|
+
/** Whether somebody has triaged it — the same fact `acknowledgedAt` carries, as the filter. */
|
|
150
|
+
readonly acknowledged: v.BooleanSchema<undefined>;
|
|
151
|
+
/** Epoch ms it was acknowledged, else null. */
|
|
152
|
+
readonly acknowledgedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
153
|
+
/** The user (`usr_*`) or API key (`pak_*`) that acknowledged it, else null. */
|
|
154
|
+
readonly acknowledgedBy: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
155
|
+
/** The note left with the acknowledgement, else null. */
|
|
156
|
+
readonly acknowledgementNote: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
157
|
+
/** Epoch ms the grading was scheduled (also what the list orders and pages on). */
|
|
158
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
159
|
+
/** Epoch ms the row last changed (a grader transition or an acknowledgement). */
|
|
160
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
161
|
+
}, undefined>;
|
|
162
|
+
export type PublicKaizenEntry = v.InferOutput<typeof publicKaizenEntrySchema>;
|
|
163
|
+
export declare const publicKaizenEntryListSchema: v.ObjectSchema<{
|
|
164
|
+
readonly entries: v.ArraySchema<v.ObjectSchema<{
|
|
165
|
+
/** The id to pass to `GET /api/v1/kaizen/entries/{entryId}` and the acknowledge route. */
|
|
166
|
+
readonly entryId: v.StringSchema<undefined>;
|
|
167
|
+
/** The run whose step was graded (`GET /api/v1/debug/runs/{runId}` for its own detail). */
|
|
168
|
+
readonly runId: v.StringSchema<undefined>;
|
|
169
|
+
/** Index of the graded step within that run's pipeline. */
|
|
170
|
+
readonly stepIndex: v.NumberSchema<undefined>;
|
|
171
|
+
/** The board task the run was started on, as the row recorded it. */
|
|
172
|
+
readonly taskId: v.StringSchema<undefined>;
|
|
173
|
+
/** What the board says about that task now, or null when it has been deleted. */
|
|
174
|
+
readonly task: v.NullableSchema<v.ObjectSchema<{
|
|
175
|
+
readonly title: v.StringSchema<undefined>;
|
|
176
|
+
/**
|
|
177
|
+
* The task's board lifecycle status, in the SAME vocabulary `/api/v1/tasks` speaks
|
|
178
|
+
* (`publicTaskStatusSchema`) rather than the internal block one it happens to mirror today.
|
|
179
|
+
*
|
|
180
|
+
* Typed against the public picklist on purpose: the two are separate closed vocabularies
|
|
181
|
+
* precisely so the board can gain a status without that widening `/api/v1` by accident. Reading
|
|
182
|
+
* the internal one here would publish the new member with no version decision, and would let two
|
|
183
|
+
* endpoints answer differently about the same task. Adding a member internally now fails to
|
|
184
|
+
* compile until somebody decides what the public surface says about it.
|
|
185
|
+
*/
|
|
186
|
+
readonly status: v.PicklistSchema<["planned", "ready", "in_progress", "blocked", "pr_ready", "done"], undefined>;
|
|
187
|
+
/**
|
|
188
|
+
* The enclosing service frame (`GET /api/v1/services/{serviceId}`), or null for a task outside
|
|
189
|
+
* one — a headless job's anchor, or a board block that predates services.
|
|
190
|
+
*
|
|
191
|
+
* Resolved by walking the block's parent chain to its service frame, which is how every other
|
|
192
|
+
* `/api/v1` surface answers the same question (`GET /api/v1/services/{serviceId}/tasks`,
|
|
193
|
+
* `GET /api/v1/tasks/{taskId}`). Deriving it any other way would let one task report a service
|
|
194
|
+
* here and a different answer (or none) there, for the same board.
|
|
195
|
+
*/
|
|
196
|
+
readonly serviceId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
197
|
+
/**
|
|
198
|
+
* That service's title. Non-null exactly when `serviceId` is: both are read off the SAME
|
|
199
|
+
* resolved frame block, so a caller never receives an id that `GET /api/v1/services/{serviceId}`
|
|
200
|
+
* cannot answer for.
|
|
201
|
+
*/
|
|
202
|
+
readonly serviceTitle: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
203
|
+
}, undefined>, undefined>;
|
|
204
|
+
/** The graded step's agent kind (`coder`, `architect`, a deployment's own kind, …). */
|
|
205
|
+
readonly agentKind: v.StringSchema<undefined>;
|
|
206
|
+
/** The model the step actually dispatched on, as resolved at dispatch. */
|
|
207
|
+
readonly model: v.StringSchema<undefined>;
|
|
208
|
+
/** The shipped prompt version the step ran, from the agents prompt-version registry. */
|
|
209
|
+
readonly promptVersion: v.NumberSchema<undefined>;
|
|
210
|
+
/** `agentKind|model|promptVersion(|revision|variant)` — what the streak is kept against. */
|
|
211
|
+
readonly comboKey: v.StringSchema<undefined>;
|
|
212
|
+
/** The combo's verification progress, or null when nothing has been recorded for it. */
|
|
213
|
+
readonly combo: v.NullableSchema<v.ObjectSchema<{
|
|
214
|
+
/** Consecutive high grades (4 or 5, no recommendations) recorded for the combo. */
|
|
215
|
+
readonly consecutiveHighGrades: v.NumberSchema<undefined>;
|
|
216
|
+
/** Whether it crossed the streak threshold and is no longer graded. */
|
|
217
|
+
readonly verified: v.BooleanSchema<undefined>;
|
|
218
|
+
/** Epoch ms it crossed, else null. */
|
|
219
|
+
readonly verifiedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
220
|
+
}, undefined>, undefined>;
|
|
221
|
+
/** Where the grading itself got to (`scheduled` / `running` / `complete` / `failed`). */
|
|
222
|
+
readonly status: v.PicklistSchema<["scheduled", "running", "complete", "failed"], undefined>;
|
|
223
|
+
/** 1..5 once `complete` (5 = smooth, guided, efficient); null while pending or failed. */
|
|
224
|
+
readonly grade: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
225
|
+
/** The grader's prose account of how the interaction went; empty until it completes. */
|
|
226
|
+
readonly summary: v.StringSchema<undefined>;
|
|
227
|
+
/** What the grader recommends changing. Empty ⇒ it found nothing to improve. */
|
|
228
|
+
readonly recommendations: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
229
|
+
/** `provider:model` that produced the grade, so a reader can weigh the grader itself. */
|
|
230
|
+
readonly graderModel: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
231
|
+
/**
|
|
232
|
+
* Why the grading `failed`, else null. A failure is a real entry rather than a hidden one: it
|
|
233
|
+
* usually names a deployment-level problem (prompt recording off, no grader model wired) that
|
|
234
|
+
* nothing else reports, and it is acknowledgeable for exactly that reason.
|
|
235
|
+
*/
|
|
236
|
+
readonly error: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
237
|
+
/** Whether somebody has triaged it — the same fact `acknowledgedAt` carries, as the filter. */
|
|
238
|
+
readonly acknowledged: v.BooleanSchema<undefined>;
|
|
239
|
+
/** Epoch ms it was acknowledged, else null. */
|
|
240
|
+
readonly acknowledgedAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
241
|
+
/** The user (`usr_*`) or API key (`pak_*`) that acknowledged it, else null. */
|
|
242
|
+
readonly acknowledgedBy: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
243
|
+
/** The note left with the acknowledgement, else null. */
|
|
244
|
+
readonly acknowledgementNote: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
245
|
+
/** Epoch ms the grading was scheduled (also what the list orders and pages on). */
|
|
246
|
+
readonly createdAt: v.NumberSchema<undefined>;
|
|
247
|
+
/** Epoch ms the row last changed (a grader transition or an acknowledgement). */
|
|
248
|
+
readonly updatedAt: v.NumberSchema<undefined>;
|
|
249
|
+
}, undefined>, undefined>;
|
|
250
|
+
/**
|
|
251
|
+
* Cursor to pass as `?cursor=` for the next page, or null when this was the last page. A
|
|
252
|
+
* non-null cursor means "there may be more", so a client pages until it comes back null.
|
|
253
|
+
*/
|
|
254
|
+
readonly nextCursor: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
255
|
+
}, undefined>;
|
|
256
|
+
export type PublicKaizenEntryList = v.InferOutput<typeof publicKaizenEntryListSchema>;
|
|
257
|
+
/**
|
|
258
|
+
* Query params for `GET /api/v1/kaizen/entries`. Ordering is newest-first on the grading's
|
|
259
|
+
* `createdAt`, keyset-paged on `(createdAt, entryId)` so a burst of gradings sharing a
|
|
260
|
+
* millisecond cannot lose rows between pages.
|
|
261
|
+
*
|
|
262
|
+
* The filters are the questions an improvement loop actually asks, each pushed into SQL: what is
|
|
263
|
+
* untriaged, what the grader has finished with, what one agent kind is being told, and what is new
|
|
264
|
+
* since the last sweep. They compose, and `?acknowledged=false&settled=true` is the working
|
|
265
|
+
* backlog: every entry in it is one the acknowledge route accepts.
|
|
266
|
+
*/
|
|
267
|
+
export declare const listPublicKaizenEntriesQuerySchema: v.ObjectSchema<{
|
|
268
|
+
/** Rows per page (1..100); omitted → 25. */
|
|
269
|
+
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "Must be a whole number">, v.TransformAction<any, number>, v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
|
|
270
|
+
/** Opaque cursor from a previous page's `nextCursor`. */
|
|
271
|
+
readonly cursor: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
272
|
+
/** `false` for the untriaged backlog, `true` for what has been handled; omitted → both. */
|
|
273
|
+
readonly acknowledged: v.OptionalSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["true", "false"], undefined>, v.TransformAction<"false" | "true", boolean>]>, undefined>;
|
|
274
|
+
/**
|
|
275
|
+
* `true` for entries the grader has FINISHED with (whatever it concluded), `false` for those
|
|
276
|
+
* still scheduled or running; omitted → both.
|
|
277
|
+
*
|
|
278
|
+
* The filter that makes `?acknowledged=false&settled=true` an actionable backlog: every row it
|
|
279
|
+
* returns is one the acknowledge route will accept, where `?acknowledged=false` alone also
|
|
280
|
+
* returns gradings mid-flight that it refuses with `409 kaizen_entry_not_settled`. It is a
|
|
281
|
+
* separate question from `status` because the settled SET is what the write is gated on, and
|
|
282
|
+
* spelling it as `status=complete` drops the `failed` entries (which usually name a deployment
|
|
283
|
+
* problem, and are the ones most worth acting on) while a client-side union of the two would
|
|
284
|
+
* silently miss any settled state added later.
|
|
285
|
+
*/
|
|
286
|
+
readonly settled: v.OptionalSchema<v.SchemaWithPipe<readonly [v.PicklistSchema<["true", "false"], undefined>, v.TransformAction<"false" | "true", boolean>]>, undefined>;
|
|
287
|
+
/** Return only entries whose grading is in this exact state. */
|
|
288
|
+
readonly status: v.OptionalSchema<v.PicklistSchema<["scheduled", "running", "complete", "failed"], undefined>, undefined>;
|
|
289
|
+
/** Return only entries grading this agent kind. */
|
|
290
|
+
readonly agentKind: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 120, undefined>]>, undefined>;
|
|
291
|
+
/** Return only entries created at or after this epoch-ms stamp (the incremental-poll filter). */
|
|
292
|
+
readonly since: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.RegexAction<string, "Must be a whole number of epoch milliseconds">, v.TransformAction<any, number>, v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
293
|
+
}, undefined>;
|
|
294
|
+
export type ListPublicKaizenEntriesQuery = v.InferOutput<typeof listPublicKaizenEntriesQuerySchema>;
|
|
295
|
+
/** Longest acknowledgement note the surface stores. */
|
|
296
|
+
export declare const KAIZEN_ACKNOWLEDGEMENT_NOTE_MAX = 2000;
|
|
297
|
+
/**
|
|
298
|
+
* Body for `POST /api/v1/kaizen/entries/{entryId}/acknowledge`.
|
|
299
|
+
*
|
|
300
|
+
* `acknowledged` is optional and defaults to `true`, so the ordinary call is an empty body; pass
|
|
301
|
+
* `false` to put an entry back on the backlog after acknowledging it by mistake. Acknowledging an
|
|
302
|
+
* already-acknowledged entry is a no-op that returns the row unchanged, which keeps
|
|
303
|
+
* `acknowledgedAt` naming when it was FIRST triaged rather than when a retrying client last
|
|
304
|
+
* repeated itself.
|
|
305
|
+
*/
|
|
306
|
+
export declare const acknowledgeKaizenEntrySchema: v.ObjectSchema<{
|
|
307
|
+
/** `true` (the default) records the acknowledgement; `false` clears it. */
|
|
308
|
+
readonly acknowledged: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
309
|
+
/**
|
|
310
|
+
* What the next reader should know: a ticket id, a decision, why it was dismissed. Stored only
|
|
311
|
+
* with the acknowledgement that lands, and cleared along with it.
|
|
312
|
+
*/
|
|
313
|
+
readonly note: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2000, undefined>]>, undefined>, undefined>;
|
|
314
|
+
}, undefined>;
|
|
315
|
+
export type AcknowledgeKaizenEntry = v.InferOutput<typeof acknowledgeKaizenEntrySchema>;
|
|
316
|
+
//# sourceMappingURL=public-kaizen.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public-kaizen.d.ts","sourceRoot":"","sources":["../src/public-kaizen.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAqC5B,sFAAsF;AACtF,eAAO,MAAM,6BAA6B,2BAA2B,CAAA;AAErE;;;;;;;GAOG;AACH,eAAO,MAAM,+BAA+B,6BAA6B,CAAA;AAEzE;;;;;;;GAOG;AACH,eAAO,MAAM,2BAA2B;;IAEtC;;;;;;;;;OASG;;IAEH;;;;;;;;OAQG;;IAEH;;;;OAIG;;aAEH,CAAA;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,2BAA2B,CAAC,CAAA;AAErF;;;;;;;GAOG;AACH,eAAO,MAAM,4BAA4B;IACvC,mFAAmF;;IAEnF,uEAAuE;;IAEvE,sCAAsC;;aAEtC,CAAA;AACF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,4BAA4B,CAAC,CAAA;AAEvF;;;;;;GAMG;AACH,eAAO,MAAM,uBAAuB;IAClC,0FAA0F;;IAE1F,2FAA2F;;IAE3F,2DAA2D;;IAE3D,qEAAqE;;IAErE,iFAAiF;;;QAhEjF;;;;;;;;;WASG;;QAEH;;;;;;;;WAQG;;QAEH;;;;WAIG;;;IAyCH,uFAAuF;;IAEvF,0EAA0E;;IAE1E,wFAAwF;;IAExF,4FAA4F;;IAE5F,wFAAwF;;QAnCxF,mFAAmF;;QAEnF,uEAAuE;;QAEvE,sCAAsC;;;IAiCtC,yFAAyF;;IAEzF,0FAA0F;;IAE1F,wFAAwF;;IAExF,gFAAgF;;IAEhF,yFAAyF;;IAEzF;;;;OAIG;;IAEH,+FAA+F;;IAE/F,+CAA+C;;IAE/C,+EAA+E;;IAE/E,yDAAyD;;IAEzD,mFAAmF;;IAEnF,iFAAiF;;aAEjF,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE7E,eAAO,MAAM,2BAA2B;;QAnDtC,0FAA0F;;QAE1F,2FAA2F;;QAE3F,2DAA2D;;QAE3D,qEAAqE;;QAErE,iFAAiF;;;YAhEjF;;;;;;;;;eASG;;YAEH;;;;;;;;eAQG;;YAEH;;;;eAIG;;;QAyCH,uFAAuF;;QAEvF,0EAA0E;;QAE1E,wFAAwF;;QAExF,4FAA4F;;QAE5F,wFAAwF;;YAnCxF,mFAAmF;;YAEnF,uEAAuE;;YAEvE,sCAAsC;;;QAiCtC,yFAAyF;;QAEzF,0FAA0F;;QAE1F,wFAAwF;;QAExF,gFAAgF;;QAEhF,yFAAyF;;QAEzF;;;;WAIG;;QAEH,+FAA+F;;QAE/F,+CAA+C;;QAE/C,+EAA+E;;QAE/E,yDAAyD;;QAEzD,mFAAmF;;QAEnF,iFAAiF;;;IAOjF;;;OAGG;;aAEH,CAAA;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,2BAA2B,CAAC,CAAA;AAErF;;;;;;;;;GASG;AACH,eAAO,MAAM,kCAAkC;IAC7C,4CAA4C;;IAE5C,yDAAyD;;IAEzD,2FAA2F;;IAE3F;;;;;;;;;;;OAWG;;IAEH,gEAAgE;;IAEhE,mDAAmD;;IAEnD,iGAAiG;;aAEjG,CAAA;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAEnG,uDAAuD;AACvD,eAAO,MAAM,+BAA+B,OAAQ,CAAA;AAEpD;;;;;;;;GAQG;AACH,eAAO,MAAM,4BAA4B;IACvC,2EAA2E;;IAE3E;;;OAGG;;aAIH,CAAA;AACF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,WAAW,CAAC,OAAO,4BAA4B,CAAC,CAAA"}
|