agentweaver 0.1.16 → 0.1.18
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 +148 -27
- package/dist/artifacts.js +114 -3
- package/dist/doctor/checks/executors.js +2 -2
- package/dist/flow-state.js +138 -1
- package/dist/index.js +421 -82
- package/dist/interactive/controller.js +305 -36
- package/dist/interactive/ink/index.js +24 -3
- package/dist/interactive/state.js +1 -0
- package/dist/interactive/tree.js +2 -2
- package/dist/interactive/web/index.js +179 -0
- package/dist/interactive/web/protocol.js +154 -0
- package/dist/interactive/web/server.js +575 -0
- package/dist/interactive/web/static/app.js +709 -0
- package/dist/interactive/web/static/index.html +77 -0
- package/dist/interactive/web/static/styles.css +2 -0
- package/dist/interactive/web/static/styles.input.css +469 -0
- package/dist/pipeline/auto-flow.js +9 -6
- package/dist/pipeline/context.js +6 -5
- package/dist/pipeline/declarative-flows.js +39 -20
- package/dist/pipeline/flow-catalog.js +40 -14
- package/dist/pipeline/flow-specs/auto-common-guided.json +313 -0
- package/dist/pipeline/flow-specs/auto-common.json +4 -1
- package/dist/pipeline/flow-specs/auto-golang.json +27 -1
- package/dist/pipeline/flow-specs/design-review/design-review-loop.json +15 -1
- package/dist/pipeline/flow-specs/design-review.json +2 -0
- package/dist/pipeline/flow-specs/implement.json +3 -1
- package/dist/pipeline/flow-specs/plan.json +8 -2
- package/dist/pipeline/flow-specs/playbook-init.json +199 -0
- package/dist/pipeline/flow-specs/review/review-fix.json +3 -1
- package/dist/pipeline/flow-specs/review/review-loop.json +4 -0
- package/dist/pipeline/flow-specs/review/review.json +2 -0
- package/dist/pipeline/launch-profile-config.js +30 -18
- package/dist/pipeline/node-contract.js +1 -0
- package/dist/pipeline/node-registry.js +119 -5
- package/dist/pipeline/nodes/flow-run-node.js +200 -173
- package/dist/pipeline/nodes/llm-prompt-node.js +15 -33
- package/dist/pipeline/nodes/playbook-ensure-node.js +115 -0
- package/dist/pipeline/nodes/playbook-inventory-node.js +51 -0
- package/dist/pipeline/nodes/playbook-questions-form-node.js +166 -0
- package/dist/pipeline/nodes/playbook-write-node.js +243 -0
- package/dist/pipeline/nodes/project-guidance-node.js +69 -0
- package/dist/pipeline/plugin-loader.js +389 -0
- package/dist/pipeline/plugin-types.js +1 -0
- package/dist/pipeline/prompt-registry.js +4 -1
- package/dist/pipeline/prompt-runtime.js +6 -2
- package/dist/pipeline/registry.js +71 -4
- package/dist/pipeline/spec-compiler.js +1 -0
- package/dist/pipeline/spec-loader.js +14 -0
- package/dist/pipeline/spec-types.js +19 -0
- package/dist/pipeline/spec-validator.js +6 -0
- package/dist/pipeline/value-resolver.js +41 -2
- package/dist/playbook/practice-candidates.js +12 -0
- package/dist/playbook/repo-inventory.js +208 -0
- package/dist/plugin-sdk.js +1 -0
- package/dist/prompts.js +31 -0
- package/dist/runtime/artifact-registry.js +3 -0
- package/dist/runtime/execution-routing.js +25 -19
- package/dist/runtime/interactive-execution-routing.js +66 -57
- package/dist/runtime/playbook.js +485 -0
- package/dist/runtime/project-guidance.js +339 -0
- package/dist/structured-artifact-schema-registry.js +8 -0
- package/dist/structured-artifact-schemas.json +235 -0
- package/dist/structured-artifacts.js +7 -1
- package/docs/declarative-workflows.md +565 -0
- package/docs/example/.flows/examples/claude-example.json +50 -0
- package/docs/example/.plugins/claude-example-plugin/index.js +149 -0
- package/docs/example/.plugins/claude-example-plugin/plugin.json +8 -0
- package/docs/examples/.flows/claude-example.json +50 -0
- package/docs/examples/.plugins/claude-example-plugin/index.js +149 -0
- package/docs/examples/.plugins/claude-example-plugin/plugin.json +8 -0
- package/docs/features.md +77 -0
- package/docs/playbook.md +327 -0
- package/docs/plugin-sdk.md +731 -0
- package/package.json +13 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentweaver",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"description": "CLI orchestrator for Jira/Codex engineering workflows",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -21,12 +21,16 @@
|
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"type": "module",
|
|
23
23
|
"main": "dist/index.js",
|
|
24
|
-
"exports":
|
|
24
|
+
"exports": {
|
|
25
|
+
".": "./dist/index.js",
|
|
26
|
+
"./plugin-sdk": "./dist/plugin-sdk.js"
|
|
27
|
+
},
|
|
25
28
|
"bin": {
|
|
26
29
|
"agentweaver": "dist/index.js"
|
|
27
30
|
},
|
|
28
31
|
"files": [
|
|
29
32
|
"dist",
|
|
33
|
+
"docs",
|
|
30
34
|
"README.md",
|
|
31
35
|
"LICENSE",
|
|
32
36
|
"run_go_tests.py",
|
|
@@ -39,7 +43,9 @@
|
|
|
39
43
|
"packageManager": "npm@9.2.0",
|
|
40
44
|
"preferGlobal": true,
|
|
41
45
|
"scripts": {
|
|
42
|
-
"build": "tsc -p tsconfig.json && node scripts/copy-flow-specs.mjs",
|
|
46
|
+
"build": "npm run build:web-css && tsc -p tsconfig.json && node scripts/copy-flow-specs.mjs",
|
|
47
|
+
"build:web-css": "tailwindcss -i ./src/interactive/web/static/styles.input.css -o ./src/interactive/web/static/styles.css --minify",
|
|
48
|
+
"dev:web-css": "tailwindcss -i ./src/interactive/web/static/styles.input.css -o ./src/interactive/web/static/styles.css --watch",
|
|
43
49
|
"check": "tsc -p tsconfig.json --noEmit",
|
|
44
50
|
"prepublishOnly": "npm run check && npm run build",
|
|
45
51
|
"pack:check": "npm pack --dry-run",
|
|
@@ -50,9 +56,11 @@
|
|
|
50
56
|
"node": ">=18.19.0"
|
|
51
57
|
},
|
|
52
58
|
"devDependencies": {
|
|
59
|
+
"@tailwindcss/cli": "^4.2.4",
|
|
53
60
|
"@types/node": "^20.17.30",
|
|
54
61
|
"@types/react": "^18.3.12",
|
|
55
62
|
"@types/semver": "^7.7.1",
|
|
63
|
+
"tailwindcss": "^4.2.4",
|
|
56
64
|
"ts-node": "^10.9.2",
|
|
57
65
|
"typescript": "^5.8.3",
|
|
58
66
|
"vitest": "^4.1.4"
|
|
@@ -61,6 +69,7 @@
|
|
|
61
69
|
"ink": "^5.2.1",
|
|
62
70
|
"markdown-it": "^14.1.1",
|
|
63
71
|
"react": "^18.3.1",
|
|
64
|
-
"semver": "^7.7.4"
|
|
72
|
+
"semver": "^7.7.4",
|
|
73
|
+
"yaml": "^2.8.1"
|
|
65
74
|
}
|
|
66
75
|
}
|