@agentskit/cli 0.7.1 → 0.9.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/README.md +2 -2
- package/dist/bin.cjs +826 -2
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-72XFU2X2.js → chunk-ZEESHYST.js} +828 -4
- package/dist/chunk-ZEESHYST.js.map +1 -0
- package/dist/index.cjs +826 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +22 -11
- package/dist/chunk-72XFU2X2.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -317,7 +317,7 @@ interface ChatCommandOptions {
|
|
|
317
317
|
declare function ChatApp(options: ChatCommandOptions): react_jsx_runtime.JSX.Element;
|
|
318
318
|
declare function renderChatHeader(options: ChatCommandOptions): string;
|
|
319
319
|
|
|
320
|
-
type StarterKind = 'react' | 'ink' | 'runtime' | 'multi-agent';
|
|
320
|
+
type StarterKind = 'react' | 'nextjs' | 'ink' | 'runtime' | 'multi-agent' | 'sveltekit' | 'nuxt' | 'vite-ink' | 'cloudflare-workers' | 'bun';
|
|
321
321
|
type Provider = 'openai' | 'anthropic' | 'gemini' | 'ollama' | 'demo';
|
|
322
322
|
type ToolKind = 'web_search' | 'filesystem' | 'shell';
|
|
323
323
|
type MemoryKind = 'none' | 'file' | 'sqlite';
|
package/dist/index.d.ts
CHANGED
|
@@ -317,7 +317,7 @@ interface ChatCommandOptions {
|
|
|
317
317
|
declare function ChatApp(options: ChatCommandOptions): react_jsx_runtime.JSX.Element;
|
|
318
318
|
declare function renderChatHeader(options: ChatCommandOptions): string;
|
|
319
319
|
|
|
320
|
-
type StarterKind = 'react' | 'ink' | 'runtime' | 'multi-agent';
|
|
320
|
+
type StarterKind = 'react' | 'nextjs' | 'ink' | 'runtime' | 'multi-agent' | 'sveltekit' | 'nuxt' | 'vite-ink' | 'cloudflare-workers' | 'bun';
|
|
321
321
|
type Provider = 'openai' | 'anthropic' | 'gemini' | 'ollama' | 'demo';
|
|
322
322
|
type ToolKind = 'web_search' | 'filesystem' | 'shell';
|
|
323
323
|
type MemoryKind = 'none' | 'file' | 'sqlite';
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
export { ChatApp, HookDispatcher, McpClient, applyPolicyToTool, applyPolicyToTools, bridgeMcpServers, buildRagFromConfig, computeCost, configHooksToHandlers, createCli, createOpenAiEmbedder, defaultPolicy, derivePreview, disposeMcpClients, evaluatePolicy, findLatestSession, findSession, forkSession, generateSessionId, getPricing, indexSources, listSessions, loadConfig, loadPlugins, mergePluginsIntoBundle, registerPricing, renameSession, renderChatHeader, renderReport, resolveChatProvider, resolveSession, runAgent, runDoctor, sessionFilePath, startDev, startTunnel, writeSessionMeta, writeStarterProject } from './chunk-
|
|
2
|
+
export { ChatApp, HookDispatcher, McpClient, applyPolicyToTool, applyPolicyToTools, bridgeMcpServers, buildRagFromConfig, computeCost, configHooksToHandlers, createCli, createOpenAiEmbedder, defaultPolicy, derivePreview, disposeMcpClients, evaluatePolicy, findLatestSession, findSession, forkSession, generateSessionId, getPricing, indexSources, listSessions, loadConfig, loadPlugins, mergePluginsIntoBundle, registerPricing, renameSession, renderChatHeader, renderReport, resolveChatProvider, resolveSession, runAgent, runDoctor, sessionFilePath, startDev, startTunnel, writeSessionMeta, writeStarterProject } from './chunk-ZEESHYST.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.9.0",
|
|
4
4
|
"description": "CLI for AgentsKit chat and project scaffolding.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agentskit",
|
|
@@ -40,21 +40,21 @@
|
|
|
40
40
|
"dist"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@inquirer/prompts": "^8.4.
|
|
43
|
+
"@inquirer/prompts": "^8.4.2",
|
|
44
44
|
"chokidar": "^5.0.0",
|
|
45
45
|
"commander": "^14.0.1",
|
|
46
46
|
"ink": "^7.0.1",
|
|
47
47
|
"kleur": "^4.1.5",
|
|
48
48
|
"localtunnel": "^2.0.2",
|
|
49
49
|
"react": "^19.2.5",
|
|
50
|
-
"@agentskit/adapters": "0.
|
|
51
|
-
"@agentskit/core": "1.
|
|
52
|
-
"@agentskit/ink": "0.7.
|
|
53
|
-
"@agentskit/memory": "0.
|
|
54
|
-
"@agentskit/rag": "0.
|
|
55
|
-
"@agentskit/runtime": "0.
|
|
56
|
-
"@agentskit/skills": "0.
|
|
57
|
-
"@agentskit/tools": "0.
|
|
50
|
+
"@agentskit/adapters": "0.10.0",
|
|
51
|
+
"@agentskit/core": "1.7.0",
|
|
52
|
+
"@agentskit/ink": "0.7.5",
|
|
53
|
+
"@agentskit/memory": "0.7.0",
|
|
54
|
+
"@agentskit/rag": "0.3.0",
|
|
55
|
+
"@agentskit/runtime": "0.6.2",
|
|
56
|
+
"@agentskit/skills": "0.6.0",
|
|
57
|
+
"@agentskit/tools": "0.8.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/localtunnel": "^2.0.4",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"@types/react": "^19.2.14",
|
|
63
63
|
"tsup": "^8.5.0",
|
|
64
64
|
"typescript": "^6.0.3",
|
|
65
|
-
"vitest": "^4.1.
|
|
65
|
+
"vitest": "^4.1.5"
|
|
66
66
|
},
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|
|
@@ -71,6 +71,17 @@
|
|
|
71
71
|
"stability": "stable",
|
|
72
72
|
"stabilityNote": "chat, init, run commands stable."
|
|
73
73
|
},
|
|
74
|
+
"license": "MIT",
|
|
75
|
+
"homepage": "https://www.agentskit.io/docs/packages/cli",
|
|
76
|
+
"repository": {
|
|
77
|
+
"type": "git",
|
|
78
|
+
"url": "git+https://github.com/AgentsKit-io/agentskit.git",
|
|
79
|
+
"directory": "packages/cli"
|
|
80
|
+
},
|
|
81
|
+
"bugs": {
|
|
82
|
+
"url": "https://github.com/AgentsKit-io/agentskit/issues"
|
|
83
|
+
},
|
|
84
|
+
"author": "AgentsKit Contributors",
|
|
74
85
|
"scripts": {
|
|
75
86
|
"build": "tsup",
|
|
76
87
|
"test": "vitest run",
|