@inkeep/agents-cli 0.1.3 → 0.1.5
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/dist/index.js +3 -3
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -15151,7 +15151,7 @@ function resolveWebRuntime() {
|
|
|
15151
15151
|
throw new Error(`Could not find @inkeep/agents-manage-ui package. ${err}`);
|
|
15152
15152
|
}
|
|
15153
15153
|
}
|
|
15154
|
-
function startWebApp({ port = 3e3, host = "
|
|
15154
|
+
function startWebApp({ port = 3e3, host = "localhost" }) {
|
|
15155
15155
|
const spinner = ora("Starting dashboard server...").start();
|
|
15156
15156
|
try {
|
|
15157
15157
|
const rt = resolveWebRuntime();
|
|
@@ -15197,7 +15197,7 @@ function startWebApp({ port = 3e3, host = "127.0.0.1" }) {
|
|
|
15197
15197
|
}
|
|
15198
15198
|
}
|
|
15199
15199
|
async function devCommand(options) {
|
|
15200
|
-
const { port = 3e3, host = "
|
|
15200
|
+
const { port = 3e3, host = "localhost" } = options;
|
|
15201
15201
|
console.log(chalk2.blue("Inkeep Dashboard Server"));
|
|
15202
15202
|
console.log(chalk2.gray(`Starting server on ${host}:${port}`));
|
|
15203
15203
|
console.log("");
|
|
@@ -37498,7 +37498,7 @@ program.command("list-graphs").description("List all available graphs for the cu
|
|
|
37498
37498
|
).action(async (options) => {
|
|
37499
37499
|
await listGraphsCommand(options);
|
|
37500
37500
|
});
|
|
37501
|
-
program.command("dev").description("Start the Inkeep dashboard server").option("--port <port>", "Port to run the server on", "3000").option("--host <host>", "Host to bind the server to", "
|
|
37501
|
+
program.command("dev").description("Start the Inkeep dashboard server").option("--port <port>", "Port to run the server on", "3000").option("--host <host>", "Host to bind the server to", "localhost").action(async (options) => {
|
|
37502
37502
|
await devCommand({
|
|
37503
37503
|
port: parseInt(options.port, 10),
|
|
37504
37504
|
host: options.host
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Inkeep CLI tool",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"recast": "^0.23.0",
|
|
39
39
|
"ts-morph": "^26.0.0",
|
|
40
40
|
"tsx": "^4.20.5",
|
|
41
|
-
"@inkeep/agents-
|
|
42
|
-
"@inkeep/agents-
|
|
41
|
+
"@inkeep/agents-core": "^0.1.4",
|
|
42
|
+
"@inkeep/agents-manage-ui": "^0.1.4"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/inquirer": "^9.0.7",
|