@gajae-code/coding-agent 0.5.1 → 0.5.2

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 (98) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/README.md +1 -1
  3. package/dist/types/cli/setup-cli.d.ts +8 -1
  4. package/dist/types/commands/setup.d.ts +7 -0
  5. package/dist/types/config/file-lock.d.ts +24 -2
  6. package/dist/types/config/model-registry.d.ts +4 -0
  7. package/dist/types/config/models-config-schema.d.ts +5 -0
  8. package/dist/types/config/settings-schema.d.ts +62 -0
  9. package/dist/types/gjc-runtime/state-writer.d.ts +64 -2
  10. package/dist/types/gjc-runtime/ultragoal-guard.d.ts +10 -0
  11. package/dist/types/gjc-runtime/ultragoal-runtime.d.ts +29 -0
  12. package/dist/types/modes/components/provider-onboarding-selector.d.ts +1 -1
  13. package/dist/types/modes/interactive-mode.d.ts +1 -1
  14. package/dist/types/modes/rpc/rpc-mode.d.ts +56 -1
  15. package/dist/types/modes/shared/agent-wire/unattended-session.d.ts +10 -0
  16. package/dist/types/modes/theme/defaults/index.d.ts +302 -0
  17. package/dist/types/modes/theme/theme.d.ts +1 -0
  18. package/dist/types/modes/types.d.ts +1 -1
  19. package/dist/types/session/history-storage.d.ts +2 -2
  20. package/dist/types/session/session-manager.d.ts +10 -1
  21. package/dist/types/setup/credential-import.d.ts +79 -0
  22. package/dist/types/task/executor.d.ts +1 -0
  23. package/dist/types/task/render.d.ts +1 -1
  24. package/dist/types/tools/subagent-render.d.ts +7 -1
  25. package/dist/types/tools/subagent.d.ts +21 -0
  26. package/dist/types/tools/ultragoal-ask-guard.d.ts +5 -0
  27. package/dist/types/web/search/index.d.ts +4 -4
  28. package/dist/types/web/search/provider.d.ts +16 -20
  29. package/dist/types/web/search/providers/base.d.ts +2 -1
  30. package/dist/types/web/search/providers/openai-compatible.d.ts +9 -0
  31. package/dist/types/web/search/types.d.ts +14 -2
  32. package/package.json +7 -7
  33. package/scripts/build-binary.ts +7 -0
  34. package/src/cli/args.ts +2 -0
  35. package/src/cli/fast-help.ts +2 -0
  36. package/src/cli/setup-cli.ts +138 -3
  37. package/src/commands/setup.ts +5 -1
  38. package/src/commands/ultragoal.ts +3 -1
  39. package/src/config/file-lock-gc.ts +14 -2
  40. package/src/config/file-lock.ts +54 -12
  41. package/src/config/model-profile-activation.ts +15 -3
  42. package/src/config/model-profiles.ts +15 -15
  43. package/src/config/model-registry.ts +21 -1
  44. package/src/config/models-config-schema.ts +1 -0
  45. package/src/config/settings-schema.ts +62 -0
  46. package/src/defaults/gjc/skills/ultragoal/SKILL.md +30 -8
  47. package/src/gjc-runtime/deep-interview-recorder.ts +40 -0
  48. package/src/gjc-runtime/launch-tmux.ts +3 -4
  49. package/src/gjc-runtime/ralplan-runtime.ts +174 -12
  50. package/src/gjc-runtime/state-runtime.ts +2 -1
  51. package/src/gjc-runtime/state-writer.ts +254 -7
  52. package/src/gjc-runtime/tmux-gc.ts +2 -1
  53. package/src/gjc-runtime/ultragoal-guard.ts +155 -0
  54. package/src/gjc-runtime/ultragoal-runtime.ts +1227 -31
  55. package/src/gjc-runtime/workflow-manifest.generated.json +44 -0
  56. package/src/gjc-runtime/workflow-manifest.ts +12 -0
  57. package/src/harness-control-plane/owner.ts +3 -2
  58. package/src/harness-control-plane/rpc-adapter.ts +1 -1
  59. package/src/hooks/skill-state.ts +121 -2
  60. package/src/internal-urls/docs-index.generated.ts +13 -9
  61. package/src/lsp/defaults.json +1 -0
  62. package/src/main.ts +14 -4
  63. package/src/modes/acp/acp-agent.ts +4 -2
  64. package/src/modes/bridge/bridge-mode.ts +2 -1
  65. package/src/modes/components/history-search.ts +5 -2
  66. package/src/modes/components/model-selector.ts +26 -0
  67. package/src/modes/components/provider-onboarding-selector.ts +6 -1
  68. package/src/modes/controllers/selector-controller.ts +80 -1
  69. package/src/modes/interactive-mode.ts +11 -1
  70. package/src/modes/rpc/rpc-mode.ts +132 -18
  71. package/src/modes/shared/agent-wire/command-dispatch.ts +5 -2
  72. package/src/modes/shared/agent-wire/host-tool-bridge.ts +3 -0
  73. package/src/modes/shared/agent-wire/unattended-session.ts +16 -1
  74. package/src/modes/theme/defaults/claude-code.json +100 -0
  75. package/src/modes/theme/defaults/codex.json +100 -0
  76. package/src/modes/theme/defaults/index.ts +6 -0
  77. package/src/modes/theme/defaults/opencode.json +102 -0
  78. package/src/modes/theme/theme.ts +2 -2
  79. package/src/modes/types.ts +1 -1
  80. package/src/prompts/agents/executor.md +5 -2
  81. package/src/sdk.ts +12 -1
  82. package/src/session/agent-session.ts +22 -11
  83. package/src/session/history-storage.ts +32 -11
  84. package/src/session/session-manager.ts +70 -18
  85. package/src/setup/credential-import.ts +429 -0
  86. package/src/skill-state/deep-interview-mutation-guard.ts +2 -1
  87. package/src/task/executor.ts +7 -1
  88. package/src/task/render.ts +18 -7
  89. package/src/tools/ask.ts +4 -2
  90. package/src/tools/cron.ts +1 -1
  91. package/src/tools/subagent-render.ts +119 -29
  92. package/src/tools/subagent.ts +147 -7
  93. package/src/tools/ultragoal-ask-guard.ts +39 -0
  94. package/src/web/search/index.ts +25 -25
  95. package/src/web/search/provider.ts +178 -87
  96. package/src/web/search/providers/base.ts +2 -1
  97. package/src/web/search/providers/openai-compatible.ts +151 -0
  98. package/src/web/search/types.ts +47 -22
