@pat-lewczuk/cezar 0.1.1 → 0.1.3

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.
Files changed (59) hide show
  1. package/README.md +249 -45
  2. package/dist/config.d.ts +15 -0
  3. package/dist/config.js +11 -0
  4. package/dist/config.js.map +1 -1
  5. package/dist/core/agent-runner.d.ts +44 -2
  6. package/dist/core/agent-runner.js +8 -2
  7. package/dist/core/agent-runner.js.map +1 -1
  8. package/dist/core/backend-detect.d.ts +6 -4
  9. package/dist/core/backend-detect.js +44 -4
  10. package/dist/core/backend-detect.js.map +1 -1
  11. package/dist/core/claude-cli-runner.d.ts +3 -25
  12. package/dist/core/claude-cli-runner.js +2 -19
  13. package/dist/core/claude-cli-runner.js.map +1 -1
  14. package/dist/core/codex-app-server-runner.d.ts +29 -0
  15. package/dist/core/codex-app-server-runner.js +452 -0
  16. package/dist/core/codex-app-server-runner.js.map +1 -0
  17. package/dist/core/ndjson.d.ts +6 -0
  18. package/dist/core/ndjson.js +23 -0
  19. package/dist/core/ndjson.js.map +1 -0
  20. package/dist/core/opencode-server-runner.d.ts +30 -0
  21. package/dist/core/opencode-server-runner.js +451 -0
  22. package/dist/core/opencode-server-runner.js.map +1 -0
  23. package/dist/core/runner-factory.d.ts +8 -0
  24. package/dist/core/runner-factory.js +22 -0
  25. package/dist/core/runner-factory.js.map +1 -0
  26. package/dist/git-worktree.d.ts +7 -0
  27. package/dist/git-worktree.js +14 -0
  28. package/dist/git-worktree.js.map +1 -1
  29. package/dist/planner.js +7 -3
  30. package/dist/planner.js.map +1 -1
  31. package/dist/runs/store.d.ts +7 -2
  32. package/dist/runs/store.js +3 -0
  33. package/dist/runs/store.js.map +1 -1
  34. package/dist/server/git.d.ts +5 -0
  35. package/dist/server/git.js +38 -0
  36. package/dist/server/git.js.map +1 -1
  37. package/dist/server/github.d.ts +2 -1
  38. package/dist/server/github.js +17 -10
  39. package/dist/server/github.js.map +1 -1
  40. package/dist/server/pr.js +7 -1
  41. package/dist/server/pr.js.map +1 -1
  42. package/dist/server/server.js +207 -20
  43. package/dist/server/server.js.map +1 -1
  44. package/dist/skills.d.ts +11 -9
  45. package/dist/skills.js +74 -13
  46. package/dist/skills.js.map +1 -1
  47. package/dist/workflows/load.js +5 -3
  48. package/dist/workflows/load.js.map +1 -1
  49. package/dist/workflows/run.d.ts +3 -0
  50. package/dist/workflows/run.js +43 -11
  51. package/dist/workflows/run.js.map +1 -1
  52. package/dist/workflows/types.d.ts +87 -8
  53. package/dist/workflows/types.js +54 -2
  54. package/dist/workflows/types.js.map +1 -1
  55. package/package.json +1 -1
  56. package/web/app.js +1180 -88
  57. package/web/index.html +16 -7
  58. package/web/open-mercato.svg +11 -0
  59. package/web/style.css +458 -56
