@robota-sdk/agent-cli 3.0.0-beta.62 → 3.0.0-beta.63

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.
@@ -1,4 +1,5 @@
1
1
  import { IProviderDefinition, IProviderConfig } from '@robota-sdk/agent-core';
2
+ export { ISpinner, ITerminalOutput } from '@robota-sdk/agent-core';
2
3
  import { ICommandModule, IBackgroundTaskRunner, ISubagentRunner, IInProcessSubagentRunnerDeps, ISubagentWorktreeAdapter, ISubagentJobStart, ISubagentJobHandle, TSubagentRunnerFactory, ISubagentWorktreePrepareRequest, IPreparedSubagentWorktree } from '@robota-sdk/agent-sdk';
3
4
 
4
5
  /**
@@ -66,28 +67,4 @@ declare class GitWorktreeIsolationAdapter implements ISubagentWorktreeAdapter {
66
67
  remove(worktree: IPreparedSubagentWorktree): void;
67
68
  }
68
69
 
69
- /**
70
- * CLI-specific types for terminal I/O abstraction.
71
- */
72
- /**
73
- * Spinner handle returned by ITerminalOutput.spinner()
74
- */
75
- interface ISpinner {
76
- stop(): void;
77
- update(message: string): void;
78
- }
79
- /**
80
- * Terminal output abstraction — injected into all components that need I/O
81
- */
82
- interface ITerminalOutput {
83
- write(text: string): void;
84
- writeLine(text: string): void;
85
- writeMarkdown(md: string): void;
86
- writeError(text: string): void;
87
- prompt(question: string): Promise<string>;
88
- /** Arrow-key selector. Returns the index of the chosen option. */
89
- select(options: string[], initialIndex?: number): Promise<number>;
90
- spinner(message: string): ISpinner;
91
- }
92
-
93
- export { ChildProcessSubagentRunner, GitWorktreeIsolationAdapter, type IChildProcessSubagentRunnerOptions, type IGitWorktreeIsolationAdapterOptions, type IManagedShellProcessRunnerOptions, type ISpinner, type ITerminalOutput, createChildProcessSubagentRunnerFactory, createGitWorktreeIsolationAdapter, createManagedShellProcessRunner, startCli };
70
+ export { ChildProcessSubagentRunner, GitWorktreeIsolationAdapter, type IChildProcessSubagentRunnerOptions, type IGitWorktreeIsolationAdapterOptions, type IManagedShellProcessRunnerOptions, createChildProcessSubagentRunnerFactory, createGitWorktreeIsolationAdapter, createManagedShellProcessRunner, startCli };
@@ -1,4 +1,5 @@
1
1
  import { IProviderDefinition, IProviderConfig } from '@robota-sdk/agent-core';
2
+ export { ISpinner, ITerminalOutput } from '@robota-sdk/agent-core';
2
3
  import { ICommandModule, IBackgroundTaskRunner, ISubagentRunner, IInProcessSubagentRunnerDeps, ISubagentWorktreeAdapter, ISubagentJobStart, ISubagentJobHandle, TSubagentRunnerFactory, ISubagentWorktreePrepareRequest, IPreparedSubagentWorktree } from '@robota-sdk/agent-sdk';
3
4
 
4
5
  /**
@@ -66,28 +67,4 @@ declare class GitWorktreeIsolationAdapter implements ISubagentWorktreeAdapter {
66
67
  remove(worktree: IPreparedSubagentWorktree): void;
67
68
  }
68
69
 
69
- /**
70
- * CLI-specific types for terminal I/O abstraction.
71
- */
72
- /**
73
- * Spinner handle returned by ITerminalOutput.spinner()
74
- */
75
- interface ISpinner {
76
- stop(): void;
77
- update(message: string): void;
78
- }
79
- /**
80
- * Terminal output abstraction — injected into all components that need I/O
81
- */
82
- interface ITerminalOutput {
83
- write(text: string): void;
84
- writeLine(text: string): void;
85
- writeMarkdown(md: string): void;
86
- writeError(text: string): void;
87
- prompt(question: string): Promise<string>;
88
- /** Arrow-key selector. Returns the index of the chosen option. */
89
- select(options: string[], initialIndex?: number): Promise<number>;
90
- spinner(message: string): ISpinner;
91
- }
92
-
93
- export { ChildProcessSubagentRunner, GitWorktreeIsolationAdapter, type IChildProcessSubagentRunnerOptions, type IGitWorktreeIsolationAdapterOptions, type IManagedShellProcessRunnerOptions, type ISpinner, type ITerminalOutput, createChildProcessSubagentRunnerFactory, createGitWorktreeIsolationAdapter, createManagedShellProcessRunner, startCli };
70
+ export { ChildProcessSubagentRunner, GitWorktreeIsolationAdapter, type IChildProcessSubagentRunnerOptions, type IGitWorktreeIsolationAdapterOptions, type IManagedShellProcessRunnerOptions, createChildProcessSubagentRunnerFactory, createGitWorktreeIsolationAdapter, createManagedShellProcessRunner, startCli };