@gajae-code/coding-agent 0.6.4 → 0.6.5

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 (120) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/types/cli/migrate-cli.d.ts +20 -0
  3. package/dist/types/commands/migrate.d.ts +33 -0
  4. package/dist/types/config/keybindings.d.ts +4 -0
  5. package/dist/types/gjc-runtime/deep-interview-recorder.d.ts +2 -0
  6. package/dist/types/gjc-runtime/deep-interview-runtime.d.ts +2 -2
  7. package/dist/types/gjc-runtime/goal-mode-request.d.ts +1 -1
  8. package/dist/types/gjc-runtime/session-layout.d.ts +59 -0
  9. package/dist/types/gjc-runtime/session-resolution.d.ts +47 -0
  10. package/dist/types/gjc-runtime/state-graph.d.ts +1 -1
  11. package/dist/types/gjc-runtime/state-runtime.d.ts +5 -4
  12. package/dist/types/gjc-runtime/state-schema.d.ts +2 -0
  13. package/dist/types/gjc-runtime/state-writer.d.ts +36 -7
  14. package/dist/types/gjc-runtime/ultragoal-runtime.d.ts +7 -4
  15. package/dist/types/gjc-runtime/workflow-command-ref.d.ts +1 -1
  16. package/dist/types/gjc-runtime/workflow-manifest.d.ts +1 -1
  17. package/dist/types/harness-control-plane/storage.d.ts +2 -1
  18. package/dist/types/hooks/skill-state.d.ts +12 -4
  19. package/dist/types/migrate/action-planner.d.ts +11 -0
  20. package/dist/types/migrate/adapters/claude-code.d.ts +2 -0
  21. package/dist/types/migrate/adapters/codex.d.ts +5 -0
  22. package/dist/types/migrate/adapters/index.d.ts +45 -0
  23. package/dist/types/migrate/adapters/opencode.d.ts +2 -0
  24. package/dist/types/migrate/executor.d.ts +2 -0
  25. package/dist/types/migrate/mcp-mapper.d.ts +20 -0
  26. package/dist/types/migrate/report.d.ts +18 -0
  27. package/dist/types/migrate/skill-normalizer.d.ts +27 -0
  28. package/dist/types/migrate/types.d.ts +126 -0
  29. package/dist/types/modes/components/custom-editor.d.ts +1 -1
  30. package/dist/types/modes/shared/agent-wire/unattended-audit.d.ts +1 -1
  31. package/dist/types/research-plan/index.d.ts +1 -0
  32. package/dist/types/research-plan/ledger.d.ts +33 -0
  33. package/dist/types/rlm/artifacts.d.ts +1 -1
  34. package/dist/types/runtime-mcp/config-writer.d.ts +26 -0
  35. package/dist/types/skill-state/active-state.d.ts +6 -11
  36. package/dist/types/skill-state/canonical-skills.d.ts +3 -0
  37. package/dist/types/skill-state/workflow-hud.d.ts +2 -0
  38. package/dist/types/task/spawn-gate.d.ts +1 -10
  39. package/package.json +7 -7
  40. package/src/cli/migrate-cli.ts +106 -0
  41. package/src/cli.ts +1 -0
  42. package/src/commands/deep-interview.ts +2 -2
  43. package/src/commands/migrate.ts +46 -0
  44. package/src/commands/state.ts +2 -1
  45. package/src/commands/team.ts +7 -3
  46. package/src/coordinator-mcp/policy.ts +10 -2
  47. package/src/defaults/gjc/extensions/grok-cli-vendor/biome.json +0 -1
  48. package/src/defaults/gjc/skills/deep-interview/SKILL.md +28 -24
  49. package/src/defaults/gjc/skills/ralplan/SKILL.md +8 -4
  50. package/src/defaults/gjc/skills/team/SKILL.md +51 -47
  51. package/src/defaults/gjc/skills/ultragoal/SKILL.md +17 -13
  52. package/src/extensibility/custom-commands/loader.ts +0 -7
  53. package/src/extensibility/gjc-plugins/injection.ts +23 -4
  54. package/src/extensibility/gjc-plugins/state.ts +16 -1
  55. package/src/gjc-runtime/deep-interview-recorder.ts +43 -18
  56. package/src/gjc-runtime/deep-interview-runtime.ts +49 -23
  57. package/src/gjc-runtime/goal-mode-request.ts +26 -11
  58. package/src/gjc-runtime/launch-tmux.ts +6 -1
  59. package/src/gjc-runtime/ralplan-runtime.ts +79 -50
  60. package/src/gjc-runtime/session-layout.ts +180 -0
  61. package/src/gjc-runtime/session-resolution.ts +217 -0
  62. package/src/gjc-runtime/state-graph.ts +1 -2
  63. package/src/gjc-runtime/state-migrations.ts +1 -0
  64. package/src/gjc-runtime/state-runtime.ts +230 -121
  65. package/src/gjc-runtime/state-schema.ts +2 -0
  66. package/src/gjc-runtime/state-writer.ts +289 -41
  67. package/src/gjc-runtime/team-runtime.ts +43 -19
  68. package/src/gjc-runtime/tmux-sessions.ts +7 -1
  69. package/src/gjc-runtime/ultragoal-guard.ts +45 -2
  70. package/src/gjc-runtime/ultragoal-runtime.ts +121 -41
  71. package/src/gjc-runtime/workflow-command-ref.ts +1 -2
  72. package/src/gjc-runtime/workflow-manifest.ts +1 -2
  73. package/src/harness-control-plane/storage.ts +14 -4
  74. package/src/hooks/native-skill-hook.ts +38 -12
  75. package/src/hooks/skill-state.ts +178 -83
  76. package/src/internal-urls/docs-index.generated.ts +6 -4
  77. package/src/migrate/action-planner.ts +318 -0
  78. package/src/migrate/adapters/claude-code.ts +39 -0
  79. package/src/migrate/adapters/codex.ts +70 -0
  80. package/src/migrate/adapters/index.ts +277 -0
  81. package/src/migrate/adapters/opencode.ts +52 -0
  82. package/src/migrate/executor.ts +81 -0
  83. package/src/migrate/mcp-mapper.ts +152 -0
  84. package/src/migrate/report.ts +104 -0
  85. package/src/migrate/skill-normalizer.ts +80 -0
  86. package/src/migrate/types.ts +163 -0
  87. package/src/modes/bridge/bridge-mode.ts +2 -2
  88. package/src/modes/components/custom-editor.ts +30 -20
  89. package/src/modes/rpc/rpc-mode.ts +2 -2
  90. package/src/modes/shared/agent-wire/unattended-audit.ts +3 -2
  91. package/src/prompts/agents/init.md +1 -1
  92. package/src/prompts/system/plan-mode-active.md +1 -1
  93. package/src/prompts/tools/ast-grep.md +1 -1
  94. package/src/prompts/tools/search.md +1 -1
  95. package/src/prompts/tools/task.md +1 -2
  96. package/src/research-plan/index.ts +1 -0
  97. package/src/research-plan/ledger.ts +177 -0
  98. package/src/rlm/artifacts.ts +12 -3
  99. package/src/rlm/index.ts +7 -0
  100. package/src/runtime-mcp/config-writer.ts +46 -0
  101. package/src/session/agent-session.ts +15 -21
  102. package/src/setup/hermes-setup.ts +1 -1
  103. package/src/skill-state/active-state.ts +72 -108
  104. package/src/skill-state/canonical-skills.ts +4 -0
  105. package/src/skill-state/deep-interview-mutation-guard.ts +28 -109
  106. package/src/skill-state/workflow-hud.ts +4 -2
  107. package/src/skill-state/workflow-state-contract.ts +3 -3
  108. package/src/task/agents.ts +1 -22
  109. package/src/task/index.ts +1 -41
  110. package/src/task/spawn-gate.ts +1 -38
  111. package/src/task/types.ts +1 -1
  112. package/src/tools/ask.ts +34 -12
  113. package/src/tools/computer.ts +58 -4
  114. package/dist/types/extensibility/custom-commands/bundled/review/index.d.ts +0 -10
  115. package/src/extensibility/custom-commands/bundled/review/index.ts +0 -456
  116. package/src/prompts/agents/explore.md +0 -58
  117. package/src/prompts/agents/plan.md +0 -49
  118. package/src/prompts/agents/reviewer.md +0 -141
  119. package/src/prompts/agents/task.md +0 -16
  120. package/src/prompts/review-request.md +0 -70
