@williambeto/ai-workflow 2.4.1 → 2.4.2
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,3 +1,9 @@
|
|
|
1
|
+
## [2.4.2] - 2026-06-21
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
- Registered `Frontend-Design-System-Specialist` subagent in `opencode.jsonc` templates and configurations.
|
|
5
|
+
- Updated `Astra` agent prompt contract to explicitly load `frontend-design-system` skill when active.
|
|
6
|
+
|
|
1
7
|
## [2.4.1] - 2026-06-21
|
|
2
8
|
|
|
3
9
|
### Fixed
|
|
@@ -37,7 +37,7 @@ Astra implements only after branch gate is satisfied. It keeps changes bounded t
|
|
|
37
37
|
* Keep changes bounded to the approved scope.
|
|
38
38
|
* Run relevant validation after implementation.
|
|
39
39
|
* Preserve existing behavior and unrelated dirty work.
|
|
40
|
-
* Load `frontend-development
|
|
40
|
+
* Load `frontend-development`, `ui-ux-design`, and `frontend-design-system` skills only when they apply. Use selected profile as quality guidance.
|
|
41
41
|
* Implement all frontend, backend, or full-stack tasks using framework-native or stack-native paradigms (e.g., framework-native React/Next.js components, Vue/Nuxt files, or project stack paradigms rather than generic standalone HTML/JS prototypes) unless explicitly asked otherwise by the user.
|
|
42
42
|
* Policies: `01-BRANCH_GATE.md`, `03-QUALITY_GATE.md`, `06-FINAL_EVIDENCE_CONTRACT.md`, `PROCEDURE_UI_CHECKLIST.md`.
|
|
43
43
|
|
package/package.json
CHANGED
|
@@ -21,6 +21,7 @@ const SUBAGENTS = {
|
|
|
21
21
|
"Design-Specialist": { description: "Apply practical design principles to keep solutions simple and maintainable", skill: "design-principles" },
|
|
22
22
|
"Docs-Engineer": { description: "Write or improve project documentation, READMEs, guides, and prompts", skill: "documentation" },
|
|
23
23
|
"Frontend-Engineer": { description: "Implement or review frontend changes involving UI, state, routing, and accessibility", skill: "frontend-development" },
|
|
24
|
+
"Frontend-Design-System-Specialist": { description: "Enforce CSS/HTML tokens, semantic elements, typography, and premium atmosphere constraints for frontend quality", skill: "frontend-design-system" },
|
|
24
25
|
"Full-Stack-Engineer": { description: "Coordinate frontend and backend changes as one coherent, testable increment", skill: "full-stack-development" },
|
|
25
26
|
"Token-Economist": { description: "Reduce context size while preserving information required for safe execution", skill: "optimize-tokens" },
|
|
26
27
|
"PR-Manager": { description: "Plan, implement, review, or validate small pull requests while preserving scope", skill: "pr-workflow" },
|