@@ -1523,11 +1523,51 @@
1523
1523
  "name": "order-json",
1524
1524
  "type": "string"
1525
1525
  },
1526
+ {
1527
+ "appliesToVerbs": [
1528
+ "review"
1529
+ ],
1530
+ "name": "pr",
1531
+ "type": "string"
1532
+ },
1533
+ {
1534
+ "appliesToVerbs": [
1535
+ "review"
1536
+ ],
1537
+ "name": "branch",
1538
+ "type": "string"
1539
+ },
1540
+ {
1541
+ "appliesToVerbs": [
1542
+ "review"
1543
+ ],
1544
+ "name": "spec",
1545
+ "type": "string"
1546
+ },
1547
+ {
1548
+ "appliesToVerbs": [
1549
+ "review"
1550
+ ],
1551
+ "name": "executor-qa-json",
1552
+ "type": "string"
1553
+ },
1554
+ {
1555
+ "appliesToVerbs": [
1556
+ "review"
1557
+ ],
1558
+ "enumValues": [
1559
+ "review-only",
1560
+ "review-start"
1561
+ ],
1562
+ "name": "mode",
1563
+ "type": "enum"
1564
+ },
1526
1565
  {
1527
1566
  "appliesToVerbs": [
1528
1567
  "status",
1529
1568
  "create-goals",
1530
1569
  "complete-goals",
1570
+ "review",
1531
1571
  "checkpoint",
1532
1572
  "record-review-blockers",
1533
1573
  "steer"
@@ -1599,6 +1639,10 @@
1599
1639
  "name": "checkpoint",
1600
1640
  "surface": "command-positional"
1601
1641
  },
1642
+ {
1643
+ "name": "review",
1644
+ "surface": "command-positional"
1645
+ },
1602
1646
  {
1603
1647
  "name": "record-review-blockers",
1604
1648
  "surface": "command-positional"
@@ -235,6 +235,7 @@ export const WORKFLOW_MANIFEST: Record<CanonicalGjcWorkflowSkill, SkillManifest>
235
235
  "create-goals",
236
236
  "complete-goals",
237
237
  "checkpoint",
238
+ "review",
238
239
  "record-review-blockers",
239
240
  "steer",
240
241
  ]),