@@ -14,6 +14,8 @@ export declare const workflowStepSchema: z.ZodEffects<z.ZodObject<{
14
14
  prompt: z.ZodOptional<z.ZodString>;
15
15
  skill: z.ZodOptional<z.ZodString>;
16
16
  model: z.ZodOptional<z.ZodString>;
17
+ /** Per-step agent backend override (falls back to the task / config default). */
18
+ runner: z.ZodOptional<z.ZodEnum<["claude", "codex", "opencode"]>>;
17
19
  allowedTools: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18
20
  bashAllowlist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
19
21
  command: z.ZodOptional<z.ZodString>;
@@ -31,6 +33,7 @@ export declare const workflowStepSchema: z.ZodEffects<z.ZodObject<{
31
33
  id: string;
32
34
  name?: string | undefined;
33
35
  model?: string | undefined;
36
+ runner?: "claude" | "codex" | "opencode" | undefined;
34
37
  skill?: string | undefined;
35
38
  command?: string | undefined;
36
39
  prompt?: string | undefined;
@@ -44,6 +47,7 @@ export declare const workflowStepSchema: z.ZodEffects<z.ZodObject<{
44
47
  id: string;
45
48
  name?: string | undefined;
46
49
  model?: string | undefined;
50
+ runner?: "claude" | "codex" | "opencode" | undefined;
47
51
  skill?: string | undefined;
48
52
  command?: string | undefined;
49
53
  prompt?: string | undefined;
@@ -57,6 +61,7 @@ export declare const workflowStepSchema: z.ZodEffects<z.ZodObject<{
57
61
  id: string;
58
62
  name?: string | undefined;
59
63
  model?: string | undefined;
64
+ runner?: "claude" | "codex" | "opencode" | undefined;
60
65
  skill?: string | undefined;
61
66
  command?: string | undefined;
62
67
  prompt?: string | undefined;
@@ -70,6 +75,7 @@ export declare const workflowStepSchema: z.ZodEffects<z.ZodObject<{
70
75
  id: string;
71
76
  name?: string | undefined;
72
77
  model?: string | undefined;
78
+ runner?: "claude" | "codex" | "opencode" | undefined;
73
79
  skill?: string | undefined;
74
80
  command?: string | undefined;
75
81
  prompt?: string | undefined;
@@ -80,15 +86,22 @@ export declare const workflowStepSchema: z.ZodEffects<z.ZodObject<{
80
86
  max?: number | undefined;
81
87
  } | undefined;
82
88
  }>;
83
- export declare const workflowFileSchema: z.ZodObject<{
89
+ /**
90
+ * A workflow file names either full `steps` or the portable `skills` shorthand
91
+ * (spec 012 — what the builder exports): an ordered list of skill names, each
92
+ * becoming one agent step that applies that skill to `{{task}}`.
93
+ */
94
+ export declare const workflowFileSchema: z.ZodEffects<z.ZodObject<{
84
95
  name: z.ZodString;
85
96
  description: z.ZodOptional<z.ZodString>;
86
- steps: z.ZodArray<z.ZodEffects<z.ZodObject<{
97
+ steps: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
87
98
  id: z.ZodString;
88
99
  name: z.ZodOptional<z.ZodString>;
89
100
  prompt: z.ZodOptional<z.ZodString>;
90
101
  skill: z.ZodOptional<z.ZodString>;
91
102
  model: z.ZodOptional<z.ZodString>;
103
+ /** Per-step agent backend override (falls back to the task / config default). */
104
+ runner: z.ZodOptional<z.ZodEnum<["claude", "codex", "opencode"]>>;
92
105
  allowedTools: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
93
106
  bashAllowlist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
94
107
  command: z.ZodOptional<z.ZodString>;
@@ -106,6 +119,7 @@ export declare const workflowFileSchema: z.ZodObject<{
106
119
  id: string;
107
120
  name?: string | undefined;
108
121
  model?: string | undefined;
122
+ runner?: "claude" | "codex" | "opencode" | undefined;
109
123
  skill?: string | undefined;
110
124
  command?: string | undefined;
111
125
  prompt?: string | undefined;
@@ -119,6 +133,7 @@ export declare const workflowFileSchema: z.ZodObject<{
119
133
  id: string;
120
134
  name?: string | undefined;
121
135
  model?: string | undefined;
136
+ runner?: "claude" | "codex" | "opencode" | undefined;
122
137
  skill?: string | undefined;
123
138
  command?: string | undefined;
124
139
  prompt?: string | undefined;
@@ -132,6 +147,7 @@ export declare const workflowFileSchema: z.ZodObject<{
132
147
  id: string;
133
148
  name?: string | undefined;
134
149
  model?: string | undefined;
150
+ runner?: "claude" | "codex" | "opencode" | undefined;
135
151
  skill?: string | undefined;
136
152
  command?: string | undefined;
137
153
  prompt?: string | undefined;
@@ -145,6 +161,7 @@ export declare const workflowFileSchema: z.ZodObject<{
145
161
  id: string;
146
162
  name?: string | undefined;
147
163
  model?: string | undefined;
164
+ runner?: "claude" | "codex" | "opencode" | undefined;
148
165
  skill?: string | undefined;
149
166
  command?: string | undefined;
150
167
  prompt?: string | undefined;
@@ -154,13 +171,53 @@ export declare const workflowFileSchema: z.ZodObject<{
154
171
  retry: string;
155
172
  max?: number | undefined;
156
173
  } | undefined;
157
- }>, "many">;
174
+ }>, "many">>;
175
+ skills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
158
176
  }, "strip", z.ZodTypeAny, {
159
177
  name: string;
160
- steps: {
178
+ steps?: {
179
+ id: string;
180
+ name?: string | undefined;
181
+ model?: string | undefined;
182
+ runner?: "claude" | "codex" | "opencode" | undefined;
183
+ skill?: string | undefined;
184
+ command?: string | undefined;
185
+ prompt?: string | undefined;
186
+ allowedTools?: string[] | undefined;
187
+ bashAllowlist?: string[] | undefined;
188
+ onFail?: {
189
+ retry: string;
190
+ max: number;
191
+ } | undefined;
192
+ }[] | undefined;
193
+ skills?: string[] | undefined;
194
+ description?: string | undefined;
195
+ }, {
196
+ name: string;
197
+ steps?: {
198
+ id: string;
199
+ name?: string | undefined;
200
+ model?: string | undefined;
201
+ runner?: "claude" | "codex" | "opencode" | undefined;
202
+ skill?: string | undefined;
203
+ command?: string | undefined;
204
+ prompt?: string | undefined;
205
+ allowedTools?: string[] | undefined;
206
+ bashAllowlist?: string[] | undefined;
207
+ onFail?: {
208
+ retry: string;
209
+ max?: number | undefined;
210
+ } | undefined;
211
+ }[] | undefined;
212
+ skills?: string[] | undefined;
213
+ description?: string | undefined;
214
+ }>, {
215
+ name: string;
216
+ steps?: {
161
217
  id: string;
162
218
  name?: string | undefined;
163
219
  model?: string | undefined;
220
+ runner?: "claude" | "codex" | "opencode" | undefined;
164
221
  skill?: string | undefined;
165
222
  command?: string | undefined;
166
223
  prompt?: string | undefined;
@@ -170,14 +227,16 @@ export declare const workflowFileSchema: z.ZodObject<{
170
227
  retry: string;
171
228
  max: number;
172
229
  } | undefined;
173
- }[];
230
+ }[] | undefined;
231
+ skills?: string[] | undefined;
174
232
  description?: string | undefined;
175
233
  }, {
176
234
  name: string;
177
- steps: {
235
+ steps?: {
178
236
  id: string;
179
237
  name?: string | undefined;
180
238
  model?: string | undefined;
239
+ runner?: "claude" | "codex" | "opencode" | undefined;
181
240
  skill?: string | undefined;
182
241
  command?: string | undefined;
183
242
  prompt?: string | undefined;
@@ -187,14 +246,34 @@ export declare const workflowFileSchema: z.ZodObject<{
187
246
  retry: string;
188
247
  max?: number | undefined;
189
248
  } | undefined;
190
- }[];
249
+ }[] | undefined;
250
+ skills?: string[] | undefined;
191
251
  description?: string | undefined;
192
252
  }>;
193
253
  export type WorkflowStepDef = z.infer<typeof workflowStepSchema>;
194
- export interface WorkflowDef extends z.infer<typeof workflowFileSchema> {
254
+ export type WorkflowDoc = z.infer<typeof workflowFileSchema>;
255
+ export interface WorkflowDef {
256
+ name: string;
257
+ description?: string;
258
+ steps: WorkflowStepDef[];
195
259
  source: 'built-in' | 'file';
196
260
  path?: string;
197
261
  }
262
+ /** `skills: [a, b]` → agent steps, one per skill, each running `{{task}}`. */
263
+ export declare function skillsToSteps(skills: string[]): WorkflowStepDef[];
264
+ /** Resolve the steps/skills XOR into plain steps. */
265
+ export declare function normalizeWorkflowDoc(doc: WorkflowDoc): {
266
+ name: string;
267
+ description?: string;
268
+ steps: WorkflowStepDef[];
269
+ };
270
+ /**
271
+ * The inverse of `skillsToSteps`: when every step is a plain "apply this
272
+ * skill to the task" agent step, return the skill list — the workflow can be
273
+ * written in the portable compact form. Anything richer (checks, custom
274
+ * prompts, per-step models/tools, loops) returns null.
275
+ */
276
+ export declare function skillStackOf(steps: WorkflowStepDef[]): string[] | null;
198
277
  export declare function stepKind(step: WorkflowStepDef): 'agent' | 'check';
199
278
  /**
200
279
  * Structural checks beyond the per-step schema: ids must be unique and every
@@ -16,6 +16,8 @@ export const workflowStepSchema = z
16
16
  prompt: z.string().optional(),
17
17
  skill: z.string().optional(),
18
18
  model: z.string().optional(),
19
+ /** Per-step agent backend override (falls back to the task / config default). */
20
+ runner: z.enum(['claude', 'codex', 'opencode']).optional(),
19
21
  allowedTools: z.array(z.string()).optional(),
20
22
  bashAllowlist: z.array(z.string()).optional(),
21
23
  // check step
@@ -30,11 +32,61 @@ export const workflowStepSchema = z
30
32
  .refine((s) => Boolean(s.command) !== Boolean(s.prompt ?? s.skill), {
31
33
  message: 'a step is either an agent step (prompt/skill) or a check step (command), not both',
32
34
  });
33
- export const workflowFileSchema = z.object({
35
+ /**
36
+ * A workflow file names either full `steps` or the portable `skills` shorthand
37
+ * (spec 012 — what the builder exports): an ordered list of skill names, each
38
+ * becoming one agent step that applies that skill to `{{task}}`.
39
+ */
40
+ export const workflowFileSchema = z
41
+ .object({
34
42
  name: z.string().min(1),
35
43
  description: z.string().optional(),
36
- steps: z.array(workflowStepSchema).min(1),
44
+ steps: z.array(workflowStepSchema).min(1).optional(),
45
+ skills: z.array(z.string().trim().min(1)).min(1).optional(),
46
+ })
47
+ .refine((d) => Boolean(d.steps) !== Boolean(d.skills), {
48
+ message: 'a workflow lists either "steps" or "skills", not both',
37
49
  });
50
+ /** `skills: [a, b]` → agent steps, one per skill, each running `{{task}}`. */
51
+ export function skillsToSteps(skills) {
52
+ const used = new Set();
53
+ return skills.map((skill) => {
54
+ let id = skill;
55
+ for (let n = 2; used.has(id); n++)
56
+ id = `${skill}-${n}`;
57
+ used.add(id);
58
+ return { id, name: skill, skill, prompt: '{{task}}' };
59
+ });
60
+ }
61
+ /** Resolve the steps/skills XOR into plain steps. */
62
+ export function normalizeWorkflowDoc(doc) {
63
+ return {
64
+ name: doc.name,
65
+ ...(doc.description ? { description: doc.description } : {}),
66
+ steps: doc.steps ?? skillsToSteps(doc.skills ?? []),
67
+ };
68
+ }
69
+ /**
70
+ * The inverse of `skillsToSteps`: when every step is a plain "apply this
71
+ * skill to the task" agent step, return the skill list — the workflow can be
72
+ * written in the portable compact form. Anything richer (checks, custom
73
+ * prompts, per-step models/tools, loops) returns null.
74
+ */
75
+ export function skillStackOf(steps) {
76
+ const skills = [];
77
+ for (const s of steps) {
78
+ if (stepKind(s) !== 'agent' || !s.skill)
79
+ return null;
80
+ if (s.prompt !== undefined && s.prompt !== '{{task}}')
81
+ return null;
82
+ if (s.name !== undefined && s.name !== s.skill)
83
+ return null;
84
+ if (s.model || s.runner || s.allowedTools || s.bashAllowlist || s.onFail)
85
+ return null;
86
+ skills.push(s.skill);
87
+ }
88
+ return skills.length ? skills : null;
89
+ }
38
90
  export function stepKind(step) {
39
91
  return step.command ? 'check' : 'agent';
40
92
  }
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/workflows/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/workflows/types.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pat-lewczuk/cezar",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Local cockpit for running and tracking AI agent tasks in your repo. Uses your logged-in `claude` CLI and `gh` — zero config, zero database.",
5
5
  "license": "MIT",
6
6
  "type": "module",