@happier-dev/stack 0.1.0-preview.5.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 +501 -0
- package/bin/hstack.mjs +348 -0
- package/docs/codex-mcp-resume.md +129 -0
- package/docs/edison.md +74 -0
- package/docs/forking-and-branding.md +189 -0
- package/docs/happy-development.md +22 -0
- package/docs/isolated-linux-vm.md +243 -0
- package/docs/menubar.md +244 -0
- package/docs/mobile-ios.md +322 -0
- package/docs/monorepo-migration.md +20 -0
- package/docs/paths-and-env.md +154 -0
- package/docs/remote-access.md +43 -0
- package/docs/server-flavors.md +147 -0
- package/docs/stacks.md +330 -0
- package/docs/tauri.md +60 -0
- package/docs/worktrees-and-forks.md +133 -0
- package/extras/swiftbar/auth-login.sh +29 -0
- package/extras/swiftbar/git-cache-refresh.sh +122 -0
- package/extras/swiftbar/hstack-term.sh +133 -0
- package/extras/swiftbar/hstack.5s.sh +296 -0
- package/extras/swiftbar/hstack.sh +35 -0
- package/extras/swiftbar/icons/happy-green.png +0 -0
- package/extras/swiftbar/icons/happy-orange.png +0 -0
- package/extras/swiftbar/icons/happy-red.png +0 -0
- package/extras/swiftbar/icons/logo-white.png +0 -0
- package/extras/swiftbar/install.sh +265 -0
- package/extras/swiftbar/lib/git.sh +629 -0
- package/extras/swiftbar/lib/icons.sh +92 -0
- package/extras/swiftbar/lib/render.sh +999 -0
- package/extras/swiftbar/lib/system.sh +244 -0
- package/extras/swiftbar/lib/utils.sh +717 -0
- package/extras/swiftbar/set-interval.sh +65 -0
- package/extras/swiftbar/set-server-flavor.sh +61 -0
- package/extras/swiftbar/wt-pr.sh +140 -0
- package/node_modules/@happier-dev/cli-common/README.md +6 -0
- package/node_modules/@happier-dev/cli-common/dist/index.d.ts +4 -0
- package/node_modules/@happier-dev/cli-common/dist/index.d.ts.map +1 -0
- package/node_modules/@happier-dev/cli-common/dist/index.js +4 -0
- package/node_modules/@happier-dev/cli-common/dist/index.js.map +1 -0
- package/node_modules/@happier-dev/cli-common/dist/links/index.d.ts +18 -0
- package/node_modules/@happier-dev/cli-common/dist/links/index.d.ts.map +1 -0
- package/node_modules/@happier-dev/cli-common/dist/links/index.js +25 -0
- package/node_modules/@happier-dev/cli-common/dist/links/index.js.map +1 -0
- package/node_modules/@happier-dev/cli-common/dist/links.d.ts +2 -0
- package/node_modules/@happier-dev/cli-common/dist/links.d.ts.map +1 -0
- package/node_modules/@happier-dev/cli-common/dist/links.js +2 -0
- package/node_modules/@happier-dev/cli-common/dist/links.js.map +1 -0
- package/node_modules/@happier-dev/cli-common/dist/update/index.d.ts +67 -0
- package/node_modules/@happier-dev/cli-common/dist/update/index.d.ts.map +1 -0
- package/node_modules/@happier-dev/cli-common/dist/update/index.js +259 -0
- package/node_modules/@happier-dev/cli-common/dist/update/index.js.map +1 -0
- package/node_modules/@happier-dev/cli-common/dist/workspaces/index.d.ts +17 -0
- package/node_modules/@happier-dev/cli-common/dist/workspaces/index.d.ts.map +1 -0
- package/node_modules/@happier-dev/cli-common/dist/workspaces/index.js +80 -0
- package/node_modules/@happier-dev/cli-common/dist/workspaces/index.js.map +1 -0
- package/node_modules/@happier-dev/cli-common/package.json +26 -0
- package/package.json +77 -0
- package/scripts/auth.mjs +1829 -0
- package/scripts/auth_copy_from_pglite_lock_in_use.integration.test.mjs +90 -0
- package/scripts/auth_copy_from_runCapture.integration.test.mjs +447 -0
- package/scripts/auth_help_cmd.test.mjs +28 -0
- package/scripts/auth_login_flow_in_tty.test.mjs +100 -0
- package/scripts/auth_login_force_default.test.mjs +66 -0
- package/scripts/auth_login_guided_server_no_expo.test.mjs +126 -0
- package/scripts/auth_login_method_override.test.mjs +67 -0
- package/scripts/auth_login_print_includes_configure_links.test.mjs +99 -0
- package/scripts/auth_status_server_validation.integration.test.mjs +140 -0
- package/scripts/build.mjs +266 -0
- package/scripts/bundleWorkspaceDeps.mjs +38 -0
- package/scripts/bundleWorkspaceDeps.test.mjs +77 -0
- package/scripts/ci.mjs +135 -0
- package/scripts/ci.test.mjs +50 -0
- package/scripts/cli-link.mjs +57 -0
- package/scripts/completion.mjs +395 -0
- package/scripts/contrib.mjs +333 -0
- package/scripts/daemon.mjs +1160 -0
- package/scripts/daemon.status_scope.test.mjs +51 -0
- package/scripts/daemon_cmd.mjs +26 -0
- package/scripts/daemon_dist_guard.test.mjs +171 -0
- package/scripts/daemon_invalid_auth_reseed_stack_name.integration.test.mjs +608 -0
- package/scripts/daemon_server_scoped_state.test.mjs +49 -0
- package/scripts/daemon_start_verification.integration.test.mjs +296 -0
- package/scripts/dev.mjs +545 -0
- package/scripts/doctor.mjs +340 -0
- package/scripts/doctor_cmd.test.mjs +22 -0
- package/scripts/doctor_ui_index_missing.test.mjs +37 -0
- package/scripts/eas.mjs +367 -0
- package/scripts/eas_platform_parsing.test.mjs +63 -0
- package/scripts/edison.mjs +1848 -0
- package/scripts/env.mjs +149 -0
- package/scripts/env_cmd.test.mjs +118 -0
- package/scripts/exit_cleanup_kills_detached_children_on_crash.integration.test.mjs +80 -0
- package/scripts/happier.mjs +82 -0
- package/scripts/import.mjs +1327 -0
- package/scripts/init.mjs +464 -0
- package/scripts/install.mjs +550 -0
- package/scripts/lint.mjs +177 -0
- package/scripts/menubar.mjs +202 -0
- package/scripts/migrate.mjs +318 -0
- package/scripts/mobile.mjs +353 -0
- package/scripts/mobile_dev_client.mjs +87 -0
- package/scripts/monorepo.mjs +2234 -0
- package/scripts/monorepo_port.apply.integration.test.mjs +680 -0
- package/scripts/monorepo_port.conflicts.integration.test.mjs +454 -0
- package/scripts/monorepo_port.validation.integration.test.mjs +486 -0
- package/scripts/orchestrated_stack_auth_flow.test.mjs +134 -0
- package/scripts/orchestrated_stack_auth_flow_resolve_port.test.mjs +98 -0
- package/scripts/orchestrated_stack_auth_flow_webapp_url.test.mjs +119 -0
- package/scripts/pack.mjs +257 -0
- package/scripts/pack.test.mjs +68 -0
- package/scripts/pglite_lock.integration.test.mjs +152 -0
- package/scripts/provision/linux-ubuntu-e2e.sh +132 -0
- package/scripts/provision/linux-ubuntu-review-pr.sh +66 -0
- package/scripts/provision/macos-lima-happy-vm.sh +192 -0
- package/scripts/provision/macos-lima-hstack-e2e.sh +100 -0
- package/scripts/release.mjs +53 -0
- package/scripts/release_binary_smoke.integration.test.mjs +159 -0
- package/scripts/review.mjs +1752 -0
- package/scripts/review_pr.mjs +435 -0
- package/scripts/run.mjs +561 -0
- package/scripts/run_script_with_stack_env.restart_port_reuse.test.mjs +30 -0
- package/scripts/self.mjs +465 -0
- package/scripts/self_host.mjs +9 -0
- package/scripts/self_host_binary_smoke.integration.test.mjs +94 -0
- package/scripts/self_host_runtime.mjs +883 -0
- package/scripts/self_host_runtime.test.mjs +82 -0
- package/scripts/self_host_systemd.real.integration.test.mjs +367 -0
- package/scripts/server_flavor.mjs +148 -0
- package/scripts/service.mjs +868 -0
- package/scripts/service_mode_help.test.mjs +27 -0
- package/scripts/setup.mjs +1324 -0
- package/scripts/setup_non_interactive_flag.test.mjs +60 -0
- package/scripts/setup_pr.mjs +605 -0
- package/scripts/setup_pr_orchestrated_auth_flow_util_import.test.mjs +117 -0
- package/scripts/stack/command_arguments.mjs +91 -0
- package/scripts/stack/copy_auth_from_stack.mjs +111 -0
- package/scripts/stack/delegated_script_commands.mjs +92 -0
- package/scripts/stack/help_text.mjs +110 -0
- package/scripts/stack/port_reservation.mjs +74 -0
- package/scripts/stack/repo_checkout_resolution.mjs +31 -0
- package/scripts/stack/run_script_with_stack_env.mjs +634 -0
- package/scripts/stack/stack_daemon_command.mjs +219 -0
- package/scripts/stack/stack_delegated_help.mjs +81 -0
- package/scripts/stack/stack_environment.mjs +151 -0
- package/scripts/stack/stack_environment.sanitization.test.mjs +75 -0
- package/scripts/stack/stack_happier_passthrough_command.mjs +63 -0
- package/scripts/stack/stack_info_snapshot.mjs +167 -0
- package/scripts/stack/stack_mobile_install_command.mjs +61 -0
- package/scripts/stack/stack_resume_command.mjs +76 -0
- package/scripts/stack/stack_stop_command.mjs +34 -0
- package/scripts/stack/stack_workspace_command.mjs +83 -0
- package/scripts/stack/transient_repo_overrides.mjs +29 -0
- package/scripts/stack.mjs +2388 -0
- package/scripts/stack_archive_cmd.integration.test.mjs +31 -0
- package/scripts/stack_audit_fix_light_env.test.mjs +129 -0
- package/scripts/stack_background_pinned_stack_json.test.mjs +81 -0
- package/scripts/stack_copy_auth_server_scoped.test.mjs +243 -0
- package/scripts/stack_daemon_cmd.integration.test.mjs +484 -0
- package/scripts/stack_eas_help.test.mjs +72 -0
- package/scripts/stack_editor_workspace_monorepo_root.test.mjs +102 -0
- package/scripts/stack_env_cmd.test.mjs +107 -0
- package/scripts/stack_guided_login_bundle_error_parse.test.mjs +20 -0
- package/scripts/stack_guided_login_inner_invocation.test.mjs +46 -0
- package/scripts/stack_happy_cmd.integration.test.mjs +263 -0
- package/scripts/stack_info_snapshot_running_status.test.mjs +186 -0
- package/scripts/stack_interactive_monorepo_group.test.mjs +128 -0
- package/scripts/stack_monorepo_defaults.test.mjs +31 -0
- package/scripts/stack_monorepo_repo_dev_token.test.mjs +32 -0
- package/scripts/stack_monorepo_server_light_from_happy_spec.test.mjs +37 -0
- package/scripts/stack_new_name_normalize_cmd.test.mjs +38 -0
- package/scripts/stack_pr_name_normalize_cmd.test.mjs +84 -0
- package/scripts/stack_resume_cmd.integration.test.mjs +134 -0
- package/scripts/stack_server_flavors_defaults.test.mjs +64 -0
- package/scripts/stack_shorthand_cmd.integration.test.mjs +74 -0
- package/scripts/stack_stop_sweeps_legacy_infra_without_kind.integration.test.mjs +44 -0
- package/scripts/stack_stop_sweeps_when_runtime_missing.integration.test.mjs +42 -0
- package/scripts/stack_stop_sweeps_when_runtime_stale.integration.test.mjs +50 -0
- package/scripts/stack_wt_list.test.mjs +117 -0
- package/scripts/start_ui_required_default.test.mjs +63 -0
- package/scripts/stop.mjs +190 -0
- package/scripts/stopStackWithEnv_no_autosweep_when_runtime_missing.integration.test.mjs +95 -0
- package/scripts/swiftbar_git_monorepo_cmd.test.mjs +75 -0
- package/scripts/swiftbar_render_monorepo_wt_actions.integration.test.mjs +116 -0
- package/scripts/swiftbar_utils_cmd.test.mjs +92 -0
- package/scripts/swiftbar_wt_pr_backcompat.test.mjs +162 -0
- package/scripts/systemd_unit_info.test.mjs +24 -0
- package/scripts/tailscale.mjs +490 -0
- package/scripts/test_ci.mjs +36 -0
- package/scripts/test_cmd.mjs +274 -0
- package/scripts/test_cmd.test.mjs +133 -0
- package/scripts/test_integration.mjs +33 -0
- package/scripts/testkit/auth_testkit.mjs +121 -0
- package/scripts/testkit/doctor_testkit.mjs +68 -0
- package/scripts/testkit/monorepo_port_testkit.mjs +157 -0
- package/scripts/testkit/stack_archive_command_testkit.mjs +55 -0
- package/scripts/testkit/stack_new_monorepo_testkit.mjs +83 -0
- package/scripts/testkit/stack_script_command_testkit.mjs +27 -0
- package/scripts/testkit/stack_stop_sweeps_testkit.mjs +172 -0
- package/scripts/testkit/worktrees_monorepo_testkit.mjs +53 -0
- package/scripts/tools.mjs +70 -0
- package/scripts/tui.mjs +914 -0
- package/scripts/tui_stopStackForTuiExit_no_autosweep.integration.test.mjs +95 -0
- package/scripts/typecheck.mjs +178 -0
- package/scripts/ui_gateway.mjs +247 -0
- package/scripts/uninstall.mjs +179 -0
- package/scripts/utils/auth/credentials_paths.mjs +181 -0
- package/scripts/utils/auth/credentials_paths.test.mjs +187 -0
- package/scripts/utils/auth/daemon_gate.mjs +66 -0
- package/scripts/utils/auth/daemon_gate.test.mjs +116 -0
- package/scripts/utils/auth/decode_jwt_payload_unsafe.mjs +16 -0
- package/scripts/utils/auth/dev_key.mjs +163 -0
- package/scripts/utils/auth/files.mjs +56 -0
- package/scripts/utils/auth/guided_pr_auth.mjs +86 -0
- package/scripts/utils/auth/guided_stack_web_login.mjs +56 -0
- package/scripts/utils/auth/handy_master_secret.mjs +42 -0
- package/scripts/utils/auth/interactive_stack_auth.mjs +70 -0
- package/scripts/utils/auth/login_ux.mjs +105 -0
- package/scripts/utils/auth/orchestrated_stack_auth_flow.mjs +291 -0
- package/scripts/utils/auth/sources.mjs +28 -0
- package/scripts/utils/auth/stable_scope_id.mjs +91 -0
- package/scripts/utils/auth/stable_scope_id.test.mjs +51 -0
- package/scripts/utils/auth/stack_guided_login.mjs +438 -0
- package/scripts/utils/cli/arg_values.mjs +23 -0
- package/scripts/utils/cli/arg_values.test.mjs +43 -0
- package/scripts/utils/cli/args.mjs +17 -0
- package/scripts/utils/cli/cli.mjs +24 -0
- package/scripts/utils/cli/cli_registry.mjs +440 -0
- package/scripts/utils/cli/cwd_scope.mjs +158 -0
- package/scripts/utils/cli/cwd_scope.test.mjs +154 -0
- package/scripts/utils/cli/flags.mjs +17 -0
- package/scripts/utils/cli/log_forwarder.mjs +157 -0
- package/scripts/utils/cli/normalize.mjs +16 -0
- package/scripts/utils/cli/prereqs.mjs +103 -0
- package/scripts/utils/cli/prereqs.test.mjs +33 -0
- package/scripts/utils/cli/progress.mjs +141 -0
- package/scripts/utils/cli/smoke_help.mjs +44 -0
- package/scripts/utils/cli/verbosity.mjs +11 -0
- package/scripts/utils/cli/wizard.mjs +139 -0
- package/scripts/utils/cli/wizard_promptSelect.test.mjs +44 -0
- package/scripts/utils/cli/wizard_prompt_worktree_source_lazy.test.mjs +132 -0
- package/scripts/utils/cli/wizard_worktree_slug.test.mjs +33 -0
- package/scripts/utils/crypto/tokens.mjs +14 -0
- package/scripts/utils/dev/daemon.mjs +232 -0
- package/scripts/utils/dev/daemon_watch_resilience.test.mjs +224 -0
- package/scripts/utils/dev/expo_dev.buildEnv.test.mjs +35 -0
- package/scripts/utils/dev/expo_dev.mjs +478 -0
- package/scripts/utils/dev/expo_dev.test.mjs +89 -0
- package/scripts/utils/dev/expo_dev_restart_port_reservation.test.mjs +120 -0
- package/scripts/utils/dev/expo_dev_verbose_logs.test.mjs +60 -0
- package/scripts/utils/dev/server.mjs +180 -0
- package/scripts/utils/dev_auth_key.mjs +7 -0
- package/scripts/utils/edison/git_roots.mjs +30 -0
- package/scripts/utils/edison/git_roots.test.mjs +49 -0
- package/scripts/utils/env/config.mjs +52 -0
- package/scripts/utils/env/dotenv.mjs +32 -0
- package/scripts/utils/env/dotenv.test.mjs +32 -0
- package/scripts/utils/env/env.mjs +130 -0
- package/scripts/utils/env/env_file.mjs +98 -0
- package/scripts/utils/env/env_file.test.mjs +49 -0
- package/scripts/utils/env/env_local.mjs +25 -0
- package/scripts/utils/env/load_env_file.mjs +34 -0
- package/scripts/utils/env/read.mjs +30 -0
- package/scripts/utils/env/sandbox.mjs +13 -0
- package/scripts/utils/env/scrub_env.mjs +69 -0
- package/scripts/utils/env/scrub_env.test.mjs +102 -0
- package/scripts/utils/env/values.mjs +13 -0
- package/scripts/utils/expo/command.mjs +65 -0
- package/scripts/utils/expo/expo.mjs +139 -0
- package/scripts/utils/expo/expo_state_running.test.mjs +48 -0
- package/scripts/utils/expo/metro_ports.mjs +101 -0
- package/scripts/utils/expo/metro_ports.test.mjs +35 -0
- package/scripts/utils/fs/atomic_dir_swap.mjs +55 -0
- package/scripts/utils/fs/atomic_dir_swap.test.mjs +54 -0
- package/scripts/utils/fs/file_has_content.mjs +10 -0
- package/scripts/utils/fs/fs.mjs +11 -0
- package/scripts/utils/fs/json.mjs +25 -0
- package/scripts/utils/fs/ops.mjs +29 -0
- package/scripts/utils/fs/package_json.mjs +8 -0
- package/scripts/utils/fs/tail.mjs +12 -0
- package/scripts/utils/git/dev_checkout.mjs +127 -0
- package/scripts/utils/git/dev_checkout.test.mjs +115 -0
- package/scripts/utils/git/git.mjs +67 -0
- package/scripts/utils/git/parse_name_status_z.mjs +21 -0
- package/scripts/utils/git/refs.mjs +26 -0
- package/scripts/utils/git/worktrees.mjs +323 -0
- package/scripts/utils/git/worktrees_monorepo.test.mjs +60 -0
- package/scripts/utils/git/worktrees_pathstyle.test.mjs +53 -0
- package/scripts/utils/llm/assist.mjs +260 -0
- package/scripts/utils/llm/codex_exec.mjs +61 -0
- package/scripts/utils/llm/codex_exec.test.mjs +46 -0
- package/scripts/utils/llm/hstack_runner.mjs +59 -0
- package/scripts/utils/llm/tools.mjs +56 -0
- package/scripts/utils/llm/tools.test.mjs +67 -0
- package/scripts/utils/menubar/swiftbar.mjs +121 -0
- package/scripts/utils/menubar/swiftbar.test.mjs +85 -0
- package/scripts/utils/mobile/config.mjs +35 -0
- package/scripts/utils/mobile/dev_client_links.mjs +59 -0
- package/scripts/utils/mobile/identifiers.mjs +46 -0
- package/scripts/utils/mobile/identifiers.test.mjs +41 -0
- package/scripts/utils/mobile/ios_xcodeproj_patch.mjs +128 -0
- package/scripts/utils/mobile/ios_xcodeproj_patch.test.mjs +131 -0
- package/scripts/utils/net/bind_mode.mjs +39 -0
- package/scripts/utils/net/dns.mjs +10 -0
- package/scripts/utils/net/lan_ip.mjs +24 -0
- package/scripts/utils/net/ports.mjs +110 -0
- package/scripts/utils/net/tcp_forward.mjs +162 -0
- package/scripts/utils/net/url.mjs +30 -0
- package/scripts/utils/net/url.test.mjs +29 -0
- package/scripts/utils/paths/canonical_home.mjs +15 -0
- package/scripts/utils/paths/canonical_home.test.mjs +28 -0
- package/scripts/utils/paths/localhost_host.mjs +112 -0
- package/scripts/utils/paths/localhost_host.test.mjs +58 -0
- package/scripts/utils/paths/paths.mjs +302 -0
- package/scripts/utils/paths/paths_env_win32.test.mjs +36 -0
- package/scripts/utils/paths/paths_monorepo.test.mjs +58 -0
- package/scripts/utils/paths/paths_server_flavors.test.mjs +50 -0
- package/scripts/utils/paths/runtime.mjs +41 -0
- package/scripts/utils/pglite_lock.mjs +107 -0
- package/scripts/utils/proc/commands.mjs +33 -0
- package/scripts/utils/proc/exit_cleanup.mjs +57 -0
- package/scripts/utils/proc/happy_monorepo_deps.mjs +37 -0
- package/scripts/utils/proc/happy_monorepo_deps.test.mjs +89 -0
- package/scripts/utils/proc/ownership.mjs +217 -0
- package/scripts/utils/proc/ownership_killProcessGroupOwnedByStack.test.mjs +216 -0
- package/scripts/utils/proc/ownership_listPidsWithEnvNeedles.test.mjs +88 -0
- package/scripts/utils/proc/package_scripts.mjs +38 -0
- package/scripts/utils/proc/package_scripts.test.mjs +58 -0
- package/scripts/utils/proc/parallel.mjs +25 -0
- package/scripts/utils/proc/pids.mjs +11 -0
- package/scripts/utils/proc/pm.mjs +478 -0
- package/scripts/utils/proc/pm_spawn.integration.test.mjs +131 -0
- package/scripts/utils/proc/pm_stack_cache_env.test.mjs +313 -0
- package/scripts/utils/proc/proc.mjs +331 -0
- package/scripts/utils/proc/proc.test.mjs +85 -0
- package/scripts/utils/proc/terminate.mjs +69 -0
- package/scripts/utils/proc/terminate.test.mjs +54 -0
- package/scripts/utils/proc/watch.mjs +63 -0
- package/scripts/utils/review/augment_runner_integration.test.mjs +105 -0
- package/scripts/utils/review/base_ref.mjs +82 -0
- package/scripts/utils/review/base_ref.test.mjs +89 -0
- package/scripts/utils/review/chunks.mjs +55 -0
- package/scripts/utils/review/chunks.test.mjs +107 -0
- package/scripts/utils/review/detached_worktree.mjs +61 -0
- package/scripts/utils/review/detached_worktree.test.mjs +61 -0
- package/scripts/utils/review/findings.mjs +278 -0
- package/scripts/utils/review/findings.test.mjs +203 -0
- package/scripts/utils/review/head_slice.mjs +132 -0
- package/scripts/utils/review/head_slice.test.mjs +117 -0
- package/scripts/utils/review/instructions/deep.md +20 -0
- package/scripts/utils/review/prompts.mjs +279 -0
- package/scripts/utils/review/prompts.test.mjs +77 -0
- package/scripts/utils/review/run_reviewers_safe.mjs +12 -0
- package/scripts/utils/review/run_reviewers_safe.test.mjs +45 -0
- package/scripts/utils/review/runners/augment.mjs +91 -0
- package/scripts/utils/review/runners/augment.test.mjs +64 -0
- package/scripts/utils/review/runners/claude.mjs +92 -0
- package/scripts/utils/review/runners/claude.test.mjs +47 -0
- package/scripts/utils/review/runners/coderabbit.mjs +105 -0
- package/scripts/utils/review/runners/coderabbit.test.mjs +32 -0
- package/scripts/utils/review/runners/codex.mjs +129 -0
- package/scripts/utils/review/runners/codex.test.mjs +115 -0
- package/scripts/utils/review/slice_mode.mjs +20 -0
- package/scripts/utils/review/slice_mode.test.mjs +69 -0
- package/scripts/utils/review/sliced_runner.mjs +39 -0
- package/scripts/utils/review/sliced_runner.test.mjs +57 -0
- package/scripts/utils/review/slices.mjs +140 -0
- package/scripts/utils/review/slices.test.mjs +41 -0
- package/scripts/utils/review/targets.mjs +23 -0
- package/scripts/utils/review/targets.test.mjs +31 -0
- package/scripts/utils/review/tool_home_seed.mjs +106 -0
- package/scripts/utils/review/tool_home_seed.test.mjs +124 -0
- package/scripts/utils/review/uncommitted_ops.mjs +77 -0
- package/scripts/utils/review/uncommitted_ops.test.mjs +117 -0
- package/scripts/utils/sandbox/review_pr_sandbox.mjs +105 -0
- package/scripts/utils/server/apply_server_light_env_defaults.mjs +14 -0
- package/scripts/utils/server/flavor_scripts.mjs +138 -0
- package/scripts/utils/server/flavor_scripts.test.mjs +115 -0
- package/scripts/utils/server/infra/happy_server_infra.mjs +444 -0
- package/scripts/utils/server/mobile_api_url.mjs +60 -0
- package/scripts/utils/server/mobile_api_url.test.mjs +58 -0
- package/scripts/utils/server/port.mjs +55 -0
- package/scripts/utils/server/prisma_import.mjs +36 -0
- package/scripts/utils/server/prisma_import.test.mjs +78 -0
- package/scripts/utils/server/server.mjs +109 -0
- package/scripts/utils/server/ui_build_check.mjs +37 -0
- package/scripts/utils/server/ui_build_check.test.mjs +70 -0
- package/scripts/utils/server/ui_env.mjs +13 -0
- package/scripts/utils/server/ui_env.test.mjs +57 -0
- package/scripts/utils/server/urls.mjs +100 -0
- package/scripts/utils/server/validate.mjs +60 -0
- package/scripts/utils/server/validate.test.mjs +76 -0
- package/scripts/utils/service/autostart_darwin.mjs +198 -0
- package/scripts/utils/service/autostart_darwin.test.mjs +49 -0
- package/scripts/utils/service/autostart_darwin_keepalive.test.mjs +19 -0
- package/scripts/utils/stack/cli_identities.mjs +29 -0
- package/scripts/utils/stack/context.mjs +19 -0
- package/scripts/utils/stack/dirs.mjs +26 -0
- package/scripts/utils/stack/editor_workspace.mjs +126 -0
- package/scripts/utils/stack/interactive_stack_config.mjs +266 -0
- package/scripts/utils/stack/interactive_stack_config.port_validation.test.mjs +93 -0
- package/scripts/utils/stack/interactive_stack_config.remote_validation.test.mjs +122 -0
- package/scripts/utils/stack/interactive_stack_config.stack_name_validation.test.mjs +76 -0
- package/scripts/utils/stack/interactive_stack_config_testkit.mjs +18 -0
- package/scripts/utils/stack/names.mjs +27 -0
- package/scripts/utils/stack/names.test.mjs +26 -0
- package/scripts/utils/stack/pr_stack_name.mjs +16 -0
- package/scripts/utils/stack/runtime_state.mjs +88 -0
- package/scripts/utils/stack/stacks.mjs +40 -0
- package/scripts/utils/stack/startup.mjs +370 -0
- package/scripts/utils/stack/startup_server_light_dirs.test.mjs +119 -0
- package/scripts/utils/stack/startup_server_light_generate.test.mjs +20 -0
- package/scripts/utils/stack/startup_server_light_legacy.test.mjs +79 -0
- package/scripts/utils/stack/startup_server_light_testkit.mjs +106 -0
- package/scripts/utils/stack/stop.mjs +284 -0
- package/scripts/utils/stack_context.mjs +1 -0
- package/scripts/utils/stack_runtime_state.mjs +1 -0
- package/scripts/utils/stacks.mjs +1 -0
- package/scripts/utils/tailscale/ip.mjs +116 -0
- package/scripts/utils/tauri/stack_overrides.mjs +22 -0
- package/scripts/utils/test/collect_test_files.mjs +29 -0
- package/scripts/utils/time/get_today_ymd.mjs +7 -0
- package/scripts/utils/tui/cleanup.mjs +38 -0
- package/scripts/utils/ui/ansi.mjs +47 -0
- package/scripts/utils/ui/browser.mjs +31 -0
- package/scripts/utils/ui/browser.test.mjs +56 -0
- package/scripts/utils/ui/clipboard.mjs +38 -0
- package/scripts/utils/ui/layout.mjs +44 -0
- package/scripts/utils/ui/qr.mjs +17 -0
- package/scripts/utils/ui/terminal_launcher.mjs +129 -0
- package/scripts/utils/ui/text.mjs +16 -0
- package/scripts/utils/update/auto_update_notice.mjs +93 -0
- package/scripts/utils/validate.mjs +5 -0
- package/scripts/where.mjs +138 -0
- package/scripts/worktrees.mjs +2174 -0
- package/scripts/worktrees_archive_cmd.integration.test.mjs +228 -0
- package/scripts/worktrees_cursor_monorepo_root.test.mjs +23 -0
- package/scripts/worktrees_list_specs_no_recurse.test.mjs +32 -0
- package/scripts/worktrees_monorepo_testkit.test.mjs +29 -0
- package/scripts/worktrees_monorepo_use_group.test.mjs +41 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import test from 'node:test';
|
|
2
|
+
import assert from 'node:assert/strict';
|
|
3
|
+
import { mkdtemp, mkdir, rm, writeFile } from 'node:fs/promises';
|
|
4
|
+
import { tmpdir } from 'node:os';
|
|
5
|
+
import { dirname, join } from 'node:path';
|
|
6
|
+
import { fileURLToPath } from 'node:url';
|
|
7
|
+
|
|
8
|
+
import { stopStackForTuiExit } from './utils/tui/cleanup.mjs';
|
|
9
|
+
import { isAlive, spawnOwnedSleep, waitForProcessAlive, waitForProcessExit } from './testkit/stack_stop_sweeps_testkit.mjs';
|
|
10
|
+
|
|
11
|
+
test('stopStackForTuiExit auto-sweeps infra when stack.runtime.json is missing (and does not kill session-like processes)', async () => {
|
|
12
|
+
const scriptsDir = dirname(fileURLToPath(import.meta.url));
|
|
13
|
+
const rootDir = dirname(scriptsDir);
|
|
14
|
+
|
|
15
|
+
const tmp = await mkdtemp(join(tmpdir(), 'hstack-tui-exit-stop-'));
|
|
16
|
+
const storageDir = join(tmp, 'storage');
|
|
17
|
+
await mkdir(storageDir, { recursive: true });
|
|
18
|
+
const env = { ...process.env, HAPPIER_STACK_STORAGE_DIR: storageDir };
|
|
19
|
+
|
|
20
|
+
/** @type {ReturnType<typeof spawnOwnedSleep> | null} */
|
|
21
|
+
let infra = null;
|
|
22
|
+
/** @type {ReturnType<typeof spawnOwnedSleep> | null} */
|
|
23
|
+
let sessionLike = null;
|
|
24
|
+
try {
|
|
25
|
+
const stackName = 'exp1';
|
|
26
|
+
const baseDir = join(storageDir, stackName);
|
|
27
|
+
const envPath = join(baseDir, 'env');
|
|
28
|
+
await mkdir(baseDir, { recursive: true });
|
|
29
|
+
|
|
30
|
+
const repoDir = dirname(rootDir);
|
|
31
|
+
await writeFile(
|
|
32
|
+
envPath,
|
|
33
|
+
[
|
|
34
|
+
`HAPPIER_STACK_STACK=${stackName}`,
|
|
35
|
+
`HAPPIER_STACK_SERVER_COMPONENT=happier-server-light`,
|
|
36
|
+
`HAPPIER_STACK_REPO_DIR=${repoDir}`,
|
|
37
|
+
`HAPPIER_STACK_CLI_HOME_DIR=${join(baseDir, 'cli')}`,
|
|
38
|
+
'',
|
|
39
|
+
].join('\n'),
|
|
40
|
+
'utf-8'
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
infra = spawnOwnedSleep({
|
|
44
|
+
env: {
|
|
45
|
+
...env,
|
|
46
|
+
HAPPIER_STACK_STACK: stackName,
|
|
47
|
+
HAPPIER_STACK_ENV_FILE: envPath,
|
|
48
|
+
HAPPIER_STACK_PROCESS_KIND: 'infra',
|
|
49
|
+
},
|
|
50
|
+
});
|
|
51
|
+
assert.ok(Number(infra.pid) > 1, 'expected infra child pid');
|
|
52
|
+
assert.ok(isAlive(infra.pid), 'expected infra child to be alive');
|
|
53
|
+
|
|
54
|
+
sessionLike = spawnOwnedSleep({
|
|
55
|
+
env: {
|
|
56
|
+
...env,
|
|
57
|
+
HAPPIER_STACK_STACK: stackName,
|
|
58
|
+
HAPPIER_STACK_ENV_FILE: envPath,
|
|
59
|
+
HAPPIER_STACK_PROCESS_KIND: 'session',
|
|
60
|
+
},
|
|
61
|
+
});
|
|
62
|
+
assert.ok(Number(sessionLike.pid) > 1, 'expected session-like child pid');
|
|
63
|
+
assert.ok(isAlive(sessionLike.pid), 'expected session-like child to be alive');
|
|
64
|
+
|
|
65
|
+
await waitForProcessAlive({ pid: infra.pid, timeoutMs: 2_000, intervalMs: 25, label: 'infra process (pre-sweep)' });
|
|
66
|
+
await waitForProcessAlive({
|
|
67
|
+
pid: sessionLike.pid,
|
|
68
|
+
timeoutMs: 2_000,
|
|
69
|
+
intervalMs: 25,
|
|
70
|
+
label: 'session-like process (pre-sweep)',
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
const actions = await stopStackForTuiExit({ rootDir, stackName, env, json: true, noDocker: true });
|
|
74
|
+
assert.ok(actions?.sweep, 'expected stopStackForTuiExit to auto-sweep infra when runtime state is missing');
|
|
75
|
+
|
|
76
|
+
await waitForProcessExit({ pid: infra.pid, timeoutMs: 10_000, intervalMs: 50, label: 'infra process (post-sweep)' });
|
|
77
|
+
assert.ok(!isAlive(infra.pid), `expected infra pid ${infra.pid} to be stopped by sweep`);
|
|
78
|
+
assert.ok(isAlive(sessionLike.pid), `expected session-like pid ${sessionLike.pid} to still be alive`);
|
|
79
|
+
} finally {
|
|
80
|
+
for (const child of [infra, sessionLike]) {
|
|
81
|
+
const pid = child?.pid;
|
|
82
|
+
if (!pid || !isAlive(pid)) continue;
|
|
83
|
+
try {
|
|
84
|
+
process.kill(-pid, 'SIGKILL');
|
|
85
|
+
} catch {
|
|
86
|
+
// ignore
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
try {
|
|
90
|
+
await rm(tmp, { recursive: true, force: true });
|
|
91
|
+
} catch {
|
|
92
|
+
// ignore
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
});
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import './utils/env/env.mjs';
|
|
2
|
+
import { parseArgs } from './utils/cli/args.mjs';
|
|
3
|
+
import { printResult, wantsHelp, wantsJson } from './utils/cli/cli.mjs';
|
|
4
|
+
import { getComponentDir, getRootDir } from './utils/paths/paths.mjs';
|
|
5
|
+
import { ensureDepsInstalled } from './utils/proc/pm.mjs';
|
|
6
|
+
import { pathExists } from './utils/fs/fs.mjs';
|
|
7
|
+
import { run } from './utils/proc/proc.mjs';
|
|
8
|
+
import { detectPackageManagerCmd, pickFirstScript, readPackageJsonScripts } from './utils/proc/package_scripts.mjs';
|
|
9
|
+
import { getInvokedCwd, inferComponentFromCwd } from './utils/cli/cwd_scope.mjs';
|
|
10
|
+
|
|
11
|
+
const VALID_TARGETS = ['ui', 'cli', 'server'];
|
|
12
|
+
|
|
13
|
+
function targetFromLegacyComponent(component) {
|
|
14
|
+
const c = String(component ?? '').trim();
|
|
15
|
+
if (c === 'happier-ui') return 'ui';
|
|
16
|
+
if (c === 'happier-cli') return 'cli';
|
|
17
|
+
if (c === 'happier-server' || c === 'happier-server-light') return 'server';
|
|
18
|
+
return null;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function legacyComponentFromTarget(target) {
|
|
22
|
+
const t = String(target ?? '').trim();
|
|
23
|
+
if (t === 'ui') return 'happier-ui';
|
|
24
|
+
if (t === 'cli') return 'happier-cli';
|
|
25
|
+
if (t === 'server') return 'happier-server';
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
function normalizeTargetsOrThrow(rawTargets) {
|
|
30
|
+
const requested = Array.isArray(rawTargets) ? rawTargets.map((t) => String(t ?? '').trim()).filter(Boolean) : [];
|
|
31
|
+
if (!requested.length) return ['all'];
|
|
32
|
+
|
|
33
|
+
const mapped = requested
|
|
34
|
+
.map((t) => {
|
|
35
|
+
const lower = t.toLowerCase();
|
|
36
|
+
if (lower === 'all') return 'all';
|
|
37
|
+
if (VALID_TARGETS.includes(lower)) return lower;
|
|
38
|
+
const legacy = targetFromLegacyComponent(lower);
|
|
39
|
+
return legacy ?? null;
|
|
40
|
+
})
|
|
41
|
+
.filter(Boolean);
|
|
42
|
+
|
|
43
|
+
if (!mapped.length) return ['all'];
|
|
44
|
+
return mapped;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
function pickTypecheckScript(scripts) {
|
|
48
|
+
const candidates = [
|
|
49
|
+
'typecheck',
|
|
50
|
+
'type-check',
|
|
51
|
+
'check-types',
|
|
52
|
+
'check:types',
|
|
53
|
+
'tsc',
|
|
54
|
+
'typescript',
|
|
55
|
+
];
|
|
56
|
+
return pickFirstScript(scripts, candidates);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
async function main() {
|
|
60
|
+
const argv = process.argv.slice(2);
|
|
61
|
+
const { flags } = parseArgs(argv);
|
|
62
|
+
const json = wantsJson(argv, { flags });
|
|
63
|
+
|
|
64
|
+
if (wantsHelp(argv, { flags })) {
|
|
65
|
+
printResult({
|
|
66
|
+
json,
|
|
67
|
+
data: { targets: [...VALID_TARGETS, 'all'], flags: ['--json'] },
|
|
68
|
+
text: [
|
|
69
|
+
'[typecheck] usage:',
|
|
70
|
+
' hstack typecheck [ui|cli|server|all] [--json]',
|
|
71
|
+
'',
|
|
72
|
+
'targets:',
|
|
73
|
+
` ${[...VALID_TARGETS, 'all'].join(' | ')}`,
|
|
74
|
+
'',
|
|
75
|
+
'examples:',
|
|
76
|
+
' hstack typecheck',
|
|
77
|
+
' hstack typecheck ui',
|
|
78
|
+
' hstack typecheck ui cli',
|
|
79
|
+
'',
|
|
80
|
+
'note:',
|
|
81
|
+
' If run from inside a repo checkout/worktree and no targets are provided, defaults to the inferred app (ui/cli/server).',
|
|
82
|
+
].join('\n'),
|
|
83
|
+
});
|
|
84
|
+
return;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
const rootDir = getRootDir(import.meta.url);
|
|
88
|
+
|
|
89
|
+
const positionals = argv.filter((a) => !a.startsWith('--'));
|
|
90
|
+
const inferredLegacy =
|
|
91
|
+
positionals.length === 0
|
|
92
|
+
? inferComponentFromCwd({
|
|
93
|
+
rootDir,
|
|
94
|
+
invokedCwd: getInvokedCwd(process.env),
|
|
95
|
+
components: ['happier-ui', 'happier-cli', 'happier-server'],
|
|
96
|
+
})
|
|
97
|
+
: null;
|
|
98
|
+
if (inferredLegacy) {
|
|
99
|
+
if (!(process.env.HAPPIER_STACK_REPO_DIR ?? '').toString().trim()) {
|
|
100
|
+
process.env.HAPPIER_STACK_REPO_DIR = inferredLegacy.repoDir;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
const inferredTarget = inferredLegacy ? targetFromLegacyComponent(inferredLegacy.component) : null;
|
|
105
|
+
const requested = normalizeTargetsOrThrow(positionals.length ? positionals : inferredTarget ? [inferredTarget] : ['all']);
|
|
106
|
+
const wantAll = requested.includes('all');
|
|
107
|
+
const targets = wantAll ? VALID_TARGETS : requested;
|
|
108
|
+
|
|
109
|
+
const results = [];
|
|
110
|
+
for (const target of targets) {
|
|
111
|
+
if (!VALID_TARGETS.includes(target)) {
|
|
112
|
+
results.push({ target, ok: false, skipped: false, error: `unknown target (expected one of: ${[...VALID_TARGETS, 'all'].join(', ')})` });
|
|
113
|
+
continue;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
const component = legacyComponentFromTarget(target);
|
|
117
|
+
const dir = getComponentDir(rootDir, component);
|
|
118
|
+
if (!(await pathExists(dir))) {
|
|
119
|
+
results.push({ target, ok: false, skipped: false, dir, error: `missing target dir: ${dir}` });
|
|
120
|
+
continue;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
const scripts = await readPackageJsonScripts(dir);
|
|
124
|
+
if (!scripts) {
|
|
125
|
+
results.push({ target, ok: true, skipped: true, dir, reason: 'no package.json' });
|
|
126
|
+
continue;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
const script = pickTypecheckScript(scripts);
|
|
130
|
+
if (!script) {
|
|
131
|
+
results.push({ target, ok: true, skipped: true, dir, reason: 'no typecheck script found in package.json' });
|
|
132
|
+
continue;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
await ensureDepsInstalled(dir, target);
|
|
136
|
+
const pm = await detectPackageManagerCmd(dir);
|
|
137
|
+
|
|
138
|
+
try {
|
|
139
|
+
// eslint-disable-next-line no-console
|
|
140
|
+
console.log(`[typecheck] ${target}: running ${pm.name} ${script}`);
|
|
141
|
+
await run(pm.cmd, pm.argsForScript(script), { cwd: dir, env: process.env });
|
|
142
|
+
results.push({ target, ok: true, skipped: false, dir, pm: pm.name, script });
|
|
143
|
+
} catch (e) {
|
|
144
|
+
results.push({ target, ok: false, skipped: false, dir, pm: pm.name, script, error: String(e?.message ?? e) });
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
const ok = results.every((r) => r.ok);
|
|
149
|
+
if (json) {
|
|
150
|
+
printResult({ json, data: { ok, results } });
|
|
151
|
+
return;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
const lines = ['[typecheck] results:'];
|
|
155
|
+
for (const r of results) {
|
|
156
|
+
if (r.ok && r.skipped) {
|
|
157
|
+
lines.push(`- ↪ ${r.target}: skipped (${r.reason})`);
|
|
158
|
+
} else if (r.ok) {
|
|
159
|
+
lines.push(`- ✅ ${r.target}: ok (${r.pm} ${r.script})`);
|
|
160
|
+
} else {
|
|
161
|
+
lines.push(`- ❌ ${r.target}: failed (${r.pm ?? 'unknown'} ${r.script ?? ''})`);
|
|
162
|
+
if (r.error) lines.push(` - ${r.error}`);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
if (!ok) {
|
|
166
|
+
lines.push('');
|
|
167
|
+
lines.push('[typecheck] failed');
|
|
168
|
+
}
|
|
169
|
+
printResult({ json: false, text: lines.join('\n') });
|
|
170
|
+
if (!ok) {
|
|
171
|
+
process.exit(1);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
main().catch((err) => {
|
|
176
|
+
console.error('[typecheck] failed:', err);
|
|
177
|
+
process.exit(1);
|
|
178
|
+
});
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
import './utils/env/env.mjs';
|
|
2
|
+
import http from 'node:http';
|
|
3
|
+
import net from 'node:net';
|
|
4
|
+
import { extname, resolve, sep } from 'node:path';
|
|
5
|
+
import { readFile, stat } from 'node:fs/promises';
|
|
6
|
+
|
|
7
|
+
import { parseArgs } from './utils/cli/args.mjs';
|
|
8
|
+
import { printResult, wantsHelp, wantsJson } from './utils/cli/cli.mjs';
|
|
9
|
+
|
|
10
|
+
function usage() {
|
|
11
|
+
return [
|
|
12
|
+
'[ui-gateway] usage:',
|
|
13
|
+
' node scripts/ui_gateway.mjs --port=<port> --backend-url=<url> --minio-port=<port> --bucket=<name> [--ui-dir=<path>] [--no-ui]',
|
|
14
|
+
'',
|
|
15
|
+
'Reverse-proxy gateway that can optionally serve the built Happier web UI at /.',
|
|
16
|
+
'',
|
|
17
|
+
'Always proxies:',
|
|
18
|
+
'- /v1/* and /health to backend-url',
|
|
19
|
+
'- /v1/updates websocket upgrades to backend-url (socket.io)',
|
|
20
|
+
'- /files/* to local Minio (http://127.0.0.1:<minio-port>/<bucket>/...)',
|
|
21
|
+
].join('\n');
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function normalizePublicPath(path) {
|
|
25
|
+
const p = String(path ?? '').replace(/\\/g, '/').replace(/^\/+/, '');
|
|
26
|
+
const parts = p.split('/').filter(Boolean);
|
|
27
|
+
if (parts.some((part) => part === '..')) {
|
|
28
|
+
throw new Error('Invalid path');
|
|
29
|
+
}
|
|
30
|
+
if (p.includes(':') || p.startsWith('/')) {
|
|
31
|
+
throw new Error('Invalid path');
|
|
32
|
+
}
|
|
33
|
+
return parts.join('/');
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
function contentTypeForExt(ext) {
|
|
37
|
+
const e = ext.toLowerCase();
|
|
38
|
+
if (e === '.html') return 'text/html; charset=utf-8';
|
|
39
|
+
if (e === '.js') return 'text/javascript; charset=utf-8';
|
|
40
|
+
if (e === '.css') return 'text/css; charset=utf-8';
|
|
41
|
+
if (e === '.json') return 'application/json; charset=utf-8';
|
|
42
|
+
if (e === '.svg') return 'image/svg+xml';
|
|
43
|
+
if (e === '.ico') return 'image/x-icon';
|
|
44
|
+
if (e === '.wasm') return 'application/wasm';
|
|
45
|
+
if (e === '.ttf') return 'font/ttf';
|
|
46
|
+
if (e === '.woff') return 'font/woff';
|
|
47
|
+
if (e === '.woff2') return 'font/woff2';
|
|
48
|
+
if (e === '.png') return 'image/png';
|
|
49
|
+
if (e === '.jpg' || e === '.jpeg') return 'image/jpeg';
|
|
50
|
+
if (e === '.webp') return 'image/webp';
|
|
51
|
+
if (e === '.gif') return 'image/gif';
|
|
52
|
+
return 'application/octet-stream';
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
async function sendUiFile({ uiRoot, relPath, res }) {
|
|
56
|
+
const candidate = resolve(uiRoot, relPath);
|
|
57
|
+
if (!(candidate === uiRoot || candidate.startsWith(uiRoot + sep))) {
|
|
58
|
+
res.writeHead(404, { 'content-type': 'text/plain; charset=utf-8' });
|
|
59
|
+
res.end('Not found');
|
|
60
|
+
return;
|
|
61
|
+
}
|
|
62
|
+
const bytes = await readFile(candidate);
|
|
63
|
+
const ext = extname(candidate);
|
|
64
|
+
const isHtml = ext.toLowerCase() === '.html';
|
|
65
|
+
res.setHeader('content-type', contentTypeForExt(ext));
|
|
66
|
+
if (isHtml) {
|
|
67
|
+
res.setHeader('cache-control', 'no-cache');
|
|
68
|
+
} else {
|
|
69
|
+
res.setHeader('cache-control', 'public, max-age=31536000, immutable');
|
|
70
|
+
}
|
|
71
|
+
res.end(bytes);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
async function sendIndex({ uiRoot, res }) {
|
|
75
|
+
const indexPath = resolve(uiRoot, 'index.html');
|
|
76
|
+
const html = (await readFile(indexPath, 'utf-8')) + '\n<!-- Welcome to Happier Server! -->\n';
|
|
77
|
+
res.writeHead(200, { 'content-type': 'text/html; charset=utf-8', 'cache-control': 'no-cache' });
|
|
78
|
+
res.end(html);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function proxyHttp({ target, req, res, rewritePath = (p) => p }) {
|
|
82
|
+
const url = new URL(target);
|
|
83
|
+
const method = req.method || 'GET';
|
|
84
|
+
const headers = { ...req.headers };
|
|
85
|
+
// Let Node compute correct host
|
|
86
|
+
delete headers.host;
|
|
87
|
+
|
|
88
|
+
const upstream = http.request(
|
|
89
|
+
{
|
|
90
|
+
protocol: url.protocol,
|
|
91
|
+
hostname: url.hostname,
|
|
92
|
+
port: url.port,
|
|
93
|
+
method,
|
|
94
|
+
path: rewritePath(req.url || '/'),
|
|
95
|
+
headers,
|
|
96
|
+
},
|
|
97
|
+
(up) => {
|
|
98
|
+
res.writeHead(up.statusCode || 502, up.headers);
|
|
99
|
+
up.pipe(res);
|
|
100
|
+
}
|
|
101
|
+
);
|
|
102
|
+
upstream.on('error', () => {
|
|
103
|
+
res.writeHead(502, { 'content-type': 'text/plain; charset=utf-8' });
|
|
104
|
+
res.end('Bad gateway');
|
|
105
|
+
});
|
|
106
|
+
req.pipe(upstream);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
function proxyUpgrade({ target, req, socket, head }) {
|
|
110
|
+
const url = new URL(target);
|
|
111
|
+
const port = url.port ? Number(url.port) : url.protocol === 'https:' ? 443 : 80;
|
|
112
|
+
|
|
113
|
+
const upstream = net.connect(port, url.hostname, () => {
|
|
114
|
+
const lines = [`${req.method} ${req.url} HTTP/${req.httpVersion}`];
|
|
115
|
+
for (let i = 0; i < req.rawHeaders.length; i += 2) {
|
|
116
|
+
lines.push(`${req.rawHeaders[i]}: ${req.rawHeaders[i + 1]}`);
|
|
117
|
+
}
|
|
118
|
+
lines.push('', '');
|
|
119
|
+
upstream.write(lines.join('\r\n'));
|
|
120
|
+
if (head?.length) upstream.write(head);
|
|
121
|
+
socket.pipe(upstream).pipe(socket);
|
|
122
|
+
});
|
|
123
|
+
upstream.on('error', () => {
|
|
124
|
+
try {
|
|
125
|
+
socket.destroy();
|
|
126
|
+
} catch {
|
|
127
|
+
// ignore
|
|
128
|
+
}
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
async function main() {
|
|
133
|
+
const argv = process.argv.slice(2);
|
|
134
|
+
const { flags, kv } = parseArgs(argv);
|
|
135
|
+
const json = wantsJson(argv, { flags });
|
|
136
|
+
if (wantsHelp(argv, { flags })) {
|
|
137
|
+
printResult({ json, data: { ok: true }, text: usage() });
|
|
138
|
+
return;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
const portRaw = (kv.get('--port') ?? '').trim();
|
|
142
|
+
const backendUrl = (kv.get('--backend-url') ?? '').trim();
|
|
143
|
+
const minioPortRaw = (kv.get('--minio-port') ?? '').trim();
|
|
144
|
+
const bucket = (kv.get('--bucket') ?? '').trim();
|
|
145
|
+
const serveUi = !flags.has('--no-ui') && (process.env.HAPPIER_STACK_SERVE_UI ?? '1') !== '0';
|
|
146
|
+
const uiDir = serveUi ? (kv.get('--ui-dir') ?? '').trim() : '';
|
|
147
|
+
|
|
148
|
+
const port = portRaw ? Number(portRaw) : NaN;
|
|
149
|
+
const minioPort = minioPortRaw ? Number(minioPortRaw) : NaN;
|
|
150
|
+
|
|
151
|
+
if (!backendUrl || !bucket || !Number.isFinite(port) || port <= 0 || !Number.isFinite(minioPort) || minioPort <= 0) {
|
|
152
|
+
throw new Error(usage());
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
const uiRoot = uiDir ? resolve(uiDir) : '';
|
|
156
|
+
|
|
157
|
+
const server = http.createServer(async (req, res) => {
|
|
158
|
+
try {
|
|
159
|
+
const url = req.url || '/';
|
|
160
|
+
|
|
161
|
+
// API + health proxy
|
|
162
|
+
if (url.startsWith('/v1/') || url === '/health' || url === '/metrics' || url.startsWith('/v2/')) {
|
|
163
|
+
proxyHttp({ target: backendUrl, req, res });
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
// Public files proxy (Minio path-style)
|
|
168
|
+
if (url.startsWith('/files/')) {
|
|
169
|
+
proxyHttp({
|
|
170
|
+
target: `http://127.0.0.1:${minioPort}`,
|
|
171
|
+
req,
|
|
172
|
+
res,
|
|
173
|
+
rewritePath: (p) => {
|
|
174
|
+
const raw = p.replace(/^\/files\/?/, '');
|
|
175
|
+
const safe = normalizePublicPath(raw);
|
|
176
|
+
return `/${encodeURIComponent(bucket)}/${safe}`;
|
|
177
|
+
},
|
|
178
|
+
});
|
|
179
|
+
return;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// UI static
|
|
183
|
+
if (url === '/' || url === '/ui' || url === '/ui/') {
|
|
184
|
+
if (uiRoot) {
|
|
185
|
+
await sendIndex({ uiRoot, res });
|
|
186
|
+
return;
|
|
187
|
+
}
|
|
188
|
+
res.writeHead(200, { 'content-type': 'text/plain; charset=utf-8', 'cache-control': 'no-cache' });
|
|
189
|
+
res.end('Welcome to Happier Server!');
|
|
190
|
+
return;
|
|
191
|
+
}
|
|
192
|
+
if (url.startsWith('/ui/')) {
|
|
193
|
+
res.writeHead(302, { location: '/' });
|
|
194
|
+
res.end();
|
|
195
|
+
return;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
if (uiRoot) {
|
|
199
|
+
const rel = normalizePublicPath(decodeURIComponent(url));
|
|
200
|
+
const candidate = resolve(uiRoot, rel);
|
|
201
|
+
const exists = candidate === uiRoot || candidate.startsWith(uiRoot + sep) ? await stat(candidate).then(() => true).catch(() => false) : false;
|
|
202
|
+
if (exists) {
|
|
203
|
+
await sendUiFile({ uiRoot, relPath: rel, res });
|
|
204
|
+
return;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// SPA fallback
|
|
208
|
+
await sendIndex({ uiRoot, res });
|
|
209
|
+
return;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
res.writeHead(404, { 'content-type': 'text/plain; charset=utf-8' });
|
|
213
|
+
res.end('Not found');
|
|
214
|
+
} catch {
|
|
215
|
+
res.writeHead(500, { 'content-type': 'text/plain; charset=utf-8' });
|
|
216
|
+
res.end('Internal error');
|
|
217
|
+
}
|
|
218
|
+
});
|
|
219
|
+
|
|
220
|
+
server.on('upgrade', (req, socket, head) => {
|
|
221
|
+
try {
|
|
222
|
+
const url = req.url || '';
|
|
223
|
+
// socket.io upgrades for realtime updates
|
|
224
|
+
if (url.startsWith('/v1/updates')) {
|
|
225
|
+
proxyUpgrade({ target: backendUrl, req, socket, head });
|
|
226
|
+
return;
|
|
227
|
+
}
|
|
228
|
+
socket.destroy();
|
|
229
|
+
} catch {
|
|
230
|
+
try {
|
|
231
|
+
socket.destroy();
|
|
232
|
+
} catch {
|
|
233
|
+
// ignore
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
});
|
|
237
|
+
|
|
238
|
+
await new Promise((resolvePromise) => server.listen({ port, host: '0.0.0.0' }, resolvePromise));
|
|
239
|
+
// eslint-disable-next-line no-console
|
|
240
|
+
console.log(`[ui-gateway] ready on http://127.0.0.1:${port}`);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
main().catch((err) => {
|
|
244
|
+
// eslint-disable-next-line no-console
|
|
245
|
+
console.error(err);
|
|
246
|
+
process.exit(1);
|
|
247
|
+
});
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import './utils/env/env.mjs';
|
|
2
|
+
|
|
3
|
+
import { rm } from 'node:fs/promises';
|
|
4
|
+
import { existsSync } from 'node:fs';
|
|
5
|
+
import { join } from 'node:path';
|
|
6
|
+
import { spawnSync } from 'node:child_process';
|
|
7
|
+
|
|
8
|
+
import { parseArgs } from './utils/cli/args.mjs';
|
|
9
|
+
import { printResult, wantsHelp, wantsJson } from './utils/cli/cli.mjs';
|
|
10
|
+
import { expandHome } from './utils/paths/canonical_home.mjs';
|
|
11
|
+
import { getHappyStacksHomeDir, getRootDir, getStacksStorageRoot } from './utils/paths/paths.mjs';
|
|
12
|
+
import { getRuntimeDir } from './utils/paths/runtime.mjs';
|
|
13
|
+
import { getCanonicalHomeEnvPath } from './utils/env/config.mjs';
|
|
14
|
+
import { isSandboxed, sandboxAllowsGlobalSideEffects } from './utils/env/sandbox.mjs';
|
|
15
|
+
import { removeSwiftbarPlugins, resolveSwiftbarPluginsDir } from './utils/menubar/swiftbar.mjs';
|
|
16
|
+
import { banner, bullets, cmd, kv, sectionTitle } from './utils/ui/layout.mjs';
|
|
17
|
+
import { cyan, dim, green, yellow } from './utils/ui/ansi.mjs';
|
|
18
|
+
|
|
19
|
+
function resolveWorkspaceDir({ rootDir, homeDir }) {
|
|
20
|
+
// Uninstall should never default to deleting the repo root (getWorkspaceDir() can fall back to cliRootDir).
|
|
21
|
+
const fromEnv = (process.env.HAPPIER_STACK_WORKSPACE_DIR ?? '').trim();
|
|
22
|
+
if (fromEnv) {
|
|
23
|
+
return expandHome(fromEnv);
|
|
24
|
+
}
|
|
25
|
+
void rootDir;
|
|
26
|
+
return join(homeDir, 'workspace');
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
async function main() {
|
|
30
|
+
const argv = process.argv.slice(2);
|
|
31
|
+
const { flags } = parseArgs(argv);
|
|
32
|
+
const json = wantsJson(argv, { flags });
|
|
33
|
+
if (wantsHelp(argv, { flags }) || argv.includes('help')) {
|
|
34
|
+
printResult({
|
|
35
|
+
json,
|
|
36
|
+
data: { flags: ['--remove-workspace', '--remove-stacks', '--yes', '--global'], json: true },
|
|
37
|
+
text: [
|
|
38
|
+
'[uninstall] usage:',
|
|
39
|
+
' hstack uninstall [--json] # dry-run',
|
|
40
|
+
' hstack uninstall --yes [--json]',
|
|
41
|
+
' hstack uninstall --remove-workspace --yes',
|
|
42
|
+
' hstack uninstall --remove-stacks --yes',
|
|
43
|
+
' hstack uninstall --global --yes # also remove global OS integrations (services/SwiftBar) even in sandbox mode',
|
|
44
|
+
'',
|
|
45
|
+
'notes:',
|
|
46
|
+
' - default removes: runtime, shims, cache, SwiftBar assets + plugin files, and LaunchAgent services',
|
|
47
|
+
' - stacks under ~/.happier/stacks are kept unless --remove-stacks is provided',
|
|
48
|
+
].join('\n'),
|
|
49
|
+
});
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const rootDir = getRootDir(import.meta.url);
|
|
54
|
+
const homeDir = getHappyStacksHomeDir();
|
|
55
|
+
const runtimeDir = getRuntimeDir();
|
|
56
|
+
const workspaceDir = resolveWorkspaceDir({ rootDir, homeDir });
|
|
57
|
+
|
|
58
|
+
const yes = flags.has('--yes');
|
|
59
|
+
const removeWorkspace = flags.has('--remove-workspace');
|
|
60
|
+
const removeStacks = flags.has('--remove-stacks');
|
|
61
|
+
const allowGlobal = flags.has('--global') || sandboxAllowsGlobalSideEffects();
|
|
62
|
+
|
|
63
|
+
const dryRun = !yes;
|
|
64
|
+
|
|
65
|
+
if (!json) {
|
|
66
|
+
// eslint-disable-next-line no-console
|
|
67
|
+
console.log('');
|
|
68
|
+
// eslint-disable-next-line no-console
|
|
69
|
+
console.log(banner('uninstall', { subtitle: 'Remove hstack runtime + shims (and optionally workspace/stacks).' }));
|
|
70
|
+
// eslint-disable-next-line no-console
|
|
71
|
+
console.log('');
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// 1) Stop/uninstall services best-effort.
|
|
75
|
+
if (!dryRun && (!isSandboxed() || allowGlobal)) {
|
|
76
|
+
try {
|
|
77
|
+
spawnSync(process.execPath, [join(rootDir, 'scripts', 'service.mjs'), 'uninstall'], {
|
|
78
|
+
stdio: json ? 'ignore' : 'inherit',
|
|
79
|
+
env: process.env,
|
|
80
|
+
cwd: rootDir,
|
|
81
|
+
});
|
|
82
|
+
} catch {
|
|
83
|
+
// ignore
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// 2) Remove SwiftBar plugin files best-effort.
|
|
88
|
+
const menubar =
|
|
89
|
+
isSandboxed() && !allowGlobal
|
|
90
|
+
? { ok: true, removed: false, pluginsDir: null, skipped: 'sandbox' }
|
|
91
|
+
: dryRun
|
|
92
|
+
? { ok: true, removed: false, pluginsDir: resolveSwiftbarPluginsDir() }
|
|
93
|
+
: await removeSwiftbarPlugins().catch(() => ({ ok: false, removed: false, pluginsDir: null }));
|
|
94
|
+
|
|
95
|
+
// 3) Remove home-managed runtime + shims + extras + cache + env pointers.
|
|
96
|
+
const canonicalEnv = getCanonicalHomeEnvPath();
|
|
97
|
+
const toRemove = [
|
|
98
|
+
join(homeDir, 'bin'),
|
|
99
|
+
join(homeDir, 'runtime'),
|
|
100
|
+
join(homeDir, 'extras'),
|
|
101
|
+
join(homeDir, 'cache'),
|
|
102
|
+
join(homeDir, '.env'),
|
|
103
|
+
join(homeDir, 'env.local'),
|
|
104
|
+
// Stable pointer file (can differ from homeDir for custom installs).
|
|
105
|
+
canonicalEnv,
|
|
106
|
+
];
|
|
107
|
+
const removedPaths = [];
|
|
108
|
+
for (const p of toRemove) {
|
|
109
|
+
try {
|
|
110
|
+
if (existsSync(p)) {
|
|
111
|
+
if (!dryRun) {
|
|
112
|
+
await rm(p, { recursive: true, force: true });
|
|
113
|
+
}
|
|
114
|
+
removedPaths.push(p);
|
|
115
|
+
}
|
|
116
|
+
} catch {
|
|
117
|
+
// ignore
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// 4) Optionally remove workspace (repo clone + worktrees).
|
|
122
|
+
if (removeWorkspace) {
|
|
123
|
+
const ws = expandHome(workspaceDir);
|
|
124
|
+
if (existsSync(ws)) {
|
|
125
|
+
if (!dryRun) {
|
|
126
|
+
await rm(ws, { recursive: true, force: true });
|
|
127
|
+
}
|
|
128
|
+
removedPaths.push(ws);
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// 5) Optionally remove stacks data.
|
|
133
|
+
if (removeStacks) {
|
|
134
|
+
const stacksRoot = getStacksStorageRoot();
|
|
135
|
+
if (existsSync(stacksRoot)) {
|
|
136
|
+
if (!dryRun) {
|
|
137
|
+
await rm(stacksRoot, { recursive: true, force: true });
|
|
138
|
+
}
|
|
139
|
+
removedPaths.push(stacksRoot);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
printResult({
|
|
144
|
+
json,
|
|
145
|
+
data: {
|
|
146
|
+
ok: true,
|
|
147
|
+
homeDir,
|
|
148
|
+
runtimeDir,
|
|
149
|
+
workspaceDir,
|
|
150
|
+
removedPaths,
|
|
151
|
+
menubar,
|
|
152
|
+
removeWorkspace,
|
|
153
|
+
removeStacks,
|
|
154
|
+
dryRun,
|
|
155
|
+
},
|
|
156
|
+
text: [
|
|
157
|
+
dryRun ? `${yellow('!')} dry run (no changes made)` : `${green('✓')} complete`,
|
|
158
|
+
dryRun ? `${dim('Re-run with')} ${cmd('hstack uninstall --yes')} ${dim('to apply removals.')}` : null,
|
|
159
|
+
'',
|
|
160
|
+
sectionTitle('Plan'),
|
|
161
|
+
bullets([
|
|
162
|
+
kv('home:', cyan(homeDir)),
|
|
163
|
+
kv('workspace:', removeWorkspace ? `${cyan(workspaceDir)} ${dim('(will remove)')}` : `${cyan(workspaceDir)} ${dim('(keep)')}`),
|
|
164
|
+
kv('stacks:', removeStacks ? `${cyan(getStacksStorageRoot())} ${dim('(will remove)')}` : `${cyan(getStacksStorageRoot())} ${dim('(keep)')}`),
|
|
165
|
+
menubar?.pluginsDir ? kv('swiftbar:', `${menubar.pluginsDir}${menubar?.skipped ? ` ${dim('(skipped)')}` : ''}`) : null,
|
|
166
|
+
].filter(Boolean)),
|
|
167
|
+
'',
|
|
168
|
+
sectionTitle('Removed'),
|
|
169
|
+
removedPaths.length ? bullets(removedPaths.map((p) => p)) : dim('(nothing)'),
|
|
170
|
+
]
|
|
171
|
+
.filter(Boolean)
|
|
172
|
+
.join('\n'),
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
main().catch((err) => {
|
|
177
|
+
console.error('[uninstall] failed:', err);
|
|
178
|
+
process.exit(1);
|
|
179
|
+
});
|