@williambeto/ai-workflow 2.7.1 → 2.8.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/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  ## [unreleased]
2
2
 
3
+ ## [2.8.0] - 2026-07-14
4
+
5
+ ### 🚀 Features
6
+
7
+ - Add governed skill scaffolding, frontmatter linting, and contract tests
8
+ - Introduce executable DEEP SDD checkpoints with hash-bound approval receipts
9
+ - Add Orion technical-plan validation and Astra file-scope enforcement
10
+ - Confirm high-risk OpenCode actor identity through machine-readable runtime evidence
11
+
12
+ ### 🐛 Bug Fixes
13
+
14
+ - Preserve low- and medium-risk OpenCode graceful degradation behavior
15
+ - Resolve packaged evidence schemas from the installed package root
16
+ - Prevent metadata sentinels from being treated as Astra file mutations
17
+
18
+ ### 🧪 Testing
19
+
20
+ - Cover external, missing, incompatible, duplicate, and concurrent workflow ledgers
21
+ - Add real OpenCode consumer smoke coverage and actor-confirmation adapter tests
22
+ - Enforce Node 20 consumer compatibility and Node 22 contributor validation
23
+
24
+ ### ⚙️ Miscellaneous Tasks
25
+
26
+ - Add sequential release verification across build, tests, validation, packaging, and runtime smoke
27
+ - Align CI quality gates with the supported Node toolchain
28
+
29
+ ## [2.7.1] - 2026-07-07
30
+
3
31
  ### 🚀 Features
4
32
 
5
33
  - *(adapters)* Harden Codex adapter with robust system boundaries
package/README.md CHANGED
@@ -148,6 +148,7 @@ Agents are installed as prompts in your `.ai-workflow/agents/` directory. You ca
148
148
  | `npx aw collect-evidence` | Collect and compile delivery evidence to `EVIDENCE.json` |
149
149
  | `npx aw doctor` | Diagnose installation health |
150
150
  | `npx aw clean` | Remove all AIWK configuration from the project |
151
+ | `npx aw skill create <name>` | Scaffold a workspace-local skill with valid frontmatter |
151
152
 
152
153
  ---
153
154
 
@@ -200,7 +201,7 @@ Everything is plain text — readable, auditable, and version-controlled.
200
201
  Beyond the 6 core agents, AIWK ships 25 domain skills that agents activate as context lenses when the request profile warrants it. You can also author your own:
201
202
 
202
203
  ```
203
- .ai-workflow/skills/
204
+ .agents/skills/
204
205
  ├── architecture/
205
206
  ├── backend-development/
206
207
  ├── cyber-security/ # activated by Sage on audit tasks
@@ -246,7 +247,7 @@ Run the full validation suite before submitting a pull request:
246
247
  npm run validate
247
248
  ```
248
249
 
249
- All 22 quality gates must pass.
250
+ All 23 quality gates must pass.
250
251
 
251
252
  ---
252
253