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.
- package/README.md +10 -2
- package/docs/commit-audits/happy/leeroy-wip.commit-inventory.md +3 -3
- package/docs/commit-audits/happy/leeroy-wip.commit-manual-review.md +1515 -276
- package/docs/happy-development.md +33 -6
- package/docs/isolated-linux-vm.md +49 -2
- package/docs/menubar.md +1 -1
- package/docs/mobile-ios.md +2 -0
- package/docs/monorepo-migration.md +2 -0
- package/docs/paths-and-env.md +2 -1
- package/docs/server-flavors.md +10 -2
- package/docs/stacks.md +26 -3
- package/docs/worktrees-and-forks.md +22 -1
- package/extras/swiftbar/lib/render.sh +5 -0
- package/package.json +2 -1
- package/scripts/build.mjs +3 -3
- package/scripts/daemon.mjs +4 -4
- package/scripts/dev.mjs +16 -13
- package/scripts/doctor.mjs +47 -57
- package/scripts/init.mjs +49 -34
- package/scripts/install.mjs +6 -6
- package/scripts/menubar.mjs +26 -11
- package/scripts/provision/linux-ubuntu-review-pr.sh +14 -4
- package/scripts/release.mjs +55 -0
- package/scripts/run.mjs +28 -16
- package/scripts/self.mjs +27 -10
- package/scripts/server_flavor.mjs +8 -3
- package/scripts/service.mjs +40 -23
- package/scripts/setup.mjs +401 -201
- package/scripts/stack.mjs +131 -31
- package/scripts/stack_daemon_cmd.test.mjs +164 -0
- package/scripts/stop.mjs +7 -3
- package/scripts/tailscale.mjs +18 -12
- package/scripts/uninstall.mjs +28 -47
- package/scripts/utils/auth/guided_pr_auth.mjs +13 -6
- package/scripts/utils/auth/guided_stack_web_login.mjs +7 -25
- package/scripts/utils/auth/interactive_stack_auth.mjs +21 -26
- package/scripts/utils/auth/login_ux.mjs +20 -27
- package/scripts/utils/cli/cli_registry.mjs +14 -8
- package/scripts/utils/cli/progress.mjs +20 -5
- package/scripts/utils/cli/wizard.mjs +12 -5
- package/scripts/utils/menubar/swiftbar.mjs +51 -0
- package/scripts/utils/stack/interactive_stack_config.mjs +66 -17
- package/scripts/utils/ui/ansi.mjs +8 -0
- package/scripts/utils/ui/layout.mjs +44 -0
- package/scripts/where.mjs +31 -15
- 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
|
|
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: `
|
|
44
|
-
- Current commit under manual review: (
|
|
45
|
-
- Next planned topic bucket: (
|
|
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
|
|