@agent-commons/cli 0.1.10 → 0.1.11

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.
Files changed (2) hide show
  1. package/dist/bin.js +2 -2
  2. package/package.json +9 -9
package/dist/bin.js CHANGED
@@ -106,7 +106,7 @@ var sym = {
106
106
  bullet: import_chalk.default.dim("\u2022"),
107
107
  dot: import_chalk.default.dim("\xB7")
108
108
  };
109
- function banner(version = "0.1.10") {
109
+ function banner(version = "0.1.11") {
110
110
  const line = import_chalk.default.cyan(" \u2500".padEnd(2) + "\u2500".repeat(44));
111
111
  console.log("");
112
112
  console.log(line);
@@ -3164,7 +3164,7 @@ async function pickAgentInteractively(action) {
3164
3164
  return agentId;
3165
3165
  }
3166
3166
  var program = new import_commander16.Command();
3167
- program.name("agc").description("Agent Commons CLI \u2014 interact with the Agent Commons platform").version("0.1.10", "-v, --version").action(async () => {
3167
+ program.name("agc").description("Agent Commons CLI \u2014 interact with the Agent Commons platform").version("0.1.11", "-v, --version").action(async () => {
3168
3168
  await interactiveMenu();
3169
3169
  });
3170
3170
  program.addCommand(loginCommand());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-commons/cli",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Agent Commons CLI — chat, run, and manage agents from your terminal",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -10,16 +10,11 @@
10
10
  "files": [
11
11
  "dist"
12
12
  ],
13
- "scripts": {
14
- "build": "tsup",
15
- "dev": "tsup --watch",
16
- "typecheck": "tsc --noEmit"
17
- },
18
13
  "dependencies": {
19
- "@agent-commons/sdk": "workspace:*",
20
14
  "commander": "^12.1.0",
21
15
  "chalk": "^5.3.0",
22
- "ora": "^8.1.1"
16
+ "ora": "^8.1.1",
17
+ "@agent-commons/sdk": "0.1.11"
23
18
  },
24
19
  "devDependencies": {
25
20
  "tsup": "^8.3.5",
@@ -31,5 +26,10 @@
31
26
  },
32
27
  "publishConfig": {
33
28
  "access": "public"
29
+ },
30
+ "scripts": {
31
+ "build": "tsup",
32
+ "dev": "tsup --watch",
33
+ "typecheck": "tsc --noEmit"
34
34
  }
35
- }
35
+ }