@innominatum/agentforge-cli 1.0.1

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/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@innominatum/agentforge-cli",
3
+ "version": "1.0.1",
4
+ "description": "A powerful command-line interface to scaffold, manage, build, and deploy AI Agents and Skills for the GoClaw platform.",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "agentforge": "dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsc",
11
+ "start": "node dist/index.js",
12
+ "dev": "tsx src/index.ts",
13
+ "test": "echo \"Error: no test specified\" && exit 1"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/Innominatum-pt/agentforge-cli.git"
18
+ },
19
+ "keywords": [
20
+ "ai",
21
+ "agents",
22
+ "cli",
23
+ "goclaw",
24
+ "llm",
25
+ "skills",
26
+ "agentforge"
27
+ ],
28
+ "author": "Innominatum",
29
+ "license": "CC-BY-NC-4.0",
30
+ "type": "commonjs",
31
+ "bugs": {
32
+ "url": "https://github.com/Innominatum-pt/agentforge-cli/issues"
33
+ },
34
+ "homepage": "https://github.com/Innominatum-pt/agentforge-cli#readme",
35
+ "dependencies": {
36
+ "adm-zip": "^0.5.17",
37
+ "axios": "^1.16.0",
38
+ "commander": "^14.0.3",
39
+ "form-data": "^4.0.5",
40
+ "fs-extra": "^11.3.4",
41
+ "slugify": "^1.6.9",
42
+ "tar": "^7.5.14"
43
+ },
44
+ "devDependencies": {
45
+ "@types/adm-zip": "^0.5.8",
46
+ "@types/fs-extra": "^11.0.4",
47
+ "@types/node": "^25.6.0",
48
+ "@types/tar": "^6.1.13",
49
+ "tsx": "^4.21.0",
50
+ "typescript": "^6.0.3"
51
+ }
52
+ }