@@ -1,456 +0,0 @@
1
- /**
2
- * /review command - Interactive code review launcher
3
- *
4
- * Provides a menu to select review mode:
5
- * 1. Review against a base branch (PR style)
6
- * 2. Review uncommitted changes
7
- * 3. Review a specific commit
8
- * 4. Custom review instructions
9
- *
10
- * Runs git diff upfront, parses results, filters noise, and provides
11
- * rich context for the orchestrating agent to distribute work across
12
- * multiple reviewer agents based on diff weight and locality.
13
- */
14
- import { prompt } from "@gajae-code/utils";
15
- import type { CustomCommand, CustomCommandAPI } from "../../../../extensibility/custom-commands/types";
16
- import type { HookCommandContext } from "../../../../extensibility/hooks/types";
17
- import reviewRequestTemplate from "../../../../prompts/review-request.md" with { type: "text" };
18
- import * as git from "../../../../utils/git";
19
-
20
- // ─────────────────────────────────────────────────────────────────────────────
21
- // Types
22
- // ─────────────────────────────────────────────────────────────────────────────
23
-
24
- interface FileDiff {
25
- path: string;
26
- linesAdded: number;
27
- linesRemoved: number;
28
- hunks: string;
29
- }
30
-
31
- interface DiffStats {
32
- files: FileDiff[];
33
- totalAdded: number;
34
- totalRemoved: number;
35
- excluded: { path: string; reason: string; linesAdded: number; linesRemoved: number }[];
36
- }
37
-
38
- // ─────────────────────────────────────────────────────────────────────────────
39
- // Exclusion patterns for noise files
40
- // ─────────────────────────────────────────────────────────────────────────────
41
-
42
- const EXCLUDED_PATTERNS: { pattern: RegExp; reason: string }[] = [
43
- // Lock files
44
- { pattern: /\.lock$/, reason: "lock file" },
45
- { pattern: /-lock\.(json|yaml|yml)$/, reason: "lock file" },
46
- { pattern: /package-lock\.json$/, reason: "lock file" },
47
- { pattern: /yarn\.lock$/, reason: "lock file" },
48
- { pattern: /pnpm-lock\.yaml$/, reason: "lock file" },
49
- { pattern: /Cargo\.lock$/, reason: "lock file" },
50
- { pattern: /Gemfile\.lock$/, reason: "lock file" },
51
- { pattern: /poetry\.lock$/, reason: "lock file" },
52
- { pattern: /composer\.lock$/, reason: "lock file" },
53
- { pattern: /flake\.lock$/, reason: "lock file" },
54
-
55
- // Generated/build artifacts
56
- { pattern: /\.min\.(js|css)$/, reason: "minified" },
57
- { pattern: /\.generated\./, reason: "generated" },
58
- { pattern: /\.snap$/, reason: "snapshot" },
59
- { pattern: /\.map$/, reason: "source map" },
60
- { pattern: /^dist\//, reason: "build output" },
61
- { pattern: /^build\//, reason: "build output" },
62
- { pattern: /^out\//, reason: "build output" },
63
- { pattern: /node_modules\//, reason: "vendor" },
64
- { pattern: /vendor\//, reason: "vendor" },
65
-
66
- // Binary/assets (usually shown as binary in diff anyway)
67
- { pattern: /\.(png|jpg|jpeg|gif|ico|webp|avif)$/i, reason: "image" },
68
- { pattern: /\.(woff|woff2|ttf|eot|otf)$/i, reason: "font" },
69
- { pattern: /\.(pdf|zip|tar|gz|rar|7z)$/i, reason: "binary" },
70
- ];
71
-
72
- // ─────────────────────────────────────────────────────────────────────────────
73
- // Diff parsing
74
- // ─────────────────────────────────────────────────────────────────────────────
75
-
76
- /**
77
- * Check if a file path should be excluded from review.
78
- * Returns the exclusion reason if excluded, undefined otherwise.
79
- */
80
- function getExclusionReason(path: string): string | undefined {
81
- for (const { pattern, reason } of EXCLUDED_PATTERNS) {
82
- if (pattern.test(path)) return reason;
83
- }
84
- return undefined;
85
- }
86
-
87
- /**
88
- * Parse unified diff output into per-file stats.
89
- * Splits on file boundaries, counts +/- lines, and filters excluded files.
90
- */
91
- function parseDiff(diffOutput: string): DiffStats {
92
- const files: FileDiff[] = [];
93
- const excluded: DiffStats["excluded"] = [];
94
- let totalAdded = 0;
95
- let totalRemoved = 0;
96
-
97
- // Split by file boundary: "diff --git a/... b/..."
98
- const fileChunks = diffOutput.split(/^diff --git /m).filter(Boolean);
99
-
100
- for (const chunk of fileChunks) {
101
- // Extract file path from "a/path b/path" line
102
- const headerMatch = chunk.match(/^a\/(.+?) b\/(.+)/);
103
- if (!headerMatch) continue;
104
-
105
- const path = headerMatch[2];
106
-
107
- // Count added/removed lines (lines starting with + or - but not ++ or --)
108
- let linesAdded = 0;
109
- let linesRemoved = 0;
110
-
111
- const lines = chunk.split("\n");
112
- for (const line of lines) {
113
- if (line.startsWith("+") && !line.startsWith("+++")) {
114
- linesAdded++;
115
- } else if (line.startsWith("-") && !line.startsWith("---")) {
116
- linesRemoved++;
117
- }
118
- }
119
-
120
- const exclusionReason = getExclusionReason(path);
121
- if (exclusionReason) {
122
- excluded.push({ path, reason: exclusionReason, linesAdded, linesRemoved });
123
- } else {
124
- files.push({
125
- path,
126
- linesAdded,
127
- linesRemoved,
128
- hunks: `diff --git ${chunk}`,
129
- });
130
- totalAdded += linesAdded;
131
- totalRemoved += linesRemoved;
132
- }
133
- }
134
-
135
- return { files, totalAdded, totalRemoved, excluded };
136
- }
137
-
138
- /**
139
- * Get file extension for display purposes.
140
- */
141
- function getFileExt(path: string): string {
142
- const match = path.match(/\.([^.]+)$/);
143
- return match ? match[1] : "";
144
- }
145
-
146
- /**
147
- * Determine recommended number of reviewer agents based on diff weight.
148
- * Uses total lines changed as the primary metric.
149
- */
150
- function getRecommendedAgentCount(stats: DiffStats): number {
151
- const totalLines = stats.totalAdded + stats.totalRemoved;
152
- const fileCount = stats.files.length;
153
-
154
- // Heuristics:
155
- // - Tiny (<100 lines or 1-2 files): 1 agent
156
- // - Small (<500 lines): 1-2 agents
157
- // - Medium (<2000 lines): 2-4 agents
158
- // - Large (<5000 lines): 4-8 agents
159
- // - Huge (>5000 lines): 8-16 agents
160
-
161
- if (totalLines < 100 || fileCount <= 2) return 1;
162
- if (totalLines < 500) return Math.min(2, fileCount);
163
- if (totalLines < 2000) return Math.min(4, Math.ceil(fileCount / 3));
164
- if (totalLines < 5000) return Math.min(8, Math.ceil(fileCount / 2));
165
- return Math.min(16, fileCount);
166
- }
167
-
168
- /**
169
- * Extract first N lines of actual diff content (excluding headers) for preview.
170
- */
171
- function getDiffPreview(hunks: string, maxLines: number): string {
172
- const lines = hunks.split("\n");
173
- const contentLines: string[] = [];
174
-
175
- for (const line of lines) {
176
- // Skip diff headers, keep actual content
177
- if (
178
- line.startsWith("diff --git") ||
179
- line.startsWith("index ") ||
180
- line.startsWith("---") ||
181
- line.startsWith("+++") ||
182
- line.startsWith("@@")
183
- ) {
184
- continue;
185
- }
186
- contentLines.push(line);
187
- if (contentLines.length >= maxLines) break;
188
- }
189
-
190
- return contentLines.join("\n");
191
- }
192
-
193
- // Thresholds for diff inclusion
194
- const MAX_DIFF_CHARS = 50_000; // Don't include diff above this
195
- const MAX_FILES_FOR_INLINE_DIFF = 20; // Don't include diff if more files than this
196
-
197
- /**
198
- * Build the full review prompt with diff stats and distribution guidance.
199
- */
200
- function buildReviewPrompt(mode: string, stats: DiffStats, rawDiff: string, additionalInstructions?: string): string {
201
- const agentCount = getRecommendedAgentCount(stats);
202
- const skipDiff = rawDiff.length > MAX_DIFF_CHARS || stats.files.length > MAX_FILES_FOR_INLINE_DIFF;
203
- const totalLines = stats.totalAdded + stats.totalRemoved;
204
- const linesPerFile = skipDiff ? Math.max(5, Math.floor(100 / stats.files.length)) : 0;
205
-
206
- const filesWithExt = stats.files.map(f => ({
207
- ...f,
208
- ext: getFileExt(f.path),
209
- hunksPreview: skipDiff ? getDiffPreview(f.hunks, linesPerFile) : "",
210
- }));
211
-
212
- return prompt.render(reviewRequestTemplate, {
213
- mode,
214
- files: filesWithExt,
215
- excluded: stats.excluded,
216
- totalAdded: stats.totalAdded,
217
- totalRemoved: stats.totalRemoved,
218
- totalLines,
219
- agentCount,
220
- multiAgent: agentCount > 1,
221
- skipDiff,
222
- rawDiff: rawDiff.trim(),
223
- linesPerFile,
224
- additionalInstructions,
225
- });
226
- }
227
-
228
- export class ReviewCommand implements CustomCommand {
229
- name = "review";
230
- description = "Launch interactive code review";
231
-
232
- constructor(private api: CustomCommandAPI) {}
233
-
234
- async execute(args: string[], ctx: HookCommandContext): Promise<string | undefined> {
235
- if (!ctx.hasUI) {
236
- const base = "Use the Task tool to run the 'reviewer' agent to review recent code changes.";
237
- return args.length > 0 ? `${base} Focus: ${args.join(" ")}` : base;
238
- }
239
-
240
- // Inline args act as additional instructions appended to the generated prompt.
241
- // When present, skip option 4 (editor) — the args already provide the instructions.
242
- const extraInstructions = args.length > 0 ? args.join(" ") : undefined;
243
-
244
- const menuItems = extraInstructions
245
- ? [
246
- "1. Review against a base branch (PR Style)",
247
- "2. Review uncommitted changes",
248
- "3. Review a specific commit",
249
- ]
250
- : [
251
- "1. Review against a base branch (PR Style)",
252
- "2. Review uncommitted changes",
253
- "3. Review a specific commit",
254
- "4. Custom review instructions",
255
- ];
256
-
257
- const mode = await ctx.ui.select("Review Mode", menuItems);
258
-
259
- if (!mode) return undefined;
260
-
261
- const modeNum = parseInt(mode[0], 10);
262
-
263
- switch (modeNum) {
264
- case 1: {
265
- // PR-style review against base branch
266
- const branches = await getGitBranches(this.api);
267
- if (branches.length === 0) {
268
- ctx.ui.notify("No git branches found", "error");
269
- return undefined;
270
- }
271
-
272
- const baseBranch = await ctx.ui.select("Select base branch to compare against", branches);
273
- if (!baseBranch) return undefined;
274
-
275
- const currentBranch = await getCurrentBranch(this.api);
276
- let diffText: string;
277
- try {
278
- diffText = await git.diff(this.api.cwd, { base: `${baseBranch}...${currentBranch}` });
279
- } catch (err) {
280
- ctx.ui.notify(`Failed to get diff: ${err instanceof Error ? err.message : String(err)}`, "error");
281
- return undefined;
282
- }
283
-
284
- if (!diffText.trim()) {
285
- ctx.ui.notify(`No changes between ${baseBranch} and ${currentBranch}`, "warning");
286
- return undefined;
287
- }
288
-
289
- const stats = parseDiff(diffText);
290
- if (stats.files.length === 0) {
291
- ctx.ui.notify("No reviewable files (all changes filtered out)", "warning");
292
- return undefined;
293
- }
294
-
295
- return buildReviewPrompt(
296
- `Reviewing changes between \`${baseBranch}\` and \`${currentBranch}\` (PR-style)`,
297
- stats,
298
- diffText,
299
- extraInstructions,
300
- );
301
- }
302
-
303
- case 2: {
304
- // Uncommitted changes - combine staged and unstaged
305
- const status = await getGitStatus(this.api);
306
- if (!status.trim()) {
307
- ctx.ui.notify("No uncommitted changes found", "warning");
308
- return undefined;
309
- }
310
-
311
- let unstagedDiff: string;
312
- let stagedDiff: string;
313
- try {
314
- [unstagedDiff, stagedDiff] = await Promise.all([
315
- git.diff(this.api.cwd),
316
- git.diff(this.api.cwd, { cached: true }),
317
- ]);
318
- } catch (err) {
319
- ctx.ui.notify(`Failed to get diff: ${err instanceof Error ? err.message : String(err)}`, "error");
320
- return undefined;
321
- }
322
-
323
- const combinedDiff = [unstagedDiff, stagedDiff].filter(Boolean).join("\n");
324
-
325
- if (!combinedDiff.trim()) {
326
- ctx.ui.notify("No diff content found", "warning");
327
- return undefined;
328
- }
329
-
330
- const stats = parseDiff(combinedDiff);
331
- if (stats.files.length === 0) {
332
- ctx.ui.notify("No reviewable files (all changes filtered out)", "warning");
333
- return undefined;
334
- }
335
-
336
- return buildReviewPrompt(
337
- "Reviewing uncommitted changes (staged + unstaged)",
338
- stats,
339
- combinedDiff,
340
- extraInstructions,
341
- );
342
- }
343
-
344
- case 3: {
345
- // Specific commit
346
- const commits = await getRecentCommits(this.api, 20);
347
- if (commits.length === 0) {
348
- ctx.ui.notify("No commits found", "error");
349
- return undefined;
350
- }
351
-
352
- const selected = await ctx.ui.select("Select commit to review", commits);
353
- if (!selected) return undefined;
354
-
355
- // Extract commit hash from selection (format: "abc1234 message")
356
- const hash = selected.split(" ")[0];
357
-
358
- let diffText: string;
359
- try {
360
- diffText = await git.show(this.api.cwd, hash, { format: "" });
361
- } catch (err) {
362
- ctx.ui.notify(`Failed to get commit: ${err instanceof Error ? err.message : String(err)}`, "error");
363
- return undefined;
364
- }
365
-
366
- if (!diffText.trim()) {
367
- ctx.ui.notify("Commit has no diff content", "warning");
368
- return undefined;
369
- }
370
-
371
- const stats = parseDiff(diffText);
372
- if (stats.files.length === 0) {
373
- ctx.ui.notify("No reviewable files in commit (all changes filtered out)", "warning");
374
- return undefined;
375
- }
376
-
377
- return buildReviewPrompt(`Reviewing commit \`${hash}\``, stats, diffText, extraInstructions);
378
- }
379
-
380
- case 4: {
381
- // Custom instructions - still uses the old approach since user provides context
382
- const instructions = await ctx.ui.editor("Enter custom review instructions", "Review the following:\n\n");
383
- if (!instructions?.trim()) return undefined;
384
-
385
- // For custom, we still try to get current diff for context
386
- let diffText: string | undefined;
387
- try {
388
- diffText = await git.diff(this.api.cwd, { base: "HEAD" });
389
- } catch {
390
- diffText = undefined;
391
- }
392
- const reviewDiff = diffText?.trim();
393
-
394
- if (reviewDiff) {
395
- const stats = parseDiff(reviewDiff);
396
- // Even if all files filtered, include the custom instructions
397
- return buildReviewPrompt(
398
- `Custom review: ${instructions.split("\n")[0].slice(0, 60)}…`,
399
- stats,
400
- reviewDiff,
401
- instructions,
402
- );
403
- }
404
-
405
- // No diff available, just pass instructions
406
- return `## Code Review Request
407
-
408
- ### Mode
409
- Custom review instructions
410
-
411
- ### Instructions
412
-
413
- ${instructions}
414
-
415
- Use the Task tool with \`agent: "reviewer"\` to execute this review.`;
416
- }
417
-
418
- default:
419
- return undefined;
420
- }
421
- }
422
- }
423
-
424
- async function getGitBranches(api: CustomCommandAPI): Promise<string[]> {
425
- try {
426
- return await git.branch.list(api.cwd, { all: true });
427
- } catch {
428
- return [];
429
- }
430
- }
431
-
432
- async function getCurrentBranch(api: CustomCommandAPI): Promise<string> {
433
- try {
434
- return (await git.branch.current(api.cwd)) ?? "HEAD";
435
- } catch {
436
- return "HEAD";
437
- }
438
- }
439
-
440
- async function getGitStatus(api: CustomCommandAPI): Promise<string> {
441
- try {
442
- return await git.status(api.cwd);
443
- } catch {
444
- return "";
445
- }
446
- }
447
-
448
- async function getRecentCommits(api: CustomCommandAPI, count: number): Promise<string[]> {
449
- try {
450
- return await git.log.onelines(api.cwd, count);
451
- } catch {
452
- return [];
453
- }
454
- }
455
-
456
- export default ReviewCommand;
@@ -1,58 +0,0 @@
1
- ---
2
- name: explore
3
- description: Fast read-only codebase scout returning compressed context for handoff
4
- tools: read, search, find, web_search
5
- model: pi/default
6
- thinking-level: med
7
- output:
8
- properties:
9
- summary:
10
- metadata:
11
- description: Brief summary of findings and conclusions
12
- type: string
13
- files:
14
- metadata:
15
- description: Files examined with relevant code references
16
- elements:
17
- properties:
18
- path:
19
- metadata:
20
- description: Project-relative path or paths to the most relevant code reference(s), optionally suffixed with line ranges like `:12-34` when relevant
21
- type: string
22
- description:
23
- metadata:
24
- description: Section contents
25
- type: string
26
- architecture:
27
- metadata:
28
- description: Brief explanation of how pieces connect
29
- type: string
30
- hide: true
31
- ---
32
-
33
- Investigate the codebase rapidly. Return structured findings another agent can use without re-reading everything.
34
-
35
- <directives>
36
- - You MUST use tools for broad pattern matching / code search as much as possible.
37
- - You SHOULD invoke tools in parallel—this is a short investigation, and you are supposed to finish in a few seconds.
38
- - If a search returns empty results, you MUST try at least one alternate strategy (different pattern, broader path, or AST search) before concluding the target doesn't exist.
39
- </directives>
40
-
41
- <thoroughness>
42
- You MUST infer the thoroughness from the task; default to medium:
43
- - **Quick**: Targeted lookups, key files only
44
- - **Medium**: Follow imports, read critical sections
45
- - **Thorough**: Trace all dependencies, check tests/types.
46
- </thoroughness>
47
-
48
- <procedure>
49
- 1. Locate relevant code using tools.
50
- 2. Read key sections (You NEVER read full files unless they're tiny)
51
- 3. Identify types/interfaces/key functions.
52
- 4. Note dependencies between files.
53
- </procedure>
54
-
55
- <critical>
56
- You MUST operate as read-only. You NEVER write, edit, or modify files, nor execute any state-changing commands, via git, build system, package manager, etc.
57
- You MUST keep going until complete.
58
- </critical>
@@ -1,49 +0,0 @@
1
- ---
2
- name: plan
3
- description: Software architect for complex multi-file architectural decisions. NOT for simple tasks, single-file changes, or tasks completable in <5 tool calls.
4
- tools: read, search, find, bash, lsp, web_search, ast_grep
5
- spawns: explore
6
- model: pi/default
7
- thinking-level: high
8
- hide: true
9
- ---
10
-
11
- Analyze the codebase and the user's request. Produce a detailed implementation plan.
12
-
13
- ## Phase 1: Understand
14
- 1. Parse requirements precisely
15
- 2. Identify ambiguities; list assumptions
16
-
17
- ## Phase 2: Explore
18
- 1. Find existing patterns via `search`/`find`
19
- 2. Read key files; understand architecture
20
- 3. Trace data flow through relevant paths
21
- 4. Identify types, interfaces, contracts
22
- 5. Note dependencies between components
23
-
24
- You MUST spawn `explore` agents for independent areas and synthesize findings.
25
-
26
- ## Phase 3: Design
27
- 1. List concrete changes (files, functions, types)
28
- 2. Define sequence and dependencies
29
- 3. Identify edge cases and error conditions
30
- 4. Consider alternatives; justify your choice
31
- 5. Note pitfalls/tricky parts
32
-
33
- ## Phase 4: Produce Plan
34
-
35
- You MUST write a plan executable without re-exploration.
36
-
37
- <structure>
38
- - **Summary**: What to build and why (one paragraph).
39
- - **Changes**: List concrete changes (files, functions, types), concrete as much as possible. Exact file paths/line ranges where relevant.
40
- - **Sequence**: List sequence and dependencies between sub-tasks, to schedule them in the best order.
41
- - **Edge Cases**: List edge cases and error conditions, to be aware of.
42
- - **Verification**: List verification steps, to be able to verify the correctness.
43
- - **Critical Files**: List critical files, to be able to read them and understand the codebase.
44
- </structure>
45
-
46
- <critical>
47
- You MUST operate as read-only. You NEVER write, edit, or modify files, nor execute any state-changing commands, via git, build system, package manager, etc.
48
- You MUST keep going until complete.
49
- </critical>
@@ -1,141 +0,0 @@
1
- ---
2
- name: reviewer
3
- description: "Code review specialist for quality/security analysis"
4
- tools: read, search, find, bash, lsp, web_search, ast_grep, report_finding
5
- spawns: explore
6
- model: pi/default
7
- thinking-level: high
8
- blocking: true
9
- output:
10
- properties:
11
- overall_correctness:
12
- metadata:
13
- description: Whether change correct (no bugs/blockers)
14
- enum: [correct, incorrect]
15
- explanation:
16
- metadata:
17
- description: Plain-text verdict summary, 1-3 sentences
18
- type: string
19
- confidence:
20
- metadata:
21
- description: Verdict confidence (0.0-1.0)
22
- type: number
23
- optionalProperties:
24
- findings:
25
- metadata:
26
- description: Auto-populated from report_finding; don't set manually
27
- elements:
28
- properties:
29
- title:
30
- metadata:
31
- description: Imperative, ≤80 chars
32
- type: string
33
- body:
34
- metadata:
35
- description: "One paragraph: bug, trigger, impact"
36
- type: string
37
- priority:
38
- metadata:
39
- description: "P0-P3: 0 blocks release, 1 fix next cycle, 2 fix eventually, 3 nice to have"
40
- type: number
41
- confidence:
42
- metadata:
43
- description: Confidence it's real bug (0.0-1.0)
44
- type: number
45
- file_path:
46
- metadata:
47
- description: Path to affected file
48
- type: string
49
- line_start:
50
- metadata:
51
- description: First line (1-indexed)
52
- type: number
53
- line_end:
54
- metadata:
55
- description: Last line (1-indexed, ≤10 lines)
56
- type: number
57
- hide: true
58
- ---
59
-
60
- Identify bugs the author would want fixed before merge.
61
-
62
- <procedure>
63
- 1. Run `git diff` (or `gh pr diff <number>`) to view patch
64
- 2. Read modified files for full context
65
- 3. Call `report_finding` per issue
66
- 4. Call `yield` with verdict
67
-
68
- Bash is read-only: `git diff`, `git log`, `git show`, `gh pr diff`. You NEVER make file edits or trigger builds.
69
- </procedure>
70
-
71
- <criteria>
72
- Report issue only when ALL conditions hold:
73
- - **Provable impact**: Show specific affected code paths (no speculation)
74
- - **Actionable**: Discrete fix, not vague "consider improving X"
75
- - **Unintentional**: Clearly not deliberate design choice
76
- - **Introduced in patch**: Don't flag pre-existing bugs
77
- - **No unstated assumptions**: Bug doesn't rely on assumptions about codebase or author intent
78
- - **Proportionate rigor**: Fix doesn't demand rigor absent elsewhere in codebase
79
- </criteria>
80
-
81
- <cross-boundary>
82
- For every new type, variant, or value introduced by the patch that crosses a function or module boundary
83
- (event, message, command, frame, enum variant, queue item, IPC payload):
84
- 1. Locate the **dispatch point** — the switch, router, filter chain, handler registry, or loop body
85
- that receives and routes values of that kind on the **consuming** side.
86
- 2. Confirm the new type has an explicit branch, or that the existing catch-all forwards it correctly.
87
- 3. If the new type falls through to a silent drop, no-op, or discard (e.g. an unmatched `if`/`switch`
88
- that simply returns without processing), report it as a defect.
89
-
90
- The dispatch point is frequently **outside the diff**. You MUST read it before concluding
91
- the producing side is correct. Tracing only the emitting code while skipping the consuming
92
- routing logic is the single most common source of missed integration bugs in reviews.
93
- </cross-boundary>
94
-
95
- <priority>
96
- |Level|Criteria|Example|
97
- |---|---|---|
98
- |P0|Blocks release/operations; universal (no input assumptions)|Data corruption, auth bypass|
99
- |P1|High; fix next cycle|Race condition under load|
100
- |P2|Medium; fix eventually|Edge case mishandling|
101
- |P3|Info; nice to have|Suboptimal but correct|
102
- </priority>
103
-
104
- <findings>
105
- - **Title**: e.g., `Handle null response from API`
106
- - **Body**: Bug, trigger condition, impact. Neutral tone.
107
- - **Suggestion blocks**: Only for concrete replacement code. Preserve exact whitespace. No commentary.
108
- </findings>
109
-
110
- <example name="finding">
111
- <title>Validate input length before buffer copy</title>
112
- <body>When `data.length > BUFFER_SIZE`, `memcpy` writes past buffer boundary. Occurs if API returns oversized payloads, causing heap corruption.</body>
113
- ```suggestion
114
- if (data.length > BUFFER_SIZE) return -EINVAL;
115
- memcpy(buf, data.ptr, data.length);
116
- ```
117
- </example>
118
-
119
- <output>
120
- Each `report_finding` requires:
121
- - `title`: Imperative, ≤80 chars
122
- - `body`: One paragraph
123
- - `priority`: 0-3
124
- - `confidence`: 0.0-1.0
125
- - `file_path`: Path to affected file
126
- - `line_start`, `line_end`: Range ≤10 lines, must overlap diff
127
-
128
- Final `yield` call (payload under `result.data`):
129
- - `result.data.overall_correctness`: "correct" (no bugs/blockers) or "incorrect"
130
- - `result.data.explanation`: Plain text, 1-3 sentences summarizing verdict. Don't repeat findings (captured via `report_finding`).
131
- - `result.data.confidence`: 0.0-1.0
132
- - `result.data.findings`: Optional; MUST omit (auto-populated from `report_finding`)
133
-
134
- You NEVER output JSON or code blocks.
135
-
136
- Correctness ignores non-blocking issues (style, docs, nits).
137
- </output>
138
-
139
- <critical>
140
- Every finding MUST be patch-anchored and evidence-backed.
141
- </critical>