@haus-tech/haus-workflow 0.12.1 → 0.13.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/CHANGELOG.md +18 -0
- package/README.md +1 -1
- package/dist/cli.js +326 -636
- package/library/catalog/manifest.json +31 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.13.1](https://github.com/WeAreHausTech/haus-workflow/compare/v0.13.0...v0.13.1) (2026-06-03)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- **catalog:** download skill reference files into cache ([#63](https://github.com/WeAreHausTech/haus-workflow/issues/63)) ([db67180](https://github.com/WeAreHausTech/haus-workflow/commit/db671807273a45e97d5f5cd9505b43284d7b7389))
|
|
8
|
+
|
|
9
|
+
## [0.13.0](https://github.com/WeAreHausTech/haus-workflow/compare/v0.12.1...v0.13.0) (2026-06-03)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- **recommender:** binary eligibility + docs-skill integration ([0f26431](https://github.com/WeAreHausTech/haus-workflow/commit/0f26431f3b338fbe344ee734d43d7d27837337f2))
|
|
14
|
+
- **recommender:** binary eligibility + docs-skill integration ([ee61a6b](https://github.com/WeAreHausTech/haus-workflow/commit/ee61a6be3a976759c3d430b97f5c82cd5e5248fc))
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- **recommender:** defensively parse deep-context.json shapes ([5b20c53](https://github.com/WeAreHausTech/haus-workflow/commit/5b20c53531105e8216e7359569284d2f3af9026e))
|
|
19
|
+
- **recommender:** defensively parse deep-context.json shapes ([ecbe6b4](https://github.com/WeAreHausTech/haus-workflow/commit/ecbe6b48e116da84a8ab9a0995ce8aed0c00dea6))
|
|
20
|
+
|
|
3
21
|
## [0.12.1](https://github.com/WeAreHausTech/haus-workflow/compare/v0.12.0...v0.12.1) (2026-06-03)
|
|
4
22
|
|
|
5
23
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ Scans the repo, recommends context assets, and writes `.claude/` and `.haus-work
|
|
|
60
60
|
haus init # first-run setup (scan → recommend → apply)
|
|
61
61
|
haus setup-project # re-run setup on existing project
|
|
62
62
|
haus scan # scan repo and write context-map
|
|
63
|
-
haus recommend #
|
|
63
|
+
haus recommend # recommend catalog items (binary eligibility)
|
|
64
64
|
haus apply --dry-run # preview what would be written
|
|
65
65
|
haus apply --write # write .claude/ files
|
|
66
66
|
haus apply --refill-config # fill still-blank workflow-config.md fields, keep edits
|