@oh-my-pi/pi-coding-agent 15.7.2 → 15.7.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 (160) hide show
  1. package/CHANGELOG.md +75 -6
  2. package/dist/types/cli/args.d.ts +1 -1
  3. package/dist/types/cli/extension-flags.d.ts +36 -0
  4. package/dist/types/config/config-file.d.ts +4 -0
  5. package/dist/types/config/file-lock.d.ts +23 -0
  6. package/dist/types/config/keybindings.d.ts +2 -1
  7. package/dist/types/config/model-registry.d.ts +6 -0
  8. package/dist/types/config/settings-schema.d.ts +88 -65
  9. package/dist/types/edit/hashline/diff.d.ts +3 -3
  10. package/dist/types/eval/__tests__/agent-bridge.test.d.ts +1 -0
  11. package/dist/types/eval/__tests__/budget-bridge.test.d.ts +1 -0
  12. package/dist/types/eval/__tests__/idle-timeout.test.d.ts +1 -0
  13. package/dist/types/eval/agent-bridge.d.ts +25 -0
  14. package/dist/types/eval/backend.d.ts +17 -2
  15. package/dist/types/eval/budget-bridge.d.ts +29 -0
  16. package/dist/types/eval/idle-timeout.d.ts +28 -0
  17. package/dist/types/eval/js/executor.d.ts +8 -0
  18. package/dist/types/eval/js/tool-bridge.d.ts +2 -1
  19. package/dist/types/eval/py/executor.d.ts +13 -0
  20. package/dist/types/exec/bash-executor.d.ts +1 -0
  21. package/dist/types/extensibility/custom-tools/types.d.ts +2 -2
  22. package/dist/types/extensibility/extensions/runner.d.ts +7 -0
  23. package/dist/types/extensibility/plugins/git-url.d.ts +11 -1
  24. package/dist/types/extensibility/plugins/manager.d.ts +12 -1
  25. package/dist/types/extensibility/shared-events.d.ts +2 -2
  26. package/dist/types/memory-backend/index.d.ts +1 -1
  27. package/dist/types/memory-backend/resolve.d.ts +1 -1
  28. package/dist/types/memory-backend/types.d.ts +3 -3
  29. package/dist/types/mnemopi/backend.d.ts +4 -0
  30. package/dist/types/mnemopi/config.d.ts +29 -0
  31. package/dist/types/mnemopi/state.d.ts +72 -0
  32. package/dist/types/modes/components/custom-editor.d.ts +2 -2
  33. package/dist/types/modes/components/omfg-panel.d.ts +19 -0
  34. package/dist/types/modes/controllers/command-controller.d.ts +7 -0
  35. package/dist/types/modes/controllers/input-controller.d.ts +1 -3
  36. package/dist/types/modes/controllers/omfg-controller.d.ts +10 -0
  37. package/dist/types/modes/controllers/omfg-rule.d.ts +26 -0
  38. package/dist/types/modes/gradient-highlight.d.ts +5 -1
  39. package/dist/types/modes/interactive-mode.d.ts +7 -3
  40. package/dist/types/modes/magic-keywords.d.ts +14 -0
  41. package/dist/types/modes/markdown-prose.d.ts +27 -0
  42. package/dist/types/modes/orchestrate.d.ts +7 -2
  43. package/dist/types/modes/shared.d.ts +1 -1
  44. package/dist/types/modes/turn-budget.d.ts +18 -0
  45. package/dist/types/modes/types.d.ts +7 -3
  46. package/dist/types/modes/ultrathink.d.ts +7 -2
  47. package/dist/types/modes/workflow.d.ts +15 -0
  48. package/dist/types/sdk.d.ts +13 -3
  49. package/dist/types/session/agent-session.d.ts +40 -17
  50. package/dist/types/session/session-manager.d.ts +18 -0
  51. package/dist/types/session/session-storage.d.ts +6 -0
  52. package/dist/types/session/shake-types.d.ts +24 -0
  53. package/dist/types/task/executor.d.ts +2 -2
  54. package/dist/types/tiny/models.d.ts +15 -1
  55. package/dist/types/tiny/title-protocol.d.ts +4 -0
  56. package/dist/types/tools/index.d.ts +19 -3
  57. package/dist/types/tools/memory-edit.d.ts +1 -1
  58. package/examples/sdk/09-api-keys-and-oauth.ts +2 -2
  59. package/package.json +10 -10
  60. package/src/autoresearch/tools/run-experiment.ts +45 -113
  61. package/src/cli/args.ts +39 -16
  62. package/src/cli/extension-flags.ts +48 -0
  63. package/src/cli/plugin-cli.ts +11 -2
  64. package/src/config/config-file.ts +98 -13
  65. package/src/config/file-lock.ts +60 -17
  66. package/src/config/keybindings.ts +78 -27
  67. package/src/config/model-registry.ts +7 -1
  68. package/src/config/settings-schema.ts +94 -67
  69. package/src/config/settings.ts +12 -0
  70. package/src/edit/hashline/diff.ts +81 -24
  71. package/src/edit/renderer.ts +16 -12
  72. package/src/eval/__tests__/agent-bridge.test.ts +433 -0
  73. package/src/eval/__tests__/budget-bridge.test.ts +69 -0
  74. package/src/eval/__tests__/idle-timeout.test.ts +66 -0
  75. package/src/eval/__tests__/shared-executors.test.ts +21 -0
  76. package/src/eval/agent-bridge.ts +295 -0
  77. package/src/eval/backend.ts +17 -2
  78. package/src/eval/budget-bridge.ts +48 -0
  79. package/src/eval/idle-timeout.ts +80 -0
  80. package/src/eval/js/executor.ts +35 -7
  81. package/src/eval/js/index.ts +2 -1
  82. package/src/eval/js/shared/prelude.txt +85 -1
  83. package/src/eval/js/tool-bridge.ts +9 -0
  84. package/src/eval/py/executor.ts +41 -14
  85. package/src/eval/py/index.ts +2 -1
  86. package/src/eval/py/prelude.py +132 -1
  87. package/src/exec/bash-executor.ts +2 -3
  88. package/src/extensibility/custom-tools/types.ts +2 -2
  89. package/src/extensibility/extensions/runner.ts +12 -2
  90. package/src/extensibility/plugins/git-url.ts +90 -4
  91. package/src/extensibility/plugins/manager.ts +103 -7
  92. package/src/extensibility/shared-events.ts +2 -2
  93. package/src/internal-urls/docs-index.generated.ts +88 -88
  94. package/src/main.ts +44 -55
  95. package/src/memory-backend/index.ts +1 -1
  96. package/src/memory-backend/resolve.ts +3 -3
  97. package/src/memory-backend/types.ts +3 -3
  98. package/src/{mnemosyne → mnemopi}/backend.ts +70 -70
  99. package/src/{mnemosyne → mnemopi}/config.ts +36 -36
  100. package/src/{mnemosyne → mnemopi}/state.ts +67 -67
  101. package/src/modes/components/agent-dashboard.ts +6 -6
  102. package/src/modes/components/custom-editor.ts +4 -11
  103. package/src/modes/components/extensions/state-manager.ts +3 -4
  104. package/src/modes/components/footer.ts +8 -9
  105. package/src/modes/components/hook-selector.ts +86 -20
  106. package/src/modes/components/oauth-selector.ts +93 -21
  107. package/src/modes/components/omfg-panel.ts +141 -0
  108. package/src/modes/components/settings-defs.ts +2 -2
  109. package/src/modes/components/tips.txt +2 -1
  110. package/src/modes/components/tool-execution.ts +38 -19
  111. package/src/modes/components/tree-selector.ts +4 -3
  112. package/src/modes/components/user-message-selector.ts +94 -19
  113. package/src/modes/components/user-message.ts +8 -1
  114. package/src/modes/controllers/command-controller.ts +57 -0
  115. package/src/modes/controllers/event-controller.ts +60 -2
  116. package/src/modes/controllers/input-controller.ts +14 -11
  117. package/src/modes/controllers/omfg-controller.ts +283 -0
  118. package/src/modes/controllers/omfg-rule.ts +647 -0
  119. package/src/modes/controllers/selector-controller.ts +1 -0
  120. package/src/modes/gradient-highlight.ts +23 -6
  121. package/src/modes/interactive-mode.ts +41 -7
  122. package/src/modes/magic-keywords.ts +20 -0
  123. package/src/modes/markdown-prose.ts +247 -0
  124. package/src/modes/orchestrate.ts +17 -11
  125. package/src/modes/shared.ts +3 -11
  126. package/src/modes/turn-budget.ts +31 -0
  127. package/src/modes/types.ts +7 -1
  128. package/src/modes/ultrathink.ts +16 -10
  129. package/src/modes/utils/hotkeys-markdown.ts +1 -1
  130. package/src/modes/workflow.ts +42 -0
  131. package/src/prompts/system/omfg-user.md +51 -0
  132. package/src/prompts/system/system-prompt.md +1 -0
  133. package/src/prompts/system/workflow-notice.md +70 -0
  134. package/src/prompts/tools/eval.md +13 -1
  135. package/src/prompts/tools/memory-edit.md +1 -1
  136. package/src/sdk.ts +63 -33
  137. package/src/session/agent-session.ts +373 -56
  138. package/src/session/session-manager.ts +32 -0
  139. package/src/session/session-storage.ts +68 -8
  140. package/src/session/shake-types.ts +44 -0
  141. package/src/slash-commands/builtin-registry.ts +41 -16
  142. package/src/task/executor.ts +3 -3
  143. package/src/task/index.ts +6 -6
  144. package/src/tiny/models.ts +30 -2
  145. package/src/tiny/title-protocol.ts +11 -1
  146. package/src/tiny/worker.ts +19 -7
  147. package/src/tools/eval.ts +202 -26
  148. package/src/tools/grouped-file-output.ts +9 -2
  149. package/src/tools/index.ts +17 -5
  150. package/src/tools/memory-edit.ts +4 -4
  151. package/src/tools/memory-recall.ts +5 -5
  152. package/src/tools/memory-reflect.ts +5 -5
  153. package/src/tools/memory-retain.ts +4 -4
  154. package/src/tools/render-utils.ts +2 -1
  155. package/src/tools/search.ts +480 -76
  156. package/dist/types/mnemosyne/backend.d.ts +0 -4
  157. package/dist/types/mnemosyne/config.d.ts +0 -29
  158. package/dist/types/mnemosyne/state.d.ts +0 -72
  159. /package/dist/types/{mnemosyne → mnemopi}/index.d.ts +0 -0
  160. /package/src/{mnemosyne → mnemopi}/index.ts +0 -0
