@williambeto/ai-workflow 2.2.0 → 2.2.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/README.md +13 -16
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -75,22 +75,19 @@ Optional provider adapters can also generate `CLAUDE.md`, `GEMINI.md`, and Codex
|
|
|
75
75
|
|
|
76
76
|
## Documentation
|
|
77
77
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
| Publish readiness | [`docs/releases/PUBLISH_READINESS_CRITERIA.md`](docs/releases/PUBLISH_READINESS_CRITERIA.md) |
|
|
92
|
-
| v2 release notes | [`docs/releases/v2-release-notes.md`](docs/releases/v2-release-notes.md) |
|
|
93
|
-
| v2 release decision | [`docs/releases/v2-release-decision.md`](docs/releases/v2-release-decision.md) |
|
|
78
|
+
For full guides, tutorials, and specifications, visit the [AI Workflow Kit Documentation Website](https://ai-workflow-kit-site.pages.dev/).
|
|
79
|
+
|
|
80
|
+
### Local Consumer Files (created after `init`)
|
|
81
|
+
|
|
82
|
+
When you initialize the kit in your project with `ai-workflow init`, the following guides are created locally in your `.ai-workflow/` folder:
|
|
83
|
+
|
|
84
|
+
- **Getting Started**: `.ai-workflow/QUICKSTART.md`
|
|
85
|
+
- **Architectural Policy**: `.ai-workflow/docs/architecture-policy.md`
|
|
86
|
+
- **Design Conventions**: `.ai-workflow/docs/design-patterns-policy.md`
|
|
87
|
+
- **Visual E2E Validation**: `.ai-workflow/docs/visual-validation-guide.md`
|
|
88
|
+
- **Compatibility Matrix**: `.ai-workflow/docs/compatibility/runtime-matrix.md`
|
|
89
|
+
- **Platform Governance**: `.ai-workflow/AGENTS.md`
|
|
90
|
+
|
|
94
91
|
|
|
95
92
|
## Statuses
|
|
96
93
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@williambeto/ai-workflow",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "AI Workflow Kit — OpenCode-first software delivery workflow with agents, commands, skills, validation, and evidence",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "José Willams",
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"test:e2e": "node tests/validate-e2e.mjs",
|
|
63
63
|
"pack:safe": "node internal/validate/pack-safe.mjs",
|
|
64
64
|
"validate:behavioral-contracts": "node internal/validate/validate-behavioral-contracts.mjs",
|
|
65
|
+
"validate:token-economy": "node internal/validate/validate-token-economy.mjs",
|
|
65
66
|
"validate:release-readiness": "node internal/validate/validate-release-readiness.mjs"
|
|
66
67
|
},
|
|
67
68
|
"devDependencies": {
|