@williambeto/ai-workflow 2.7.0 → 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,63 @@
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
+
31
+ ### 🚀 Features
32
+
33
+ - *(adapters)* Harden Codex adapter with robust system boundaries
34
+
35
+ ### 💼 Other
36
+
37
+ - Merge pull request #125 from williambeto/chore/cleanup
38
+
39
+ chore: clean up obsolete tests, audits, releases, and duplicates
40
+ - Merge pull request #126 from williambeto/refactor/consumer-examples
41
+
42
+ refactor: modernize consumer examples
43
+ - Merge pull request #127 from williambeto/feat/codex-hardening
44
+
45
+ feat(adapters): harden Codex adapter
46
+
47
+ ### 🚜 Refactor
48
+
49
+ - Replace outdated examples with modern v2.7 consumer examples
50
+
51
+ ### 📚 Documentation
52
+
53
+ - Translate antigravity system prompt to english
54
+
55
+ ### ⚙️ Miscellaneous Tasks
56
+
57
+ - Clean up obsolete tests, audits, releases, and duplicates
58
+ - Merge dependabot PR
59
+ ## [2.7.0] - 2026-07-06
60
+
3
61
  ### 🚀 Features
4
62
 
5
63
  - *(adapters)* Add copilot-instructions.md for maximum Codex compatibility
@@ -20,6 +78,10 @@ feat: native codex runtime support
20
78
  - Save publish qa checklist
21
79
  - *(qa)* Enforce markdown pattern on github releases
22
80
  - Promote Codex to Supported and update assets list
81
+
82
+ ### ⚙️ Miscellaneous Tasks
83
+
84
+ - *(release)* V2.7.0
23
85
  ## [2.6.7] - 2026-07-04
24
86
 
25
87
  ### 🐛 Bug Fixes
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