package/src/cli/args.ts CHANGED
@@ -54,7 +54,12 @@ export interface Args {
54
54
  unknownFlags: Map<string, boolean | string>;
55
55
  }
56
56
 
57
- export function parseArgs(args: string[], extensionFlags?: Map<string, { type: "boolean" | "string" }>): Args {
57
+ export function parseArgs(inputArgs: string[], extensionFlags?: Map<string, { type: "boolean" | "string" }>): Args {
58
+ // Work on a copy: the `--option=value` handling below splices the value
59
+ // into the array, and callers reuse the same argv (the post-extension
60
+ // reparse in `runRootCommand` parses it a second time). Mutating the input
61
+ // would corrupt that later parse, so never touch the caller's array.
62
+ const args = [...inputArgs];
58
63
  const result: Args = {
59
64
  messages: [],
60
65
  fileArgs: [],
@@ -63,17 +68,41 @@ export function parseArgs(args: string[], extensionFlags?: Map<string, { type: "
63
68
 
64
69
  for (let i = 0; i < args.length; i++) {
65
70
  let arg = args[i];
71
+ const flagIndex = i;
66
72
 
67
- // Support --flag=value syntax (e.g. --tools=ask,read)
73
+ // Support --flag=value syntax (e.g. --tools=ask,read). The value is
74
+ // spliced in as the next token so value-consuming flags pick it up via
75
+ // `args[++i]`; a non-consuming flag (e.g. a boolean) leaves it behind and
76
+ // the post-loop guard drops it so it is not mistaken for a message.
77
+ let equalsValueIndex = -1;
68
78
  if (arg.startsWith("--") && arg.includes("=")) {
69
79
  const eqIdx = arg.indexOf("=");
70
80
  const value = arg.slice(eqIdx + 1);
71
81
  arg = arg.slice(0, eqIdx);
72
- // Insert the value so the existing "args[++i]" logic picks it up
73
82
  args.splice(i + 1, 0, value);
83
+ equalsValueIndex = i + 1;
74
84
  }
75
85
 
76
- if (arg === "--help" || arg === "-h") {
86
+ // Extension-registered flags take precedence over built-ins: a flag an
87
+ // extension owns (e.g. plan-mode's boolean `--plan`) is parsed with the
88
+ // extension's semantics rather than falling into a built-in branch. For a
89
+ // value-taking built-in (`--plan`, `--model`, …) that branch would consume
90
+ // the following token — eating the user's message and setting the wrong
91
+ // built-in field — so registered flags shadow same-named built-ins here.
92
+ const extFlag = arg.startsWith("--") ? extensionFlags?.get(arg.slice(2)) : undefined;
93
+ if (extFlag) {
94
+ const flagName = arg.slice(2);
95
+ if (extFlag.type === "boolean") {
96
+ result.unknownFlags.set(flagName, true);
97
+ } else if (extFlag.type === "string" && i + 1 < args.length) {
98
+ // Consume the value in `--flag=value` form, or when the next token is
99
+ // not flag-looking. A `-`-prefixed token in space form is left to be
100
+ // its own flag; pass a flag-looking value as `--flag=value`.
101
+ if (equalsValueIndex !== -1 || !args[i + 1].startsWith("-")) {
102
+ result.unknownFlags.set(flagName, args[++i]);
103
+ }
104
+ }
105
+ } else if (arg === "--help" || arg === "-h") {
77
106
  result.help = true;
78
107
  } else if (arg === "--version" || arg === "-v") {
79
108
  result.version = true;
@@ -198,21 +227,15 @@ export function parseArgs(args: string[], extensionFlags?: Map<string, { type: "
198
227
  }
199
228
  } else if (arg.startsWith("@")) {
200
229
  result.fileArgs.push(arg.slice(1)); // Remove @ prefix
201
- } else if (arg.startsWith("--") && extensionFlags) {
202
- // Check if it's an extension-registered flag
203
- const flagName = arg.slice(2);
204
- const extFlag = extensionFlags.get(flagName);
205
- if (extFlag) {
206
- if (extFlag.type === "boolean") {
207
- result.unknownFlags.set(flagName, true);
208
- } else if (extFlag.type === "string" && i + 1 < args.length) {
209
- result.unknownFlags.set(flagName, args[++i]);
210
- }
211
- }
212
- // Unknown flags without extensionFlags are silently ignored (first pass)
213
230
  } else if (!arg.startsWith("-")) {
214
231
  result.messages.push(arg);
215
232
  }
233
+ // Drop an unconsumed `--flag=value` value (e.g. a boolean flag): when no
234
+ // branch advanced past the spliced token, remove it so it does not fall
235
+ // through to a later iteration and become a positional message.
236
+ if (equalsValueIndex !== -1 && i === flagIndex) {
237
+ args.splice(equalsValueIndex, 1);
238
+ }
216
239
  }
217
240
 
218
241
  return result;
@@ -0,0 +1,48 @@
1
+ import { type Args, parseArgs } from "./args";
2
+
3
+ /**
4
+ * Minimal extension-runner surface needed to resolve CLI flag values. The real
5
+ * `ExtensionRunner` satisfies this structurally; depending only on the surface
6
+ * keeps this module free of the heavier runner/session imports and unit-testable
7
+ * with a fake.
8
+ */
9
+ export interface ExtensionFlagSink {
10
+ getFlags(): Map<string, { type: "boolean" | "string" }>;
11
+ setFlagValue(name: string, value: boolean | string): void;
12
+ }
13
+
14
+ /**
15
+ * Resolve extension-registered CLI flags from `rawArgs` once the flag set is
16
+ * known, push the resolved values onto the sink, and return the parsed
17
+ * {@link Args} (whose `messages` and `fileArgs` now reflect those flags).
18
+ *
19
+ * The startup parse runs before extensions load, so it cannot recognise their
20
+ * flags: a string flag's value (`--spawn-peer reviewer` or `--spawn-peer=reviewer`)
21
+ * is otherwise left in `messages` and leaks into the initial prompt. Re-parsing
22
+ * here — through the *same* {@link parseArgs} the startup pass uses, now seeded
23
+ * with the registered flags — consumes every flag form (`--flag`, `--flag value`,
24
+ * `--flag=value`).
25
+ *
26
+ * {@link parseArgs} lets a registered flag shadow a same-named built-in, so even
27
+ * a built-in-colliding flag (e.g. plan-mode's boolean `--plan`, which would
28
+ * otherwise hit the built-in plan-model branch) is parsed with the extension's
29
+ * semantics and surfaces in `unknownFlags` — without consuming the following
30
+ * message or overwriting the built-in field. No built-in name list to maintain.
31
+ *
32
+ * Returns `null` when there is no sink or no registered extension flags, in
33
+ * which case the caller keeps its original startup parse (an extension-aware
34
+ * re-parse would be identical anyway).
35
+ */
36
+ export function applyExtensionFlags(runner: ExtensionFlagSink | undefined, rawArgs: string[]): Args | null {
37
+ const extensionFlags = runner?.getFlags();
38
+ if (!runner || !extensionFlags || extensionFlags.size === 0) {
39
+ return null;
40
+ }
41
+ const parsed = parseArgs(rawArgs, extensionFlags);
42
+ // `parseArgs` only records registered extension flags in `unknownFlags`, so
43
+ // every entry here is a flag this runner owns that was actually passed.
44
+ for (const [name, value] of parsed.unknownFlags) {
45
+ runner.setFlagValue(name, value);
46
+ }
47
+ return parsed;
48
+ }
@@ -348,10 +348,12 @@ async function handleInstall(
348
348
  flags: { json?: boolean; force?: boolean; dryRun?: boolean; scope?: "user" | "project" },
349
349
  ): Promise<void> {
350
350
  if (packages.length === 0) {
351
- console.error(chalk.red(`Usage: ${APP_NAME} plugin install <package[@version]>[features] ...`));
351
+ console.error(chalk.red(`Usage: ${APP_NAME} plugin install <source>[features] ...`));
352
352
  console.error(chalk.dim("Examples:"));
353
353
  console.error(chalk.dim(` ${APP_NAME} plugin install @oh-my-pi/exa`));
354
354
  console.error(chalk.dim(` ${APP_NAME} plugin install name@marketplace`));
355
+ console.error(chalk.dim(` ${APP_NAME} plugin install github:user/repo`));
356
+ console.error(chalk.dim(` ${APP_NAME} plugin install https://github.com/user/repo#v1.0`));
355
357
  process.exit(1);
356
358
  }
357
359
 
@@ -898,7 +900,7 @@ export function printPluginHelp(): void {
898
900
  console.log(`${chalk.bold(`${APP_NAME} plugin`)} - Plugin lifecycle management
899
901
 
900
902
  ${chalk.bold("Commands:")}
901
- install <pkg[@ver]>[features] Install plugins from npm
903
+ install <source>[features] Install plugins from npm, GitHub, or git URL
902
904
  uninstall <pkg> Remove plugins
903
905
  list Show installed plugins
904
906
  link <path> Link local plugin for development
@@ -916,6 +918,12 @@ ${chalk.bold("Feature Syntax:")}
916
918
  pkg[*] Install with all features
917
919
  pkg[] Install with no optional features
918
920
 
921
+ ${chalk.bold("Sources:")}
922
+ pkg, pkg@1.2.3 npm package (optionally pinned)
923
+ github:user/repo[#ref] GitHub shorthand (also gitlab:, bitbucket:, codeberg:, sourcehut:)
924
+ https://github.com/user/repo Full git URL (https, ssh, or git protocol)
925
+ name@marketplace Marketplace plugin (see marketplace command)
926
+
919
927
  ${chalk.bold("Config Subcommands:")}
920
928
  config list <pkg> List all settings
921
929
  config get <pkg> <key> Get a setting value
@@ -938,5 +946,6 @@ ${chalk.bold("Examples:")}
938
946
  ${APP_NAME} plugin config set my-plugin apiKey sk-xxx
939
947
  ${APP_NAME} plugin doctor --fix
940
948
  ${APP_NAME} plugin install --scope project name@marketplace
949
+ ${APP_NAME} plugin install github:user/repo#v1.0
941
950
  `);
942
951
  }
@@ -10,18 +10,44 @@ interface ConfigSchemaError {
10
10
  message: string | undefined;
11
11
  }
12
12
 
13
+ /**
14
+ * Module-private cache of (jsonPath, ymlPath) pairs we already migrated this
15
+ * process. Prevents `ConfigFile.relocate()` / repeated `tryLoad()` calls from
16
+ * re-running the migration over and over on the boot path.
17
+ */
18
+ const migratedPaths = new Set<string>();
19
+
20
+ function migrationKey(jsonPath: string, ymlPath: string): string {
21
+ return `${jsonPath}\u0000${ymlPath}`;
22
+ }
23
+
24
+ /**
25
+ * Synchronous JSON → YAML migration kept for callers that still want the
26
+ * eager path (settings init, tests that observe migration completion).
27
+ * Idempotent — re-running is a no-op.
28
+ */
13
29
  function migrateJsonToYml(jsonPath: string, ymlPath: string) {
30
+ const key = migrationKey(jsonPath, ymlPath);
31
+ if (migratedPaths.has(key)) return;
14
32
  try {
15
- if (fs.existsSync(ymlPath)) return;
16
- if (!fs.existsSync(jsonPath)) return;
33
+ if (fs.existsSync(ymlPath)) {
34
+ migratedPaths.add(key);
35
+ return;
36
+ }
37
+ if (!fs.existsSync(jsonPath)) {
38
+ migratedPaths.add(key);
39
+ return;
40
+ }
17
41
 
18
42
  const content = fs.readFileSync(jsonPath, "utf-8");
19
43
  const parsed = JSON.parse(content);
20
44
  if (!parsed) {
21
45
  logger.warn("migrateJsonToYml: invalid json structure", { path: jsonPath });
46
+ migratedPaths.add(key);
22
47
  return;
23
48
  }
24
49
  fs.writeFileSync(ymlPath, YAML.stringify(parsed, null, 2));
50
+ migratedPaths.add(key);
25
51
  } catch (error) {
26
52
  logger.warn("migrateJsonToYml: migration failed", { error: String(error) });
27
53
  }
@@ -97,6 +123,7 @@ export type LoadResult<T> =
97
123
 
98
124
  export class ConfigFile<T> implements IConfigFile<T> {
99
125
  readonly #basePath: string;
126
+ readonly #jsonMigrationPath: string | null;
100
127
  #cache?: LoadResult<T>;
101
128
  #auxValidate?: (value: T) => void;
102
129
 
@@ -107,22 +134,32 @@ export class ConfigFile<T> implements IConfigFile<T> {
107
134
  ) {
108
135
  this.#basePath = configPath;
109
136
  if (configPath.endsWith(".yml")) {
110
- const jsonPath = `${configPath.slice(0, -4)}.json`;
111
- migrateJsonToYml(jsonPath, configPath);
137
+ this.#jsonMigrationPath = `${configPath.slice(0, -4)}.json`;
112
138
  } else if (configPath.endsWith(".yaml")) {
113
- const jsonPath = `${configPath.slice(0, -5)}.json`;
114
- migrateJsonToYml(jsonPath, configPath);
139
+ this.#jsonMigrationPath = `${configPath.slice(0, -5)}.json`;
115
140
  } else if (configPath.endsWith(".json") || configPath.endsWith(".jsonc")) {
116
141
  // JSON configs are still supported without migration.
142
+ this.#jsonMigrationPath = null;
117
143
  } else {
118
144
  throw new Error(`Invalid config file path: ${configPath}`);
119
145
  }
120
146
  }
121
147
 
148
+ /**
149
+ * Run the JSON → YAML migration synchronously, if applicable. Idempotent.
150
+ * Sync callers (tests, settings init) hit this implicitly via {@link tryLoad}.
151
+ */
152
+ #ensureMigrated(): void {
153
+ if (this.#jsonMigrationPath) {
154
+ migrateJsonToYml(this.#jsonMigrationPath, this.#basePath);
155
+ }
156
+ }
157
+
122
158
  relocate(configPath?: string): ConfigFile<T> {
123
159
  if (!configPath || configPath === this.#basePath) return this;
124
160
  const result = new ConfigFile<T>(this.id, this.schema, configPath);
125
161
  result.#auxValidate = this.#auxValidate;
162
+ result.#ensureMigrated();
126
163
  return result;
127
164
  }
128
165
 
@@ -135,6 +172,13 @@ export class ConfigFile<T> implements IConfigFile<T> {
135
172
  }
136
173
  }
137
174
 
175
+ async getMtimeMsAsync(): Promise<number | null> {
176
+ const file = Bun.file(this.path());
177
+ if (!(await file.exists())) return null;
178
+ const lm = file.lastModified;
179
+ return typeof lm === "number" && Number.isFinite(lm) ? lm : null;
180
+ }
181
+
138
182
  withValidation(name: string, validate: (value: T) => void): this {
139
183
  const prev = this.#auxValidate;
140
184
  this.#auxValidate = (value: T) => {
@@ -164,12 +208,8 @@ export class ConfigFile<T> implements IConfigFile<T> {
164
208
  return result;
165
209
  }
166
210
 
167
- tryLoad(): LoadResult<T> {
168
- if (this.#cache) return this.#cache;
169
-
211
+ #parseContent(content: string): LoadResult<T> {
170
212
  try {
171
- const content = fs.readFileSync(this.path(), "utf-8").trim();
172
-
173
213
  let parsed: unknown;
174
214
  if (this.#basePath.endsWith(".json") || this.#basePath.endsWith(".jsonc")) {
175
215
  parsed = JSONC.parse(content);
@@ -202,26 +242,71 @@ export class ConfigFile<T> implements IConfigFile<T> {
202
242
  return this.#storeCache({ error: wrapped, status: "error" });
203
243
  }
204
244
  return this.#storeCache({ value, status: "ok" });
245
+ } catch (error) {
246
+ logger.warn("Failed to parse config file", { path: this.path(), error });
247
+ return this.#storeCache({
248
+ error: new ConfigError(this.id, undefined, { err: error, stage: "Unexpected" }),
249
+ status: "error",
250
+ });
251
+ }
252
+ }
253
+
254
+ tryLoad(): LoadResult<T> {
255
+ if (this.#cache) return this.#cache;
256
+ this.#ensureMigrated();
257
+
258
+ let content: string;
259
+ try {
260
+ content = fs.readFileSync(this.path(), "utf-8").trim();
205
261
  } catch (error) {
206
262
  if (isEnoent(error)) {
207
263
  return this.#storeCache({ status: "not-found" });
208
264
  }
209
- logger.warn("Failed to parse config file", { path: this.path(), error });
265
+ logger.warn("Failed to read config file", { path: this.path(), error });
210
266
  return this.#storeCache({
211
- error: new ConfigError(this.id, undefined, { err: error, stage: "Unexpected" }),
267
+ error: new ConfigError(this.id, undefined, { err: error, stage: "Read" }),
268
+ status: "error",
269
+ });
270
+ }
271
+ return this.#parseContent(content);
272
+ }
273
+
274
+ async tryLoadAsync(): Promise<LoadResult<T>> {
275
+ if (this.#cache) return this.#cache;
276
+ this.#ensureMigrated();
277
+
278
+ let content: string;
279
+ try {
280
+ content = (await Bun.file(this.path()).text()).trim();
281
+ } catch (error) {
282
+ if (isEnoent(error)) {
283
+ return this.#storeCache({ status: "not-found" });
284
+ }
285
+ logger.warn("Failed to read config file", { path: this.path(), error });
286
+ return this.#storeCache({
287
+ error: new ConfigError(this.id, undefined, { err: error, stage: "Read" }),
212
288
  status: "error",
213
289
  });
214
290
  }
291
+ return this.#parseContent(content);
215
292
  }
216
293
 
217
294
  load(): T | null {
218
295
  return this.tryLoad().value ?? null;
219
296
  }
220
297
 
298
+ async loadAsync(): Promise<T | null> {
299
+ return (await this.tryLoadAsync()).value ?? null;
300
+ }
301
+
221
302
  loadOrDefault(): T {
222
303
  return this.tryLoad().value ?? this.createDefault();
223
304
  }
224
305
 
306
+ async loadOrDefaultAsync(): Promise<T> {
307
+ return (await this.tryLoadAsync()).value ?? this.createDefault();
308
+ }
309
+
225
310
  path(): string {
226
311
  return this.#basePath;
227
312
  }
@@ -1,5 +1,6 @@
1
+ import { randomUUID } from "node:crypto";
1
2
  import * as fs from "node:fs/promises";
2
- import { isEnoent } from "@oh-my-pi/pi-utils";
3
+ import { isEnoent, logger } from "@oh-my-pi/pi-utils";
3
4
 
4
5
  export interface FileLockOptions {
5
6
  staleMs?: number;
@@ -16,14 +17,15 @@ const DEFAULT_OPTIONS: Required<FileLockOptions> = {
16
17
  interface LockInfo {
17
18
  pid: number;
18
19
  timestamp: number;
20
+ token: string;
19
21
  }
20
22
 
21
23
  function getLockPath(filePath: string): string {
22
24
  return `${filePath}.lock`;
23
25
  }
24
26
 
25
- async function writeLockInfo(lockPath: string): Promise<void> {
26
- const info: LockInfo = { pid: process.pid, timestamp: Date.now() };
27
+ async function writeLockInfo(lockPath: string, token: string): Promise<void> {
28
+ const info: LockInfo = { pid: process.pid, timestamp: Date.now(), token };
27
29
  await Bun.write(`${lockPath}/info`, JSON.stringify(info));
28
30
  }
29
31
 
@@ -47,33 +49,58 @@ function isProcessAlive(pid: number): boolean {
47
49
 
48
50
  async function isLockStale(lockPath: string, staleMs: number): Promise<boolean> {
49
51
  const info = await readLockInfo(lockPath);
50
- if (!info) return true;
51
-
52
- if (!isProcessAlive(info.pid)) return true;
53
-
54
- if (Date.now() - info.timestamp > staleMs) return true;
52
+ if (info) {
53
+ if (!isProcessAlive(info.pid)) return true;
54
+ if (Date.now() - info.timestamp > staleMs) return true;
55
+ return false;
56
+ }
55
57
 
56
- return false;
58
+ // No info file. Either the lock holder is between mkdir and writeLockInfo
59
+ // (fresh dir, do not reap) or the dir was already removed (also do not
60
+ // reap — there is nothing to clean up, and an unguarded fs.rm here would
61
+ // race with another contender's successful mkdir and wipe their dir).
62
+ try {
63
+ const stat = await fs.stat(lockPath);
64
+ return Date.now() - stat.mtimeMs > staleMs;
65
+ } catch (err) {
66
+ if (isEnoent(err)) return false;
67
+ throw err;
68
+ }
57
69
  }
58
70
 
59
- async function tryAcquireLock(lockPath: string): Promise<boolean> {
71
+ async function tryAcquireLock(lockPath: string): Promise<string | null> {
60
72
  try {
61
73
  await fs.mkdir(lockPath);
62
- await writeLockInfo(lockPath);
63
- return true;
74
+ const token = randomUUID();
75
+ await writeLockInfo(lockPath, token);
76
+ return token;
64
77
  } catch (error) {
65
78
  if ((error as NodeJS.ErrnoException).code === "EEXIST") {
66
- return false;
79
+ return null;
67
80
  }
68
81
  throw error;
69
82
  }
70
83
  }
71
84
 
72
- async function releaseLock(lockPath: string): Promise<void> {
85
+ async function releaseLock(lockPath: string, expectedToken?: string): Promise<void> {
73
86
  try {
87
+ if (expectedToken !== undefined) {
88
+ const info = await readLockInfo(lockPath);
89
+ if (!info || info.token !== expectedToken) {
90
+ // We are not the owner. The lock either expired and was reaped
91
+ // or another process has reclaimed it. Do nothing — releasing
92
+ // here would wipe the rightful owner's lock.
93
+ logger.debug("file-lock: skipping release for non-owned lock", {
94
+ lockPath,
95
+ expectedToken,
96
+ actualToken: info?.token,
97
+ });
98
+ return;
99
+ }
100
+ }
74
101
  await fs.rm(lockPath, { recursive: true });
75
102
  } catch {
76
- // Ignore errors on release
103
+ // Ignore errors on release.
77
104
  }
78
105
  }
79
106
 
@@ -92,11 +119,14 @@ async function acquireLock(filePath: string, options: FileLockOptions = {}): Pro
92
119
  const lockPath = getLockPath(filePath);
93
120
 
94
121
  for (let attempt = 0; attempt < opts.retries; attempt++) {
95
- if (await tryAcquireLock(lockPath)) {
96
- return () => releaseLock(lockPath);
122
+ const token = await tryAcquireLock(lockPath);
123
+ if (token !== null) {
124
+ return () => releaseLock(lockPath, token);
97
125
  }
98
126
 
99
127
  if ((await lockExists(lockPath)) && (await isLockStale(lockPath, opts.staleMs))) {
128
+ // Reaping a stale lock — no token because we didn't acquire it. The
129
+ // rightful owner is presumed dead; rm without ownership check.
100
130
  await releaseLock(lockPath);
101
131
  continue;
102
132
  }
@@ -119,3 +149,16 @@ export async function withFileLock<T>(
119
149
  await release();
120
150
  }
121
151
  }
152
+
153
+ /**
154
+ * Test-only handles for the internal lock primitives. These are NOT part of
155
+ * the public API — they exist so the contract tests can validate token-keyed
156
+ * release semantics and the mkdir-race window without re-implementing them.
157
+ */
158
+ export const __internalsForTesting = {
159
+ tryAcquireLock,
160
+ releaseLock,
161
+ readLockInfo,
162
+ isLockStale,
163
+ getLockPath,
164
+ };
@@ -1,4 +1,4 @@
1
- import { existsSync, readFileSync, writeFileSync } from "node:fs";
1
+ import * as fs from "node:fs";
2
2
  import * as path from "node:path";
3
3
  import {
4
4
  type Keybinding,
@@ -10,6 +10,7 @@ import {
10
10
  KeybindingsManager as TuiKeybindingsManager,
11
11
  } from "@oh-my-pi/pi-tui";
12
12
  import { getAgentDir, isEnoent, logger } from "@oh-my-pi/pi-utils";
13
+ import { YAML } from "bun";
13
14
 
14
15
  /**
15
16
  * Application-level keybindings (coding agent specific).
@@ -330,17 +331,29 @@ function orderKeybindingsConfig(config: KeybindingsConfig): KeybindingsConfig {
330
331
  return ordered;
331
332
  }
332
333
 
334
+ const KEYBINDINGS_YML = "keybindings.yml";
335
+ const KEYBINDINGS_YAML = "keybindings.yaml";
336
+ const LEGACY_KEYBINDINGS_JSON = "keybindings.json";
337
+
338
+ interface KeybindingsConfigPaths {
339
+ readPath: string;
340
+ writeBackPath: string;
341
+ }
342
+
333
343
  /**
334
344
  * Load raw config from a file synchronously.
335
- * Returns parsed JSON or null if file doesn't exist or is invalid.
345
+ * Returns parsed JSON/YAML or null if file doesn't exist or is invalid.
336
346
  */
337
347
  function loadRawConfig(filePath: string): unknown {
338
348
  try {
339
- if (!existsSync(filePath)) {
340
- return null;
349
+ const content = fs.readFileSync(filePath, "utf-8");
350
+ if (filePath.endsWith(".json")) {
351
+ return JSON.parse(content);
352
+ }
353
+ if (filePath.endsWith(".yml") || filePath.endsWith(".yaml")) {
354
+ return YAML.parse(content);
341
355
  }
342
- const content = readFileSync(filePath, "utf-8");
343
- return JSON.parse(content);
356
+ throw new Error(`Unsupported keybindings config extension: ${filePath}`);
344
357
  } catch (error) {
345
358
  if (isEnoent(error)) {
346
359
  return null;
@@ -350,34 +363,67 @@ function loadRawConfig(filePath: string): unknown {
350
363
  }
351
364
  }
352
365
 
366
+ function writeKeybindingsConfig(filePath: string, config: KeybindingsConfig): boolean {
367
+ try {
368
+ fs.writeFileSync(filePath, YAML.stringify(config, null, 2), "utf-8");
369
+ logger.debug("Migrated keybindings config", { path: filePath });
370
+ return true;
371
+ } catch (error) {
372
+ logger.warn("Failed to write migrated keybindings config", { path: filePath, error: String(error) });
373
+ return false;
374
+ }
375
+ }
376
+
377
+ function resolveKeybindingsConfigPaths(agentDir: string): KeybindingsConfigPaths {
378
+ const ymlPath = path.join(agentDir, KEYBINDINGS_YML);
379
+ if (fs.existsSync(ymlPath)) {
380
+ return { readPath: ymlPath, writeBackPath: ymlPath };
381
+ }
382
+
383
+ const yamlPath = path.join(agentDir, KEYBINDINGS_YAML);
384
+ if (fs.existsSync(yamlPath)) {
385
+ return { readPath: yamlPath, writeBackPath: yamlPath };
386
+ }
387
+
388
+ const jsonPath = path.join(agentDir, LEGACY_KEYBINDINGS_JSON);
389
+ if (fs.existsSync(jsonPath)) {
390
+ return { readPath: jsonPath, writeBackPath: ymlPath };
391
+ }
392
+
393
+ return { readPath: ymlPath, writeBackPath: ymlPath };
394
+ }
395
+
353
396
  /**
354
- * Migrate keybindings config file from old format to new.
355
- * Reads from agentDir/keybindings.json, migrates old names, and writes back.
397
+ * Load and migrate keybindings config.
398
+ * Legacy JSON is read for compatibility, but successful write-back goes to YAML.
356
399
  */
357
- function loadKeybindingsConfig(filePath: string, writeBack: boolean): KeybindingsConfig {
400
+ function loadKeybindingsConfig(
401
+ filePath: string,
402
+ writeBackPath: string | undefined,
403
+ ): {
404
+ config: KeybindingsConfig;
405
+ persistedPath: string;
406
+ } {
358
407
  const rawConfig = loadRawConfig(filePath);
359
408
 
360
409
  if (rawConfig === null) {
361
- return {};
410
+ return { config: {}, persistedPath: filePath };
362
411
  }
363
412
 
364
413
  const { config: migratedConfig, migrated } = migrateKeybindingNames(rawConfig);
365
- if (writeBack && migrated) {
414
+ const shouldWriteBack = writeBackPath !== undefined && (migrated || writeBackPath !== filePath);
415
+ if (shouldWriteBack) {
366
416
  const ordered = orderKeybindingsConfig(migratedConfig);
367
- try {
368
- writeFileSync(filePath, `${JSON.stringify(ordered, null, 2)}\n`, "utf-8");
369
- logger.debug("Migrated keybindings config", { path: filePath });
370
- } catch (error) {
371
- logger.warn("Failed to write migrated keybindings config", { path: filePath, error: String(error) });
372
- }
417
+ const persistedPath = writeKeybindingsConfig(writeBackPath, ordered) ? writeBackPath : filePath;
418
+ return { config: migratedConfig, persistedPath };
373
419
  }
374
420
 
375
- return migratedConfig;
421
+ return { config: migratedConfig, persistedPath: filePath };
376
422
  }
377
423
 
378
424
  function migrateKeybindingsConfigFile(agentDir: string): void {
379
- const configPath = path.join(agentDir, "keybindings.json");
380
- loadKeybindingsConfig(configPath, true);
425
+ const { readPath, writeBackPath } = resolveKeybindingsConfigPaths(agentDir);
426
+ loadKeybindingsConfig(readPath, writeBackPath);
381
427
  }
382
428
 
383
429
  /**
@@ -393,12 +439,13 @@ export class KeybindingsManager extends TuiKeybindingsManager {
393
439
  }
394
440
 
395
441
  /**
396
- * Create from config file at agentDir/keybindings.json.
442
+ * Create from config file at agentDir/keybindings.yml.
443
+ * Legacy keybindings.json is migrated to keybindings.yml on load.
397
444
  */
398
445
  static create(agentDir: string = getAgentDir()): KeybindingsManager {
399
- const configPath = path.join(agentDir, "keybindings.json");
400
- const userBindings = KeybindingsManager.#loadFromFile(configPath);
401
- const manager = new KeybindingsManager(userBindings, configPath);
446
+ const { readPath, writeBackPath } = resolveKeybindingsConfigPaths(agentDir);
447
+ const { config: userBindings, persistedPath } = KeybindingsManager.#loadFromFile(readPath, writeBackPath);
448
+ const manager = new KeybindingsManager(userBindings, persistedPath);
402
449
  // Set globally so getKeybindings() returns this manager
403
450
  setKeybindings(manager);
404
451
  return manager;
@@ -416,7 +463,8 @@ export class KeybindingsManager extends TuiKeybindingsManager {
416
463
  */
417
464
  reload(): void {
418
465
  if (!this.#configPath) return;
419
- this.setUserBindings(KeybindingsManager.#loadFromFile(this.#configPath));
466
+ const { config } = KeybindingsManager.#loadFromFile(this.#configPath);
467
+ this.setUserBindings(config);
420
468
  }
421
469
 
422
470
  /**
@@ -437,8 +485,11 @@ export class KeybindingsManager extends TuiKeybindingsManager {
437
485
  /**
438
486
  * Load user bindings from a file, migrating old names if needed.
439
487
  */
440
- static #loadFromFile(filePath: string): KeybindingsConfig {
441
- return loadKeybindingsConfig(filePath, true);
488
+ static #loadFromFile(
489
+ filePath: string,
490
+ writeBackPath?: string,
491
+ ): { config: KeybindingsConfig; persistedPath: string } {
492
+ return loadKeybindingsConfig(filePath, writeBackPath);
442
493
  }
443
494
  }
444
495