@unliftedq/kman 0.0.1 → 0.0.3
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/LICENSE +202 -21
- package/README.md +122 -9
- package/dist/main.js +115 -70
- package/package.json +12 -11
- package/dist/main.js.map +0 -61
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unliftedq/kman",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Multi-agent
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "Multi-agent management tool — a CLI that manages a roster of named agent profiles on top of existing agent runtimes (claude-code, copilot-cli, ...).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
7
7
|
"agents",
|
|
8
8
|
"multi-agent",
|
|
9
|
-
"orchestration",
|
|
10
9
|
"claude",
|
|
11
10
|
"claude-code",
|
|
12
11
|
"copilot",
|
|
@@ -23,15 +22,15 @@
|
|
|
23
22
|
"bugs": {
|
|
24
23
|
"url": "https://github.com/unliftedq/kman/issues"
|
|
25
24
|
},
|
|
26
|
-
"license": "
|
|
25
|
+
"license": "Apache-2.0",
|
|
27
26
|
"author": "Qiao Wang <wangqiao11@hotmail.com>",
|
|
28
27
|
"type": "module",
|
|
29
28
|
"bin": {
|
|
30
|
-
"kman": "
|
|
29
|
+
"kman": "dist/main.js"
|
|
31
30
|
},
|
|
32
31
|
"main": "./dist/main.js",
|
|
33
32
|
"files": [
|
|
34
|
-
"dist",
|
|
33
|
+
"dist/main.js",
|
|
35
34
|
"README.md",
|
|
36
35
|
"LICENSE"
|
|
37
36
|
],
|
|
@@ -45,15 +44,17 @@
|
|
|
45
44
|
"start": "bun run ./src/main.ts",
|
|
46
45
|
"build": "bun run ./scripts/build.ts",
|
|
47
46
|
"typecheck": "tsc -b",
|
|
47
|
+
"test": "bun test",
|
|
48
48
|
"clean": "rm -rf dist .tsbuild .turbo *.tsbuildinfo",
|
|
49
49
|
"prepublishOnly": "bun run build"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@kman/backend-claude-code": "
|
|
53
|
-
"@kman/backend-copilot-cli": "
|
|
54
|
-
"@kman/core": "
|
|
55
|
-
"@kman/
|
|
56
|
-
"@kman/
|
|
52
|
+
"@kman/backend-claude-code": "0.0.0",
|
|
53
|
+
"@kman/backend-copilot-cli": "0.0.0",
|
|
54
|
+
"@kman/core": "0.0.0",
|
|
55
|
+
"@kman/mcp-server": "0.0.0",
|
|
56
|
+
"@kman/skills": "0.0.0",
|
|
57
|
+
"@kman/types": "0.0.0",
|
|
57
58
|
"commander": "^14.0.3",
|
|
58
59
|
"typescript": "^5.6.0"
|
|
59
60
|
}
|