@wolfx/oh-my-openagent 3.17.13 → 3.17.15

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.
@@ -0,0 +1,39 @@
1
+ type StdioMode = "pipe" | "inherit" | "ignore";
2
+ type StdioTuple = [StdioMode, StdioMode, StdioMode];
3
+ export interface SpawnOptions {
4
+ cmd?: string[];
5
+ cwd?: string;
6
+ env?: NodeJS.ProcessEnv;
7
+ stdin?: StdioMode;
8
+ stdout?: StdioMode;
9
+ stderr?: StdioMode;
10
+ stdio?: StdioTuple;
11
+ detached?: boolean;
12
+ }
13
+ export interface SpawnedProcess {
14
+ readonly exitCode: number | null;
15
+ readonly exited: Promise<number>;
16
+ readonly stdout: ReadableStream<Uint8Array>;
17
+ readonly stderr: ReadableStream<Uint8Array>;
18
+ readonly stdin: NodeJS.WritableStream;
19
+ readonly pid: number | undefined;
20
+ kill(signal?: NodeJS.Signals): void;
21
+ ref(): void;
22
+ unref(): void;
23
+ }
24
+ export interface SpawnSyncResult {
25
+ readonly exitCode: number;
26
+ readonly stdout: Buffer | undefined;
27
+ readonly stderr: Buffer | undefined;
28
+ readonly success: boolean;
29
+ readonly pid: number;
30
+ }
31
+ export declare function spawn(command: string[], options?: SpawnOptions): SpawnedProcess;
32
+ export declare function spawn(options: SpawnOptions & {
33
+ cmd: string[];
34
+ }): SpawnedProcess;
35
+ export declare function spawnSync(command: string[], options?: SpawnOptions): SpawnSyncResult;
36
+ export declare function spawnSync(options: SpawnOptions & {
37
+ cmd: string[];
38
+ }): SpawnSyncResult;
39
+ export {};
@@ -1 +1 @@
1
- export { spawn } from "bun";
1
+ export { spawn } from "../../bun-spawn-shim";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wolfx/oh-my-openagent",
3
- "version": "3.17.13",
3
+ "version": "3.17.15",
4
4
  "description": "A fork of oh-my-openagent",
5
5
  "main": "./dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -39,7 +39,7 @@
39
39
  "ai",
40
40
  "llm"
41
41
  ],
42
- "author": "wolfx",
42
+ "author": "YeonGyu-Kim",
43
43
  "license": "SUL-1.0",
44
44
  "repository": {
45
45
  "type": "git",
@@ -70,6 +70,7 @@
70
70
  "typescript": "^5.7.3",
71
71
  "zod": "^4.3.0"
72
72
  },
73
+
73
74
  "overrides": {},
74
75
  "trustedDependencies": [
75
76
  "@ast-grep/cli",