@agentskit/cli 0.4.2 → 0.5.1
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/README.md +28 -4
- package/dist/bin.cjs +1089 -63
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/chunk-IMW4N7X2.js +1569 -0
- package/dist/chunk-IMW4N7X2.js.map +1 -0
- package/dist/index.cjs +1094 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +175 -3
- package/dist/index.d.ts +175 -3
- package/dist/index.js +1 -1
- package/package.json +32 -13
- package/dist/chunk-RHXN45FL.js +0 -545
- package/dist/chunk-RHXN45FL.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,9 +1,57 @@
|
|
|
1
1
|
import { Command } from 'commander';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import {
|
|
3
|
+
import { AdapterFactory } from '@agentskit/core';
|
|
4
|
+
import { ChildProcess } from 'node:child_process';
|
|
4
5
|
|
|
5
6
|
declare function createCli(): Command;
|
|
6
7
|
|
|
8
|
+
interface AgentsKitConfig {
|
|
9
|
+
tools?: {
|
|
10
|
+
filesystem?: {
|
|
11
|
+
basePath?: string;
|
|
12
|
+
};
|
|
13
|
+
shell?: {
|
|
14
|
+
allowed?: string[];
|
|
15
|
+
timeout?: number;
|
|
16
|
+
maxOutput?: number;
|
|
17
|
+
};
|
|
18
|
+
webSearch?: {
|
|
19
|
+
provider?: string;
|
|
20
|
+
maxResults?: number;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
defaults?: {
|
|
24
|
+
provider?: string;
|
|
25
|
+
model?: string;
|
|
26
|
+
};
|
|
27
|
+
runtime?: {
|
|
28
|
+
maxSteps?: number;
|
|
29
|
+
maxDelegationDepth?: number;
|
|
30
|
+
};
|
|
31
|
+
observability?: {
|
|
32
|
+
console?: boolean | {
|
|
33
|
+
format?: 'human' | 'json';
|
|
34
|
+
};
|
|
35
|
+
langsmith?: {
|
|
36
|
+
projectName?: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
interface LoadConfigOptions {
|
|
41
|
+
cwd?: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Load an AgentsKit config file. Node-only — uses fs/promises.
|
|
45
|
+
*
|
|
46
|
+
* Tries in order:
|
|
47
|
+
* 1. `.agentskit.config.ts` (imported as a module)
|
|
48
|
+
* 2. `.agentskit.config.json`
|
|
49
|
+
* 3. `"agentskit"` field in `package.json`
|
|
50
|
+
*
|
|
51
|
+
* Returns `undefined` if none found.
|
|
52
|
+
*/
|
|
53
|
+
declare function loadConfig(options?: LoadConfigOptions): Promise<AgentsKitConfig | undefined>;
|
|
54
|
+
|
|
7
55
|
interface ChatCommandOptions {
|
|
8
56
|
provider: string;
|
|
9
57
|
model?: string;
|
|
@@ -19,10 +67,18 @@ interface ChatCommandOptions {
|
|
|
19
67
|
declare function ChatApp(options: ChatCommandOptions): react_jsx_runtime.JSX.Element;
|
|
20
68
|
declare function renderChatHeader(options: ChatCommandOptions): string;
|
|
21
69
|
|
|
22
|
-
type StarterKind = 'react' | 'ink';
|
|
70
|
+
type StarterKind = 'react' | 'ink' | 'runtime' | 'multi-agent';
|
|
71
|
+
type Provider = 'openai' | 'anthropic' | 'gemini' | 'ollama' | 'demo';
|
|
72
|
+
type ToolKind = 'web_search' | 'filesystem' | 'shell';
|
|
73
|
+
type MemoryKind = 'none' | 'file' | 'sqlite';
|
|
74
|
+
type PackageManager = 'pnpm' | 'npm' | 'yarn' | 'bun';
|
|
23
75
|
interface InitCommandOptions {
|
|
24
76
|
targetDir: string;
|
|
25
77
|
template: StarterKind;
|
|
78
|
+
provider?: Provider;
|
|
79
|
+
tools?: ToolKind[];
|
|
80
|
+
memory?: MemoryKind;
|
|
81
|
+
packageManager?: PackageManager;
|
|
26
82
|
}
|
|
27
83
|
declare function writeStarterProject(options: InitCommandOptions): Promise<void>;
|
|
28
84
|
|
|
@@ -59,4 +115,120 @@ interface RunCommandOptions {
|
|
|
59
115
|
}
|
|
60
116
|
declare function runAgent(task: string, options: RunCommandOptions): Promise<void>;
|
|
61
117
|
|
|
62
|
-
|
|
118
|
+
type CheckStatus = 'pass' | 'warn' | 'fail' | 'skip';
|
|
119
|
+
interface CheckResult {
|
|
120
|
+
status: CheckStatus;
|
|
121
|
+
name: string;
|
|
122
|
+
detail?: string;
|
|
123
|
+
fix?: string;
|
|
124
|
+
}
|
|
125
|
+
interface DoctorReport {
|
|
126
|
+
results: CheckResult[];
|
|
127
|
+
pass: number;
|
|
128
|
+
warn: number;
|
|
129
|
+
fail: number;
|
|
130
|
+
skip: number;
|
|
131
|
+
}
|
|
132
|
+
interface DoctorOptions {
|
|
133
|
+
/** Provider names to check. Defaults to all known providers. */
|
|
134
|
+
providers?: string[];
|
|
135
|
+
/** Skip the network reachability checks. */
|
|
136
|
+
noNetwork?: boolean;
|
|
137
|
+
/** Custom fetch (for tests). */
|
|
138
|
+
fetchImpl?: typeof fetch;
|
|
139
|
+
}
|
|
140
|
+
declare function runDoctor(options?: DoctorOptions): Promise<DoctorReport>;
|
|
141
|
+
declare function renderReport(report: DoctorReport, opts?: {
|
|
142
|
+
color?: boolean;
|
|
143
|
+
}): string;
|
|
144
|
+
|
|
145
|
+
interface DevOptions {
|
|
146
|
+
/** Entry file to run (relative or absolute). */
|
|
147
|
+
entry: string;
|
|
148
|
+
/** Globs to watch for changes. Defaults to common project files. */
|
|
149
|
+
watch?: string[];
|
|
150
|
+
/** Globs to ignore. */
|
|
151
|
+
ignore?: string[];
|
|
152
|
+
/** Args to pass through to the entry script. */
|
|
153
|
+
scriptArgs?: string[];
|
|
154
|
+
/** Debounce ms before restart after a change. */
|
|
155
|
+
debounceMs?: number;
|
|
156
|
+
/**
|
|
157
|
+
* Spawner override for tests. Defaults to spawning `tsx` (or `node` for
|
|
158
|
+
* .js entries) as a child process.
|
|
159
|
+
*/
|
|
160
|
+
spawn?: (cmd: string, args: string[]) => ChildProcess;
|
|
161
|
+
/** Watch override for tests. Defaults to chokidar. */
|
|
162
|
+
watcher?: (paths: string[], opts: {
|
|
163
|
+
ignored?: string[];
|
|
164
|
+
}) => DevWatcher;
|
|
165
|
+
/** Stdout sink for tests. */
|
|
166
|
+
stdout?: NodeJS.WritableStream;
|
|
167
|
+
/** Stderr sink for tests. */
|
|
168
|
+
stderr?: NodeJS.WritableStream;
|
|
169
|
+
}
|
|
170
|
+
interface DevWatcher {
|
|
171
|
+
on(event: 'change' | 'add' | 'unlink', listener: (path: string) => void): this;
|
|
172
|
+
close(): Promise<void>;
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* Run an entry file via tsx, restart it on relevant file changes.
|
|
176
|
+
* Resolves when stop() is called or the watcher closes.
|
|
177
|
+
*
|
|
178
|
+
* Returns a controller so callers (and tests) can stop the loop and
|
|
179
|
+
* inspect activity counters.
|
|
180
|
+
*/
|
|
181
|
+
interface DevController {
|
|
182
|
+
/** Promise that resolves when the dev session ends. */
|
|
183
|
+
done: Promise<void>;
|
|
184
|
+
/** Stop the dev loop and clean up. */
|
|
185
|
+
stop: () => Promise<void>;
|
|
186
|
+
/** Number of times the entry has been (re)started. */
|
|
187
|
+
restarts: () => number;
|
|
188
|
+
}
|
|
189
|
+
declare function startDev(options: DevOptions): DevController;
|
|
190
|
+
|
|
191
|
+
interface TunnelOptions {
|
|
192
|
+
/** Local port to expose. Required. */
|
|
193
|
+
port: number;
|
|
194
|
+
/** Optional subdomain hint (best-effort — provider may decline). */
|
|
195
|
+
subdomain?: string;
|
|
196
|
+
/** Local hostname (default: 'localhost'). */
|
|
197
|
+
host?: string;
|
|
198
|
+
/** Tunnel factory override for tests. Defaults to `localtunnel`. */
|
|
199
|
+
open?: (opts: {
|
|
200
|
+
port: number;
|
|
201
|
+
subdomain?: string;
|
|
202
|
+
local_host?: string;
|
|
203
|
+
}) => Promise<TunnelLike>;
|
|
204
|
+
/** Stdout/stderr sinks for tests. */
|
|
205
|
+
stdout?: NodeJS.WritableStream;
|
|
206
|
+
/** Called once the tunnel URL is known. */
|
|
207
|
+
onReady?: (url: string) => void;
|
|
208
|
+
}
|
|
209
|
+
interface TunnelLike {
|
|
210
|
+
url: string;
|
|
211
|
+
on(event: 'request' | 'error' | 'close', listener: (...args: unknown[]) => void): unknown;
|
|
212
|
+
close(): void;
|
|
213
|
+
}
|
|
214
|
+
interface TunnelController {
|
|
215
|
+
/** The public URL once ready. */
|
|
216
|
+
url: string;
|
|
217
|
+
/** Resolves when the tunnel closes (or stop() is called). */
|
|
218
|
+
done: Promise<void>;
|
|
219
|
+
/** Stop the tunnel and resolve done. */
|
|
220
|
+
stop: () => Promise<void>;
|
|
221
|
+
/** Number of requests proxied so far. */
|
|
222
|
+
requests: () => number;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* Open a public tunnel to a local port.
|
|
226
|
+
*
|
|
227
|
+
* Uses `localtunnel` by default — no account required, free, URL is
|
|
228
|
+
* something like `https://word-word-12345.loca.lt`. First-time visitors
|
|
229
|
+
* may see a `loca.lt` interstitial click-through; that's a known
|
|
230
|
+
* provider quirk, not an AgentsKit issue.
|
|
231
|
+
*/
|
|
232
|
+
declare function startTunnel(options: TunnelOptions): Promise<TunnelController>;
|
|
233
|
+
|
|
234
|
+
export { type AgentsKitConfig, ChatApp, type ChatCommandOptions, type ChatProviderOptions, type CheckResult, type CheckStatus, type DevController, type DevOptions, type DevWatcher, type DoctorOptions, type DoctorReport, type InitCommandOptions, type LoadConfigOptions, type ResolvedChatProvider, type RunCommandOptions, type StarterKind, type TunnelController, type TunnelLike, type TunnelOptions, createCli, loadConfig, renderChatHeader, renderReport, resolveChatProvider, runAgent, runDoctor, startDev, startTunnel, writeStarterProject };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,57 @@
|
|
|
1
1
|
import { Command } from 'commander';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
-
import {
|
|
3
|
+
import { AdapterFactory } from '@agentskit/core';
|
|
4
|
+
import { ChildProcess } from 'node:child_process';
|
|
4
5
|
|
|
5
6
|
declare function createCli(): Command;
|
|
6
7
|
|
|
8
|
+
interface AgentsKitConfig {
|
|
9
|
+
tools?: {
|
|
10
|
+
filesystem?: {
|
|
11
|
+
basePath?: string;
|
|
12
|
+
};
|
|
13
|
+
shell?: {
|
|
14
|
+
allowed?: string[];
|
|
15
|
+
timeout?: number;
|
|
16
|
+
maxOutput?: number;
|
|
17
|
+
};
|
|
18
|
+
webSearch?: {
|
|
19
|
+
provider?: string;
|
|
20
|
+
maxResults?: number;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
defaults?: {
|
|
24
|
+
provider?: string;
|
|
25
|
+
model?: string;
|
|
26
|
+
};
|
|
27
|
+
runtime?: {
|
|
28
|
+
maxSteps?: number;
|
|
29
|
+
maxDelegationDepth?: number;
|
|
30
|
+
};
|
|
31
|
+
observability?: {
|
|
32
|
+
console?: boolean | {
|
|
33
|
+
format?: 'human' | 'json';
|
|
34
|
+
};
|
|
35
|
+
langsmith?: {
|
|
36
|
+
projectName?: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
interface LoadConfigOptions {
|
|
41
|
+
cwd?: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Load an AgentsKit config file. Node-only — uses fs/promises.
|
|
45
|
+
*
|
|
46
|
+
* Tries in order:
|
|
47
|
+
* 1. `.agentskit.config.ts` (imported as a module)
|
|
48
|
+
* 2. `.agentskit.config.json`
|
|
49
|
+
* 3. `"agentskit"` field in `package.json`
|
|
50
|
+
*
|
|
51
|
+
* Returns `undefined` if none found.
|
|
52
|
+
*/
|
|
53
|
+
declare function loadConfig(options?: LoadConfigOptions): Promise<AgentsKitConfig | undefined>;
|
|
54
|
+
|
|
7
55
|
interface ChatCommandOptions {
|
|
8
56
|
provider: string;
|
|
9
57
|
model?: string;
|
|
@@ -19,10 +67,18 @@ interface ChatCommandOptions {
|
|
|
19
67
|
declare function ChatApp(options: ChatCommandOptions): react_jsx_runtime.JSX.Element;
|
|
20
68
|
declare function renderChatHeader(options: ChatCommandOptions): string;
|
|
21
69
|
|
|
22
|
-
type StarterKind = 'react' | 'ink';
|
|
70
|
+
type StarterKind = 'react' | 'ink' | 'runtime' | 'multi-agent';
|
|
71
|
+
type Provider = 'openai' | 'anthropic' | 'gemini' | 'ollama' | 'demo';
|
|
72
|
+
type ToolKind = 'web_search' | 'filesystem' | 'shell';
|
|
73
|
+
type MemoryKind = 'none' | 'file' | 'sqlite';
|
|
74
|
+
type PackageManager = 'pnpm' | 'npm' | 'yarn' | 'bun';
|
|
23
75
|
interface InitCommandOptions {
|
|
24
76
|
targetDir: string;
|
|
25
77
|
template: StarterKind;
|
|
78
|
+
provider?: Provider;
|
|
79
|
+
tools?: ToolKind[];
|
|
80
|
+
memory?: MemoryKind;
|
|
81
|
+
packageManager?: PackageManager;
|
|
26
82
|
}
|
|
27
83
|
declare function writeStarterProject(options: InitCommandOptions): Promise<void>;
|
|
28
84
|
|
|
@@ -59,4 +115,120 @@ interface RunCommandOptions {
|
|
|
59
115
|
}
|
|
60
116
|
declare function runAgent(task: string, options: RunCommandOptions): Promise<void>;
|
|
61
117
|
|
|
62
|
-
|
|
118
|
+
type CheckStatus = 'pass' | 'warn' | 'fail' | 'skip';
|
|
119
|
+
interface CheckResult {
|
|
120
|
+
status: CheckStatus;
|
|
121
|
+
name: string;
|
|
122
|
+
detail?: string;
|
|
123
|
+
fix?: string;
|
|
124
|
+
}
|
|
125
|
+
interface DoctorReport {
|
|
126
|
+
results: CheckResult[];
|
|
127
|
+
pass: number;
|
|
128
|
+
warn: number;
|
|
129
|
+
fail: number;
|
|
130
|
+
skip: number;
|
|
131
|
+
}
|
|
132
|
+
interface DoctorOptions {
|
|
133
|
+
/** Provider names to check. Defaults to all known providers. */
|
|
134
|
+
providers?: string[];
|
|
135
|
+
/** Skip the network reachability checks. */
|
|
136
|
+
noNetwork?: boolean;
|
|
137
|
+
/** Custom fetch (for tests). */
|
|
138
|
+
fetchImpl?: typeof fetch;
|
|
139
|
+
}
|
|
140
|
+
declare function runDoctor(options?: DoctorOptions): Promise<DoctorReport>;
|
|
141
|
+
declare function renderReport(report: DoctorReport, opts?: {
|
|
142
|
+
color?: boolean;
|
|
143
|
+
}): string;
|
|
144
|
+
|
|
145
|
+
interface DevOptions {
|
|
146
|
+
/** Entry file to run (relative or absolute). */
|
|
147
|
+
entry: string;
|
|
148
|
+
/** Globs to watch for changes. Defaults to common project files. */
|
|
149
|
+
watch?: string[];
|
|
150
|
+
/** Globs to ignore. */
|
|
151
|
+
ignore?: string[];
|
|
152
|
+
/** Args to pass through to the entry script. */
|
|
153
|
+
scriptArgs?: string[];
|
|
154
|
+
/** Debounce ms before restart after a change. */
|
|
155
|
+
debounceMs?: number;
|
|
156
|
+
/**
|
|
157
|
+
* Spawner override for tests. Defaults to spawning `tsx` (or `node` for
|
|
158
|
+
* .js entries) as a child process.
|
|
159
|
+
*/
|
|
160
|
+
spawn?: (cmd: string, args: string[]) => ChildProcess;
|
|
161
|
+
/** Watch override for tests. Defaults to chokidar. */
|
|
162
|
+
watcher?: (paths: string[], opts: {
|
|
163
|
+
ignored?: string[];
|
|
164
|
+
}) => DevWatcher;
|
|
165
|
+
/** Stdout sink for tests. */
|
|
166
|
+
stdout?: NodeJS.WritableStream;
|
|
167
|
+
/** Stderr sink for tests. */
|
|
168
|
+
stderr?: NodeJS.WritableStream;
|
|
169
|
+
}
|
|
170
|
+
interface DevWatcher {
|
|
171
|
+
on(event: 'change' | 'add' | 'unlink', listener: (path: string) => void): this;
|
|
172
|
+
close(): Promise<void>;
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* Run an entry file via tsx, restart it on relevant file changes.
|
|
176
|
+
* Resolves when stop() is called or the watcher closes.
|
|
177
|
+
*
|
|
178
|
+
* Returns a controller so callers (and tests) can stop the loop and
|
|
179
|
+
* inspect activity counters.
|
|
180
|
+
*/
|
|
181
|
+
interface DevController {
|
|
182
|
+
/** Promise that resolves when the dev session ends. */
|
|
183
|
+
done: Promise<void>;
|
|
184
|
+
/** Stop the dev loop and clean up. */
|
|
185
|
+
stop: () => Promise<void>;
|
|
186
|
+
/** Number of times the entry has been (re)started. */
|
|
187
|
+
restarts: () => number;
|
|
188
|
+
}
|
|
189
|
+
declare function startDev(options: DevOptions): DevController;
|
|
190
|
+
|
|
191
|
+
interface TunnelOptions {
|
|
192
|
+
/** Local port to expose. Required. */
|
|
193
|
+
port: number;
|
|
194
|
+
/** Optional subdomain hint (best-effort — provider may decline). */
|
|
195
|
+
subdomain?: string;
|
|
196
|
+
/** Local hostname (default: 'localhost'). */
|
|
197
|
+
host?: string;
|
|
198
|
+
/** Tunnel factory override for tests. Defaults to `localtunnel`. */
|
|
199
|
+
open?: (opts: {
|
|
200
|
+
port: number;
|
|
201
|
+
subdomain?: string;
|
|
202
|
+
local_host?: string;
|
|
203
|
+
}) => Promise<TunnelLike>;
|
|
204
|
+
/** Stdout/stderr sinks for tests. */
|
|
205
|
+
stdout?: NodeJS.WritableStream;
|
|
206
|
+
/** Called once the tunnel URL is known. */
|
|
207
|
+
onReady?: (url: string) => void;
|
|
208
|
+
}
|
|
209
|
+
interface TunnelLike {
|
|
210
|
+
url: string;
|
|
211
|
+
on(event: 'request' | 'error' | 'close', listener: (...args: unknown[]) => void): unknown;
|
|
212
|
+
close(): void;
|
|
213
|
+
}
|
|
214
|
+
interface TunnelController {
|
|
215
|
+
/** The public URL once ready. */
|
|
216
|
+
url: string;
|
|
217
|
+
/** Resolves when the tunnel closes (or stop() is called). */
|
|
218
|
+
done: Promise<void>;
|
|
219
|
+
/** Stop the tunnel and resolve done. */
|
|
220
|
+
stop: () => Promise<void>;
|
|
221
|
+
/** Number of requests proxied so far. */
|
|
222
|
+
requests: () => number;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* Open a public tunnel to a local port.
|
|
226
|
+
*
|
|
227
|
+
* Uses `localtunnel` by default — no account required, free, URL is
|
|
228
|
+
* something like `https://word-word-12345.loca.lt`. First-time visitors
|
|
229
|
+
* may see a `loca.lt` interstitial click-through; that's a known
|
|
230
|
+
* provider quirk, not an AgentsKit issue.
|
|
231
|
+
*/
|
|
232
|
+
declare function startTunnel(options: TunnelOptions): Promise<TunnelController>;
|
|
233
|
+
|
|
234
|
+
export { type AgentsKitConfig, ChatApp, type ChatCommandOptions, type ChatProviderOptions, type CheckResult, type CheckStatus, type DevController, type DevOptions, type DevWatcher, type DoctorOptions, type DoctorReport, type InitCommandOptions, type LoadConfigOptions, type ResolvedChatProvider, type RunCommandOptions, type StarterKind, type TunnelController, type TunnelLike, type TunnelOptions, createCli, loadConfig, renderChatHeader, renderReport, resolveChatProvider, runAgent, runDoctor, startDev, startTunnel, writeStarterProject };
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
export { ChatApp, createCli, renderChatHeader, resolveChatProvider, runAgent, writeStarterProject } from './chunk-
|
|
2
|
+
export { ChatApp, createCli, loadConfig, renderChatHeader, renderReport, resolveChatProvider, runAgent, runDoctor, startDev, startTunnel, writeStarterProject } from './chunk-IMW4N7X2.js';
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
|
4
4
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentskit/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "CLI for AgentsKit chat and project scaffolding.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agentskit",
|
|
@@ -11,7 +11,16 @@
|
|
|
11
11
|
"typescript",
|
|
12
12
|
"cli",
|
|
13
13
|
"command-line",
|
|
14
|
-
"scaffolding"
|
|
14
|
+
"scaffolding",
|
|
15
|
+
"openai",
|
|
16
|
+
"anthropic",
|
|
17
|
+
"claude",
|
|
18
|
+
"gemini",
|
|
19
|
+
"chatgpt",
|
|
20
|
+
"ai-agents",
|
|
21
|
+
"autonomous-agents",
|
|
22
|
+
"create-app",
|
|
23
|
+
"terminal"
|
|
15
24
|
],
|
|
16
25
|
"type": "module",
|
|
17
26
|
"main": "./dist/index.cjs",
|
|
@@ -31,30 +40,40 @@
|
|
|
31
40
|
"dist"
|
|
32
41
|
],
|
|
33
42
|
"dependencies": {
|
|
43
|
+
"@inquirer/prompts": "^8.4.1",
|
|
44
|
+
"chokidar": "^5.0.0",
|
|
34
45
|
"commander": "^14.0.1",
|
|
35
|
-
"ink": "^
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"@agentskit/
|
|
40
|
-
"@agentskit/
|
|
41
|
-
"@agentskit/
|
|
42
|
-
"@agentskit/
|
|
43
|
-
"@agentskit/runtime": "0.4.
|
|
46
|
+
"ink": "^7.0.0",
|
|
47
|
+
"kleur": "^4.1.5",
|
|
48
|
+
"localtunnel": "^2.0.2",
|
|
49
|
+
"react": "^19.2.5",
|
|
50
|
+
"@agentskit/adapters": "0.5.1",
|
|
51
|
+
"@agentskit/core": "1.0.1",
|
|
52
|
+
"@agentskit/ink": "0.5.1",
|
|
53
|
+
"@agentskit/memory": "0.5.1",
|
|
54
|
+
"@agentskit/runtime": "0.4.4",
|
|
55
|
+
"@agentskit/skills": "0.4.4",
|
|
56
|
+
"@agentskit/tools": "0.4.4"
|
|
44
57
|
},
|
|
45
58
|
"devDependencies": {
|
|
46
|
-
"@types/
|
|
59
|
+
"@types/localtunnel": "^2.0.4",
|
|
60
|
+
"@types/node": "^25.6.0",
|
|
47
61
|
"@types/react": "^19.2.14",
|
|
48
62
|
"tsup": "^8.5.0",
|
|
49
63
|
"typescript": "^6.0.2",
|
|
50
|
-
"vitest": "^4.1.
|
|
64
|
+
"vitest": "^4.1.4"
|
|
51
65
|
},
|
|
52
66
|
"publishConfig": {
|
|
53
67
|
"access": "public"
|
|
54
68
|
},
|
|
69
|
+
"agentskit": {
|
|
70
|
+
"stability": "stable",
|
|
71
|
+
"stabilityNote": "chat, init, run commands stable."
|
|
72
|
+
},
|
|
55
73
|
"scripts": {
|
|
56
74
|
"build": "tsup",
|
|
57
75
|
"test": "vitest run",
|
|
76
|
+
"test:coverage": "vitest run --coverage",
|
|
58
77
|
"lint": "tsc --noEmit",
|
|
59
78
|
"dev": "tsup --watch"
|
|
60
79
|
}
|