happy-stacks 0.5.0 → 0.6.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.
Files changed (46) hide show
  1. package/README.md +10 -2
  2. package/docs/commit-audits/happy/leeroy-wip.commit-inventory.md +3 -3
  3. package/docs/commit-audits/happy/leeroy-wip.commit-manual-review.md +1515 -276
  4. package/docs/happy-development.md +33 -6
  5. package/docs/isolated-linux-vm.md +49 -2
  6. package/docs/menubar.md +1 -1
  7. package/docs/mobile-ios.md +2 -0
  8. package/docs/monorepo-migration.md +2 -0
  9. package/docs/paths-and-env.md +2 -1
  10. package/docs/server-flavors.md +10 -2
  11. package/docs/stacks.md +26 -3
  12. package/docs/worktrees-and-forks.md +22 -1
  13. package/extras/swiftbar/lib/render.sh +5 -0
  14. package/package.json +2 -1
  15. package/scripts/build.mjs +3 -3
  16. package/scripts/daemon.mjs +4 -4
  17. package/scripts/dev.mjs +16 -13
  18. package/scripts/doctor.mjs +47 -57
  19. package/scripts/init.mjs +49 -34
  20. package/scripts/install.mjs +6 -6
  21. package/scripts/menubar.mjs +26 -11
  22. package/scripts/provision/linux-ubuntu-review-pr.sh +14 -4
  23. package/scripts/release.mjs +55 -0
  24. package/scripts/run.mjs +28 -16
  25. package/scripts/self.mjs +27 -10
  26. package/scripts/server_flavor.mjs +8 -3
  27. package/scripts/service.mjs +40 -23
  28. package/scripts/setup.mjs +401 -201
  29. package/scripts/stack.mjs +131 -31
  30. package/scripts/stack_daemon_cmd.test.mjs +164 -0
  31. package/scripts/stop.mjs +7 -3
  32. package/scripts/tailscale.mjs +18 -12
  33. package/scripts/uninstall.mjs +28 -47
  34. package/scripts/utils/auth/guided_pr_auth.mjs +13 -6
  35. package/scripts/utils/auth/guided_stack_web_login.mjs +7 -25
  36. package/scripts/utils/auth/interactive_stack_auth.mjs +21 -26
  37. package/scripts/utils/auth/login_ux.mjs +20 -27
  38. package/scripts/utils/cli/cli_registry.mjs +14 -8
  39. package/scripts/utils/cli/progress.mjs +20 -5
  40. package/scripts/utils/cli/wizard.mjs +12 -5
  41. package/scripts/utils/menubar/swiftbar.mjs +51 -0
  42. package/scripts/utils/stack/interactive_stack_config.mjs +66 -17
  43. package/scripts/utils/ui/ansi.mjs +8 -0
  44. package/scripts/utils/ui/layout.mjs +44 -0
  45. package/scripts/where.mjs +31 -15
  46. package/scripts/worktrees.mjs +50 -18
package/README.md CHANGED
@@ -90,7 +90,14 @@ If you want to **develop Happy** (worktrees, multiple stacks, upstream PR workfl
90
90
  npx happy-stacks setup --profile=dev
91
91
  ```
92
92
 
93
- During setup, you’ll be asked where to store your **workspace** (the folder that will contain `components/` and `components/.worktrees/`).
93
+ During setup, you’ll be guided through:
94
+
95
+ - where to store your **workspace** (the folder that will contain `components/` and `components/.worktrees/`)
96
+ - bootstrapping/cloning the component repos
97
+ - **recommended**: setting up a dedicated `dev-auth` seed stack (authenticate once, then new stacks can reuse it)
98
+ - **recommended**: creating a dedicated dev stack (keep `main` stable)
99
+ - optional: installing the iOS dev-client app (for phone testing)
100
+
94
101
  You can also set it non-interactively:
95
102
 
96
103
  ```bash
@@ -369,6 +376,7 @@ Details: `[docs/tauri.md](docs/tauri.md)`.
369
376
  - `happys stack dev <name>` / `happys stack start <name>`
370
377
  - `happys stack edit <name> --interactive`
371
378
  - `happys stack wt <name> -- use --interactive`
379
+ - `happys stack happy <name> -- <happy-cli args...>`
372
380
  - `happys stack review <name> [component...] [--reviewers=coderabbit,codex] [--base-ref=<ref>]`
373
381
  - `happys stack migrate`
374
382
  - **Reviews (local diff review)**:
@@ -457,4 +465,4 @@ Or (recommended) persist it via init:
457
465
 
458
466
  ```bash
459
467
  happys init --cli-root-dir=/path/to/your/happy-stacks-checkout
460
- ```
468
+ ```
@@ -40,9 +40,9 @@ For each commit:
40
40
  Progress tracking (update manually while auditing):
41
41
 
42
42
  - Auto-triaged commits: `249/249`
43
- - Manually reviewed commits: `3/249`
44
- - Current commit under manual review: (set SHA)
45
- - Next planned topic bucket: (set)
43
+ - Manually reviewed commits: `57/249`
44
+ - Current commit under manual review: `da620b6865ad` (176)
45
+ - Next planned topic bucket: `server` (flavors + sqlite migrations)
46
46
 
47
47
  Current state (2026-01-24):
48
48