coding-agent-adapters 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -151,6 +151,12 @@ declare abstract class BaseCodingAdapter extends BaseCLIAdapter {
151
151
  * Coding agent CLIs use TUI menus that require arrow-key navigation.
152
152
  */
153
153
  readonly usesTuiMenus: boolean;
154
+ /**
155
+ * Ms of output silence after detectReady match before emitting session_ready.
156
+ * Allows TUI rendering (status bar, shortcuts, update notices) to complete
157
+ * before the orchestrator sends input.
158
+ */
159
+ readonly readySettleMs: number;
154
160
  /**
155
161
  * Installation information for this CLI tool
156
162
  */
@@ -250,6 +256,8 @@ declare abstract class BaseCodingAdapter extends BaseCLIAdapter {
250
256
  declare class ClaudeAdapter extends BaseCodingAdapter {
251
257
  readonly adapterType = "claude";
252
258
  readonly displayName = "Claude Code";
259
+ /** Heaviest TUI — status bar, shortcuts, update notices, /ide suggestions */
260
+ readonly readySettleMs: number;
253
261
  readonly installation: InstallationInfo;
254
262
  /**
255
263
  * Auto-response rules for Claude Code CLI.
@@ -398,6 +406,8 @@ declare class CodexAdapter extends BaseCodingAdapter {
398
406
  declare class AiderAdapter extends BaseCodingAdapter {
399
407
  readonly adapterType = "aider";
400
408
  readonly displayName = "Aider";
409
+ /** Minimal TUI, mostly text output — shorter settle delay */
410
+ readonly readySettleMs: number;
401
411
  /**
402
412
  * Aider uses plain text [y/n] prompts, NOT TUI arrow-key menus.
403
413
  */
package/dist/index.d.ts CHANGED
@@ -151,6 +151,12 @@ declare abstract class BaseCodingAdapter extends BaseCLIAdapter {
151
151
  * Coding agent CLIs use TUI menus that require arrow-key navigation.
152
152
  */
153
153
  readonly usesTuiMenus: boolean;
154
+ /**
155
+ * Ms of output silence after detectReady match before emitting session_ready.
156
+ * Allows TUI rendering (status bar, shortcuts, update notices) to complete
157
+ * before the orchestrator sends input.
158
+ */
159
+ readonly readySettleMs: number;
154
160
  /**
155
161
  * Installation information for this CLI tool
156
162
  */
@@ -250,6 +256,8 @@ declare abstract class BaseCodingAdapter extends BaseCLIAdapter {
250
256
  declare class ClaudeAdapter extends BaseCodingAdapter {
251
257
  readonly adapterType = "claude";
252
258
  readonly displayName = "Claude Code";
259
+ /** Heaviest TUI — status bar, shortcuts, update notices, /ide suggestions */
260
+ readonly readySettleMs: number;
253
261
  readonly installation: InstallationInfo;
254
262
  /**
255
263
  * Auto-response rules for Claude Code CLI.
@@ -398,6 +406,8 @@ declare class CodexAdapter extends BaseCodingAdapter {
398
406
  declare class AiderAdapter extends BaseCodingAdapter {
399
407
  readonly adapterType = "aider";
400
408
  readonly displayName = "Aider";
409
+ /** Minimal TUI, mostly text output — shorter settle delay */
410
+ readonly readySettleMs: number;
401
411
  /**
402
412
  * Aider uses plain text [y/n] prompts, NOT TUI arrow-key menus.
403
413
  */
package/dist/index.js CHANGED
@@ -366,6 +366,12 @@ var BaseCodingAdapter = class extends BaseCLIAdapter {
366
366
  * Coding agent CLIs use TUI menus that require arrow-key navigation.
367
367
  */
368
368
  usesTuiMenus = true;
369
+ /**
370
+ * Ms of output silence after detectReady match before emitting session_ready.
371
+ * Allows TUI rendering (status bar, shortcuts, update notices) to complete
372
+ * before the orchestrator sends input.
373
+ */
374
+ readySettleMs = 300;
369
375
  /**
370
376
  * The primary memory file for this CLI (the one it reads for project instructions).
371
377
  * Returns the relativePath of the first 'memory' type file from getWorkspaceFiles().
@@ -533,6 +539,8 @@ Docs: ${this.installation.docsUrl}`
533
539
  var ClaudeAdapter = class extends BaseCodingAdapter {
534
540
  adapterType = "claude";
535
541
  displayName = "Claude Code";
542
+ /** Heaviest TUI — status bar, shortcuts, update notices, /ide suggestions */
543
+ readySettleMs = 500;
536
544
  installation = {
537
545
  command: "npm install -g @anthropic-ai/claude-code",
538
546
  alternatives: [
@@ -1464,6 +1472,8 @@ var CodexAdapter = class extends BaseCodingAdapter {
1464
1472
  var AiderAdapter = class extends BaseCodingAdapter {
1465
1473
  adapterType = "aider";
1466
1474
  displayName = "Aider";
1475
+ /** Minimal TUI, mostly text output — shorter settle delay */
1476
+ readySettleMs = 200;
1467
1477
  /**
1468
1478
  * Aider uses plain text [y/n] prompts, NOT TUI arrow-key menus.
1469
1479
  */