@alexkroman1/aai-cli 1.14.0 → 2.0.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.
|
@@ -301,7 +301,7 @@ async function startDevServer(opts) {
|
|
|
301
301
|
name: agentDef.name,
|
|
302
302
|
env: hostModeEnv(providerEnv),
|
|
303
303
|
hostBaseAgent: agentDef,
|
|
304
|
-
...agentDef.
|
|
304
|
+
...agentDef.kind !== void 0 ? { kind: agentDef.kind } : {},
|
|
305
305
|
greeting: agentDef.greeting,
|
|
306
306
|
...clientDirOpt
|
|
307
307
|
});
|
package/dist/cli.mjs
CHANGED
|
@@ -143,7 +143,7 @@ const dev = defineCommand({
|
|
|
143
143
|
async run({ args }) {
|
|
144
144
|
await runCommand(args, async () => {
|
|
145
145
|
const cwd = await setup({ agent: true });
|
|
146
|
-
const { executeDev } = await import("./dev-
|
|
146
|
+
const { executeDev } = await import("./dev-MgeJANM3.mjs");
|
|
147
147
|
return executeDev({
|
|
148
148
|
cwd,
|
|
149
149
|
port: args.port
|
|
@@ -11,7 +11,7 @@ import pc from "picocolors";
|
|
|
11
11
|
async function executeDev(opts) {
|
|
12
12
|
const port = parsePort(opts.port);
|
|
13
13
|
const agentName = path.basename(path.resolve(opts.cwd));
|
|
14
|
-
const { startDevServer } = await import("./_dev-server-
|
|
14
|
+
const { startDevServer } = await import("./_dev-server-C10McqQ9.mjs");
|
|
15
15
|
let cleanup;
|
|
16
16
|
let shuttingDown = false;
|
|
17
17
|
const onSignal = () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexkroman1/aai-cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"aai": "dist/cli.mjs"
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"rolldown": "~1.1.4",
|
|
33
33
|
"vite": "^8.1.5",
|
|
34
34
|
"zod": "^4.4.3",
|
|
35
|
-
"@alexkroman1/aai": "
|
|
36
|
-
"@alexkroman1/aai-ui": "
|
|
35
|
+
"@alexkroman1/aai": "2.0.0",
|
|
36
|
+
"@alexkroman1/aai-ui": "2.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"playwright": "^1.61.1",
|