@agent-commons/cli 0.3.0 → 0.5.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +206 -0
  3. package/dist/bin.js +1219 -467
  4. package/package.json +25 -4
package/package.json CHANGED
@@ -1,14 +1,35 @@
1
1
  {
2
2
  "name": "@agent-commons/cli",
3
- "version": "0.3.0",
4
- "description": "Agent Commons CLI chat, run, and manage agents from your terminal",
3
+ "version": "0.5.0",
4
+ "description": "Official Agent Commons CLI for building, running, and managing AI agents from the terminal",
5
5
  "license": "MIT",
6
+ "keywords": [
7
+ "agent-commons",
8
+ "ai-agents",
9
+ "cli",
10
+ "terminal",
11
+ "workflows",
12
+ "mcp",
13
+ "automation"
14
+ ],
15
+ "homepage": "https://docs.agentcommons.io/docs/cli",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/Arttribute/agent-commons.git",
19
+ "directory": "packages/agc-cli"
20
+ },
21
+ "bugs": {
22
+ "url": "https://github.com/Arttribute/agent-commons/issues"
23
+ },
24
+ "preferGlobal": true,
6
25
  "bin": {
7
26
  "agc": "./dist/bin.js"
8
27
  },
9
28
  "main": "./dist/bin.js",
10
29
  "files": [
11
- "dist"
30
+ "dist",
31
+ "README.md",
32
+ "LICENSE"
12
33
  ],
13
34
  "dependencies": {
14
35
  "@types/pdf-parse": "^1.1.5",
@@ -16,7 +37,7 @@
16
37
  "commander": "^12.1.0",
17
38
  "ora": "^8.1.1",
18
39
  "pdf-parse": "^1.1.1",
19
- "@agent-commons/sdk": "0.4.0"
40
+ "@agent-commons/sdk": "0.6.0"
20
41
  },
21
42
  "devDependencies": {
22
43
  "@types/node": "^22.10.2",