agentplane 0.6.1 → 0.6.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/assets/AGENTS.md +5 -4
- package/assets/policy/context.must.md +67 -0
- package/assets/policy/framework.dev.md +20 -0
- package/assets/policy/workflow.branch_pr.md +13 -0
- package/dist/.build-manifest.json +3 -3
- package/dist/cli.js +719 -551
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentplane",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.6.3",
|
|
4
|
+
"description": "CLI-first operational workflows and traces for AI agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agentplane",
|
|
7
7
|
"agentplane-framework",
|
|
@@ -64,17 +64,18 @@
|
|
|
64
64
|
"build": "npm run clean && tsc -b --force && npm run build:bundle",
|
|
65
65
|
"build:bundle": "node ../../scripts/release/prune-package-js.mjs dist && tsup && node ../../scripts/release/manifest.mjs build .",
|
|
66
66
|
"typecheck": "tsc -b",
|
|
67
|
+
"test": "cd ../.. && vitest --config vitest.workspace.ts run --project agentplane",
|
|
67
68
|
"prepack": "npm run clean && npm run build && node ../../scripts/release/manifest.mjs sanitize .",
|
|
68
69
|
"postpack": "node ../../scripts/release/manifest.mjs build .",
|
|
69
70
|
"prepublishOnly": "node ../../scripts/release/enforce-github-publish.mjs && npm run prepack"
|
|
70
71
|
},
|
|
71
72
|
"dependencies": {
|
|
72
|
-
"@agentplaneorg/core": "0.6.
|
|
73
|
-
"@agentplaneorg/recipes": "0.6.
|
|
74
|
-
"@clack/prompts": "^1.
|
|
73
|
+
"@agentplaneorg/core": "0.6.3",
|
|
74
|
+
"@agentplaneorg/recipes": "0.6.3",
|
|
75
|
+
"@clack/prompts": "^1.4.0",
|
|
75
76
|
"yaml": "^2.7.1",
|
|
76
|
-
"yauzl": "^
|
|
77
|
-
"zod": "^3",
|
|
77
|
+
"yauzl": "^3.3.0",
|
|
78
|
+
"zod": "^4.4.3",
|
|
78
79
|
"zod-validation-error": "^5.0.0"
|
|
79
80
|
},
|
|
80
81
|
"devDependencies": {
|