@cardor/agent-harness-kit 1.1.6 → 1.2.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.
- package/README.md +168 -88
- package/dist/agent-templates/builder.md +1 -0
- package/dist/agent-templates/explorer.md +1 -0
- package/dist/agent-templates/reviewer.md +1 -0
- package/dist/cli.js +365 -220
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +7 -2
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cardor/agent-harness-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "CLI scaffolding for multi-agent harness systems",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"mcp",
|
|
27
27
|
"scaffolding"
|
|
28
28
|
],
|
|
29
|
-
"author": "",
|
|
29
|
+
"author": "Enmanuel Magallanes <enmanuelmag@cardor.dev>",
|
|
30
30
|
"license": "Apache-2.0",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@clack/prompts": "^0.9.0",
|
|
@@ -51,9 +51,13 @@
|
|
|
51
51
|
"@eslint-react/eslint-plugin": "^5.7.1",
|
|
52
52
|
"@types/node": "^22.19.17",
|
|
53
53
|
"@types/ws": "^8.5.0",
|
|
54
|
+
"eslint": "^9.39.4",
|
|
55
|
+
"eslint-config-prettier": "^10.1.8",
|
|
56
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
54
57
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
55
58
|
"eslint-plugin-simple-import-sort": "^13.0.0",
|
|
56
59
|
"husky": "^9.1.7",
|
|
60
|
+
"prettier": "^3.8.3",
|
|
57
61
|
"tsup": "^8.5.1",
|
|
58
62
|
"tsx": "^4.21.0",
|
|
59
63
|
"typescript": "^5.5.0",
|
|
@@ -69,6 +73,7 @@
|
|
|
69
73
|
"dev": "tsup --watch",
|
|
70
74
|
"test": "node --test --import tsx/esm src/tests/*.test.ts",
|
|
71
75
|
"lint": "eslint . --fix",
|
|
76
|
+
"format": "prettier --write src dashboard scripts",
|
|
72
77
|
"release": "bash scripts/publish.sh",
|
|
73
78
|
"release:dry": "bash scripts/publish.sh --dry-run"
|
|
74
79
|
}
|