@@ -286,6 +287,16 @@ export const WORKFLOW_MANIFEST: Record<CanonicalGjcWorkflowSkill, SkillManifest>
286
287
  { name: "rationale", type: "string", appliesToVerbs: ["steer"] },
287
288
  { name: "replacements-json", type: "string", appliesToVerbs: ["steer"] },
288
289
  { name: "order-json", type: "string", appliesToVerbs: ["steer"] },
290
+ { name: "pr", type: "string", appliesToVerbs: ["review"] },
291
+ { name: "branch", type: "string", appliesToVerbs: ["review"] },
292
+ { name: "spec", type: "string", appliesToVerbs: ["review"] },
293
+ { name: "executor-qa-json", type: "string", appliesToVerbs: ["review"] },
294
+ {
295
+ name: "mode",
296
+ type: "enum",
297
+ enumValues: ["review-only", "review-start"],
298
+ appliesToVerbs: ["review"],
299
+ },
289
300
  {
290
301
  name: "json",
291
302
  type: "boolean",
@@ -293,6 +304,7 @@ export const WORKFLOW_MANIFEST: Record<CanonicalGjcWorkflowSkill, SkillManifest>
293
304
  "status",
294
305
  "create-goals",
295
306
  "complete-goals",
307
+ "review",
296
308
  "checkpoint",
297
309
  "record-review-blockers",
298
310
  "steer",
@@ -14,6 +14,7 @@
14
14
  import { execFileSync } from "node:child_process";
15
15
  import { randomBytes, randomUUID } from "node:crypto";
16
16
  import { existsSync } from "node:fs";
17
+ import type { AgentWireOwnerObservation } from "../modes/shared/agent-wire/event-contract";
17
18
  import { observeRpcOutboundFrame } from "../modes/shared/agent-wire/event-observation";
18
19
  import { classifyRecovery } from "./classifier";
19
20
  import { ControlServer, type EndpointRequest } from "./control-endpoint";
@@ -106,7 +107,7 @@ export class RuntimeOwner {
106
107
  #server: ControlServer;
107
108
  #cursor = 0;
108
109
  #leaseEpoch = 0;
109
- #heartbeatTimer: ReturnType<typeof setInterval> | null = null;
110
+ #heartbeatTimer: NodeJS.Timeout | null = null;
110
111
  #socketPath: string;
111
112
  #finalizeChecks?: FinalizeChecks;
112
113
  #validationCommands?: ValidationCommandSpec[];
@@ -199,7 +200,7 @@ export class RuntimeOwner {
199
200
  await this.#emit("info", "rpc_activity", { coalescedFrames });
200
201
  }
201
202
 
202
- async #emitMapped(mapped: NonNullable<ReturnType<typeof observeRpcOutboundFrame>>): Promise<void> {
203
+ async #emitMapped(mapped: AgentWireOwnerObservation): Promise<void> {
203
204
  if (mapped.kind === "rpc_agent_completed") {
204
205
  const state = await readSessionState(this.#opts.root, this.#opts.sessionId);
205
206
  if (
@@ -120,7 +120,7 @@ export class GajaeCodeRpc implements HarnessRpc {
120
120
  #waiters: {
121
121
  afterCursor: number;
122
122
  resolve: (v: { cursor: number } | null) => void;
123
- timer: ReturnType<typeof setTimeout>;
123
+ timer: NodeJS.Timeout;
124
124
  }[] = [];
125
125
  #frameListeners: ((frame: Record<string, unknown>) => void)[] = [];
126
126
  #lastFrameAt: string | null = null;
@@ -1,8 +1,10 @@
1
1
  import * as path from "node:path";
2
+ import { logger } from "@gajae-code/utils";
2
3
  import type { SkillDiscoverySettings } from "../config/skill-settings-defaults";
3
4
  import { ModeStateSchema, SkillActiveStateSchema } from "../gjc-runtime/state-schema";
4
5
  import { writeJsonAtomic, writeWorkflowEnvelopeAtomic } from "../gjc-runtime/state-writer";
5
6
  import { isUltragoalBypassPrompt, readUltragoalVerificationState } from "../gjc-runtime/ultragoal-guard";
7
+ import { getUltragoalRunCompletionState, readUltragoalPlan } from "../gjc-runtime/ultragoal-runtime";
6
8
  import { buildSessionContext, loadEntriesFromFile, type SessionEntry } from "../session/session-manager";
7
9
  import {
8
10
  readVisibleSkillActiveState as readCanonicalVisibleSkillActiveState,
@@ -221,7 +223,7 @@ function skillStatePath(stateDir: string, sessionId?: string): string {
221
223
  }
222
224
 
223
225
  function warnInvalidState(kind: string, filePath: string, error: string): void {
224
- console.warn(`gjc skill-state: invalid ${kind} at ${filePath}: ${error}`);
226
+ logger.warn(`gjc skill-state: invalid ${kind} at ${filePath}: ${error}`);
225
227
  }
226
228
 
227
229
  async function readValidatedJsonFile<T>(
@@ -480,6 +482,85 @@ function modeStateReleasesStop(state: ModeState | null, handoffRequired: boolean
480
482
  return false;
481
483
  }
482
484
 
485
+ /**
486
+ * Cross-file coherence guard for a mode-state that claims it releases the Stop
487
+ * block. `modeStateReleasesStop` trusts a single mode-state file; if any writer
488
+ * leaves that file stale or incoherent (e.g. `active:false` / a terminal phase
489
+ * after a `clear` while a new run's goals are still pending), trusting it alone
490
+ * silently defeats the Stop protection.
491
+ *
492
+ * This consults the authoritative durable state the Stop hook can already read
493
+ * and returns a block reason when that state contradicts the release. It stays
494
+ * cheap and read-only — ultragoal reads the durable plan; skills without an
495
+ * independent durable source release as before.
496
+ */
497
+ async function detectStaleModeStateRelease(skill: GjcWorkflowSkill, cwd: string): Promise<string | null> {
498
+ if (skill === "ultragoal") {
499
+ const plan = await readUltragoalPlan(cwd);
500
+ if (!plan) return null;
501
+ const runState = getUltragoalRunCompletionState(plan);
502
+ if (runState.incompleteGoals.length > 0) {
503
+ return `the durable Ultragoal plan still has incomplete required goals (${runState.incompleteGoals
504
+ .map(goal => goal.id)
505
+ .join(", ")}); run \`gjc ultragoal complete-goals\` to continue`;
506
+ }
507
+ }
508
+ return null;
509
+ }
510
+
511
+ /**
512
+ * Deep-interview terminal phases that represent an explicit abort/cancel rather
513
+ * than an ordinary stop. These are legitimate terminals even without a
514
+ * crystallized spec, so they must NOT be forced through crystallization.
515
+ */
516
+ const DEEP_INTERVIEW_ABORT_PHASES = new Set(["failed", "cancelled", "canceled"]);
517
+
518
+ /**
519
+ * A deep-interview run is "crystallized" once it has persisted a final spec.
520
+ * `persistDeepInterviewSpec` records the spec path in the mode-state and writes
521
+ * the artifact under `.gjc/specs/`, so a crystallized state carries a
522
+ * `spec_path` that still resolves to a real file. A bare `spec_path` with no
523
+ * backing file (deleted/stale/fabricated) does not count as crystallized.
524
+ */
525
+ async function deepInterviewSpecCrystallized(state: ModeState, cwd: string): Promise<boolean> {
526
+ const raw = state.spec_path;
527
+ const specPath = typeof raw === "string" ? raw.trim() : "";
528
+ if (!specPath) return false;
529
+ const resolved = path.isAbsolute(specPath) ? specPath : path.resolve(cwd, specPath);
530
+ try {
531
+ return await Bun.file(resolved).exists();
532
+ } catch {
533
+ return false;
534
+ }
535
+ }
536
+
537
+ /**
538
+ * Deep-interview-scoped terminalization guard (#674). An ordinary stop must not
539
+ * let a deep-interview run disappear as a generic stopped task while the user
540
+ * still needs the distilled interview state: when its mode-state would release
541
+ * the Stop block it must have actually crystallized the interview into a
542
+ * persisted spec/handoff. Explicit abort/cancel phases and the `active:false`
543
+ * demotion/clear outcome (the handoff/chain result) remain legitimate terminals.
544
+ * Returns a public-safe diagnostic that forces crystallization, or null to
545
+ * release. Scoped to deep-interview only — other workflows are untouched.
546
+ */
547
+ async function detectUncrystallizedDeepInterviewStop(
548
+ skill: GjcWorkflowSkill,
549
+ state: ModeState | null,
550
+ cwd: string,
551
+ ): Promise<string | null> {
552
+ if (skill !== "deep-interview") return null;
553
+ // active:false is the demotion/clear outcome (chain handoff or explicit
554
+ // clear already terminalized the run); a missing state blocks upstream.
555
+ if (state?.active !== true) return null;
556
+ const phase = String(state.current_phase ?? "")
557
+ .trim()
558
+ .toLowerCase();
559
+ if (DEEP_INTERVIEW_ABORT_PHASES.has(phase)) return null;
560
+ if (await deepInterviewSpecCrystallized(state, cwd)) return null;
561
+ return `the deep-interview run reached a terminal phase ("${phase || "unknown"}") without crystallizing a usable spec/handoff. Run \`gjc deep-interview --write --stage final\` (optionally \`--handoff ralplan\`) to persist the distilled interview spec, hand off through the deep-interview policy, or explicitly cancel/clear the interview before stopping`;
562
+ }
563
+
483
564
  async function readVisibleModeState(
484
565
  cwd: string,
485
566
  skill: GjcWorkflowSkill,
@@ -572,7 +653,45 @@ export async function buildSkillStopOutput(input: StopHookInput): Promise<Record
572
653
  ModeStateSchema,
573
654
  );
574
655
  const handoffRequired = isHandoffRequiredSkill(entry.skill);
575
- if (modeStateReleasesStop(modeState, handoffRequired)) continue;
656
+ if (modeStateReleasesStop(modeState, handoffRequired)) {
657
+ // A mode-state that claims it releases the Stop block must agree with
658
+ // authoritative durable state. If a stale/incoherent mode-state would
659
+ // release while the plan/ledger still shows pending work, block instead
660
+ // of trusting the single file (see #659).
661
+ const staleRelease = await detectStaleModeStateRelease(entry.skill, input.cwd);
662
+ if (staleRelease) {
663
+ const coherenceMessage = `GJC skill "${entry.skill}" mode-state reports it released the Stop block (${modeStatePath(
664
+ resolvedStateDir,
665
+ entry.skill,
666
+ input.sessionId,
667
+ )}), but ${staleRelease}. The mode-state is incoherent with authoritative durable state; finish or explicitly clear the pending work before stopping.`;
668
+ return {
669
+ decision: "block",
670
+ reason: coherenceMessage,
671
+ stopReason: `gjc_skill_${entry.skill.replace(/-/g, "_")}_stale_mode_state`,
672
+ systemMessage: coherenceMessage,
673
+ };
674
+ }
675
+ // Deep-interview must not terminalize through an ordinary stop without
676
+ // crystallizing its distilled interview state into a spec/handoff
677
+ // (explicit abort/cancel and the active:false demotion are preserved
678
+ // as legitimate terminals). See #674.
679
+ const uncrystallized = await detectUncrystallizedDeepInterviewStop(entry.skill, modeState, input.cwd);
680
+ if (uncrystallized) {
681
+ const crystallizeMessage = `GJC deep-interview must crystallize before stopping (${modeStatePath(
682
+ resolvedStateDir,
683
+ entry.skill,
684
+ input.sessionId,
685
+ )}): ${uncrystallized}.`;
686
+ return {
687
+ decision: "block",
688
+ reason: crystallizeMessage,
689
+ stopReason: "gjc_skill_deep_interview_uncrystallized",
690
+ systemMessage: crystallizeMessage,
691
+ };
692
+ }
693
+ continue;
694
+ }
576
695
  const phase = String(modeState?.current_phase ?? entry.phase ?? skillState.phase ?? "active");
577
696
  const statePath = modeStatePath(resolvedStateDir, entry.skill, input.sessionId);
578
697
  if (entry.skill === "ultragoal") {