@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.
Files changed (2) hide show
  1. package/README.md +13 -16
  2. 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
- | Topic | Canonical source |
79
- | --- | --- |
80
- | Getting started | [`docs/getting-started/quickstart.md`](docs/getting-started/quickstart.md) |
81
- | Upgrade to v2 | [`docs/getting-started/upgrading-to-v2.md`](docs/getting-started/upgrading-to-v2.md) |
82
- | Architecture | [`docs/internal/architecture.md`](docs/internal/architecture.md) |
83
- | Runtime flow | [`docs/internal/runtime-flow.md`](docs/internal/runtime-flow.md) |
84
- | Agents and ownership | [`docs/internal/agents-and-ownership.md`](docs/internal/agents-and-ownership.md) |
85
- | Skills and loading | [`docs/internal/skills-and-loading.md`](docs/internal/skills-and-loading.md) |
86
- | Workflow modes | [`docs/internal/workflow-modes.md`](docs/internal/workflow-modes.md) |
87
- | Evidence and quality gates | [`docs/internal/evidence-and-quality-gates.md`](docs/internal/evidence-and-quality-gates.md) |
88
- | Runtime compatibility | [`docs/compatibility/runtime-matrix.md`](docs/compatibility/runtime-matrix.md) |
89
- | Provider usage | [`docs/compatibility/provider-usage.md`](docs/compatibility/provider-usage.md) |
90
- | Known limitations | [`docs/internal/known-limitations.md`](docs/internal/known-limitations.md) |
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.0",
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": {