@haus-tech/haus-workflow 0.20.0 → 0.22.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 +21 -0
- package/README.md +9 -6
- package/dist/cli.js +654 -448
- package/library/global/commands/haus-cloneandsetup.md +51 -0
- package/library/global/skills/haus-workflow/SKILL.md +20 -11
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.22.0](https://github.com/WeAreHausTech/haus-workflow/compare/v0.21.0...v0.22.0) (2026-06-11)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- **audit:** offline, perf cleanup, CI ([#92](https://github.com/WeAreHausTech/haus-workflow/issues/92)) ([a133f06](https://github.com/WeAreHausTech/haus-workflow/commit/a133f06d52b9a9e2a15f949c443c7042ed125735))
|
|
8
|
+
- **catalog:** ingest chokepoint ([#91](https://github.com/WeAreHausTech/haus-workflow/issues/91)) ([712d72b](https://github.com/WeAreHausTech/haus-workflow/commit/712d72b252ae3181bcdb9ce02614ede098c5bab5))
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- **cloneandsetup:** read repo setup docs before file-heuristics ([#95](https://github.com/WeAreHausTech/haus-workflow/issues/95)) ([8219b92](https://github.com/WeAreHausTech/haus-workflow/commit/8219b92d1c40b71ecb78661929ca57e1fe858603))
|
|
13
|
+
|
|
14
|
+
## [0.21.0](https://github.com/WeAreHausTech/haus-workflow/compare/v0.20.0...v0.21.0) (2026-06-11)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- **clone:** add project:cloneandsetup command for cloning and setting up repos ([#94](https://github.com/WeAreHausTech/haus-workflow/issues/94)) ([3e7d279](https://github.com/WeAreHausTech/haus-workflow/commit/3e7d2799433106615a1bf25e94be3402f4eb69d2))
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
- **audit:** correctness hardening ([#90](https://github.com/WeAreHausTech/haus-workflow/issues/90)) ([823b98d](https://github.com/WeAreHausTech/haus-workflow/commit/823b98dc9e4deb2d28ecc5b57b721e80af555a05))
|
|
23
|
+
|
|
3
24
|
## [0.20.0](https://github.com/WeAreHausTech/haus-workflow/compare/v0.19.0...v0.20.0) (2026-06-11)
|
|
4
25
|
|
|
5
26
|
### Features
|
package/README.md
CHANGED
|
@@ -34,12 +34,14 @@ The `project:*` tasks act on the current repo. The unprefixed verbs (`update`,
|
|
|
34
34
|
(`~/.claude` + npm), like `npm install -g`. The short legacy names still work.
|
|
35
35
|
|
|
36
36
|
```
|
|
37
|
-
/haus-workflow
|
|
38
|
-
/haus-workflow project:init
|
|
39
|
-
/haus-workflow project:
|
|
40
|
-
/haus-workflow project:
|
|
41
|
-
/haus-workflow
|
|
42
|
-
/haus-workflow
|
|
37
|
+
/haus-workflow # interactive menu — pick a task
|
|
38
|
+
/haus-workflow project:init # [project] add haus to an EXISTING repo — AI skills, commands, workflow + docs
|
|
39
|
+
/haus-workflow project:clone [name] # [project] clone a workspace's repos (repos.manifest.json), or find & clone one repo by name from GitHub
|
|
40
|
+
/haus-workflow project:cloneandsetup [name] # [project] like project:clone, then set up each repo locally (node version, deps, .env)
|
|
41
|
+
/haus-workflow project:refresh # [project] refresh .claude/ and regenerate CLAUDE.md imports
|
|
42
|
+
/haus-workflow project:doctor # [project] health check for drift
|
|
43
|
+
/haus-workflow update # [global] update npm package + catalog + ~/.claude/
|
|
44
|
+
/haus-workflow catalog # [global] fetch only the latest catalog
|
|
43
45
|
```
|
|
44
46
|
|
|
45
47
|
Without an argument, the skill presents a menu so you can pick the task. With an argument, it runs immediately.
|
|
@@ -63,6 +65,7 @@ Scans the repo, recommends context assets, and writes `.claude/` and `.haus-work
|
|
|
63
65
|
```bash
|
|
64
66
|
haus init # first-run setup (scan → recommend → apply)
|
|
65
67
|
haus setup-project # re-run setup on existing project
|
|
68
|
+
haus clone <url> [dir] # clone a single git repo by URL (the primitive project:clone / project:cloneandsetup loop over)
|
|
66
69
|
haus scan # scan repo and write context-map
|
|
67
70
|
haus recommend # recommend catalog items (binary eligibility)
|
|
68
71
|
haus apply --dry-run # preview what would be written
|