mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-29 22:23:01 +00:00
28 KiB
28 KiB
Project Memory
Quick reference for anyone starting with Claude on this project. Updated by the memory-keeper agent.
Fixes & Gotchas
- ServiceBlockingGate CORS errors — The gate calls
openhumanServiceStatus()andopenhumanAgentServerStatus()at startup. These usedcallCoreRpc()which falls back to rawfetch()when socket isn't connected yet, causing CORS errors. Fix: route throughinvoke('core_rpc_relay')instead (Tauri IPC, no CORS). - Socket not connected at startup —
SocketProvideronly connects when a Reduxauth.tokenis set. At fresh launch (no token), socket is null, so anycallCoreRpc()call falls back tofetch(). Always useinvoke('core_rpc_relay')for local sidecar RPC calls. openhuman.agent_server_statusdoesn't exist — This RPC method is not registered in the core. The gate checks it but it always errors. The gate passes if either service is Running OR agent server is running OR core is reachable.- Cargo incremental builds can serve stale UI — If the app shows old frontend after a Rust rebuild, run
cargo clean --manifest-path app/src-tauri/Cargo.tomlbefore rebuilding. build.rsmissingrerun-if-changedcauses stale ACL / "Command not found" at runtime —app/src-tauri/build.rshad nocargo:rerun-if-changeddirectives forpermissions/orcapabilities/. Adding/changing TOML or JSON files there did not re-triggertauri-build, so ACL tables were stale and registered commands silently failed. Fixed by addingprintln!("cargo:rerun-if-changed=permissions")andprintln!("cargo:rerun-if-changed=capabilities")inbuild.rs(issue #270). Also: any new Tauri command must have a matching entry in apermissions/TOML file or it will hit the same error even if it is ingenerate_handler!.- macOS deep links require .app bundle —
pnpm tauri devdoes NOT support deep links. Must usepnpm tauri build --debug --bundles app.
Strict Rules
- No dynamic imports in
app/src/— Use staticimportat file top. Guard call sites withtry/catchfor Tauri/non-Tauri safety. See CLAUDE.md. - Service RPC calls must use Tauri IPC — Never use
callCoreRpc()for service operations. Useinvoke('core_rpc_relay', { request: { method, params } }). - All frontend env vars go through
app/src/utils/config.ts— Never readimport.meta.env.VITE_*directly in other files. Import from config.ts instead. See.env.examplefiles for the full list. - Always run checks before commit —
pnpm workspace openhuman-app compile,pnpm lint,pnpm format:check,pnpm build,pnpm tauri dev. Husky hooks enforce some but run all manually first. - Stage specific files — Never
git add -A. Alwaysgit add <specific-files>.
Workflow
- Agent order: architectobot (plan) → user approval → codecrusher (implement) → architectobot (verify)
- Always read CLAUDE.md first before any issue work
- Ask user when in doubt — never assume scope or approach
- PRs target upstream —
tinyhumansai/openhumanmain branch, not fork
Local AI Presets
- Tier system lives in
src/openhuman/local_ai/presets.rs— single source of truth for tier→model ID mapping. To change default models for a release, editall_presets()there. - Device detection uses
sysinfocrate (src/openhuman/local_ai/device.rs). Apple Silicon = GPU always; others = best-effort. OPENHUMAN_LOCAL_AI_TIERenv var overrides the selected tier at config load time (inload.rs).- Frontend tier selector is in
LocalModelPanel.tsxunder Settings > Local AI Model. UsescoreRpcClientto call 3 RPC methods:local_ai_device_profile,local_ai_presets,local_ai_apply_preset. - Default config maps to Medium tier (
gemma3:4b-it-qat). If someone changesmodel_ids.rsdefaults, they should keeppresets.rsin sync.
Core process (in-process, no sidecar)
- Core runs in-process as a tokio task inside the Tauri host (sidecar removed in PR #1061). Lifecycle owned by
core_process::CoreProcessHandleinapp/src-tauri/src/core_process.rs. pnpm core:stageis a no-op echo — there is notarget/debug/openhuman-corebinary to copy intoapp/src-tauri/binaries/. Rebuilding viapnpm dev:appis enough to pick up new RPC methods in the in-process server.- Token auth: per-launch hex bearer in
OPENHUMAN_CORE_TOKEN, exposed to the renderer viacore_rpc_tokenTauri command. Always call RPC throughinvoke('core_rpc_relay', { request: { method, params } })— avoids the CORS preflightfetch()would trigger. - Stale-listener policy (#1130): if the port is already in use, the handle probes
GET /to decide if it's an OpenHuman core, then term/force-kill with PID revalidation guarding against PID reuse. SetOPENHUMAN_CORE_REUSE_EXISTING=1to attach to a manually-startedopenhuman-core servefor debugging. - Default port
7788. Stage token (when running standalone):~/.openhuman-staging/core.tokenunderOPENHUMAN_APP_ENV=staging.
Onboarding System
- OnboardingOverlay is a portal, not a route — mounted in
App.tsx, renders viacreatePortalat z-[9999]. There is no/onboardingroute inAppRoutes.tsx. Gating is purely Redux + workspace flag. - Deferred onboarding —
onboardingDeferredByUserinauthSlice.ts(persisted via redux-persist) durably tracks when a user clicks "Set up later".SetupBanner.tsxprovides the resume path. selectHasIncompleteOnboardingis unused in production code — only tested. Don't use it for new features.- Logout must clear onboarding state —
_clearTokenresetsisOnboardedByUser+isAnalyticsEnabledByUser. Workspace flag (.skip_onboardingfile) is cleared viaopenhumanWorkspaceOnboardingFlagSet(false)in SettingsHome logout, clearAllAppData, and UserProvider auth recovery. All three paths must stay in sync. OnboardingOverlay local state (userLoadTimedOut,onboardingCompleted) is reset via auseEffectwatchingtoken— iftokenbecomes null, both reset to initial values (#192). - LocalAI download errors must surface —
LocalAIStephas anonDownloadErrorcallback prop;Onboarding.tsxrenders an error banner viacreatePortalwhen it fires. Without this, download failures are silently swallowed (#194). formatBytes/formatEta/progressFromStatus— shared inapp/src/utils/localAiHelpers.ts. Home.tsx and LocalModelPanel.tsx still have local copies (can be migrated later).- Notification z-index stacking — ErrorReportNotification: z-[10000] bottom-right. OnboardingOverlay: z-[9999]. LocalAIDownloadSnackbar: z-[9998] bottom-left.
- React Compiler lint —
useCallbackdeps must match the full inferred closure. Usinguser?._idas dep when the closure capturesusertriggerspreserve-manual-memoization. Useuseras the dep instead. setStatein effects — ESLintreact-hooks/set-state-in-effectcatches synchronous setState in useEffect bodies. Use lazy initializers, compute at render, or event handlers instead.- Walkthrough is multi-page (9 steps) — Uses react-joyride v3
Step.beforeasync hooks to navigate between pages (/home → /chat → /skills → /intelligence → /settings → /home). Steps factory:createWalkthroughSteps(navigate)inwalkthroughSteps.ts.waitForTarget(selector, timeout)polls via rAF until DOM target appears. Re-trigger from Settings viaresetWalkthrough()+walkthrough:restartCustomEvent.AppWalkthroughis mounted inside Router context (can useuseNavigatedirectly). BottomTabBar attr istab-notifications(nottab-automation). OnboardingNextButtonis the shared primary CTA — All onboarding steps useapp/src/pages/onboarding/components/OnboardingNextButton.tsx. New steps must use this component for the primary navigation button.- Onboarding is 3 steps: Welcome(0) → Skills(1) → ContextGathering(2) — Referral step was removed (issue #752).
ReferralApplyStep.tsxis preserved but unused.referralApiis still used on the Rewards page.WelcomeStepno longer hasnextDisabled/nextLoading/nextLoadingLabelprops (those gated on referral stats prefetch). - Recovery Phrase moved to Settings — MnemonicStep was removed from onboarding (was step 5). The same BIP39 generate/import functionality now lives in
app/src/components/settings/panels/RecoveryPhrasePanel.tsx, accessible via Settings > Recovery Phrase. Onboarding completion logic moved intohandleSkillsNextinOnboarding.tsx. - E2E tests find onboarding buttons by label text —
shared-flows.ts,login-flow.spec.ts,auth-access-control.spec.ts, andvoice-mode.spec.tslocate buttons by their visible label. Changing button labels requires updating all four files. Note:voice-mode.spec.tsstill references legacy labels that don't match current steps (pre-existing tech debt). ScreenPermissionsStepalways shows Continue — The Continue button is always visible regardless of permission grant status, allowing users to skip the permissions step (#274).- OnboardingOverlay RPC/Redux race condition —
getOnboardingCompleted()RPC can fail (sidecar not ready, timeout); the old catch block hardcodedsetOnboardingCompleted(false), ignoring the persistedisOnboardedByUserRedux flag. Fix: readselectIsOnboardedfromauthSelectors.tsin the catch block as fallback, and combine both flags inshouldShow:!onboardingCompleted && !isOnboardedRedux. Either flag beingtrueis sufficient to skip onboarding (#197). DEV_FORCE_ONBOARDINGwas a no-op — The old ternary had identical branches; fixed to actually force-show when the flag is set.isOnboardedReduxmust be in useEffect deps — When reading a selector value inside a useEffect, add it to the dependency array or the effect won't re-run when Redux state changes.
CoreStateProvider & Auth Bootstrap
- Auth session tokens are NOT in Redux persist — They live entirely in the Rust sidecar, fetched via
fetchCoreAppSnapshot()RPC.PersistGateonly gates non-auth state (AI config, threads, channel connections).CoreStateProviderbootstrap is the critical auth path. CoreStateProviderprematureisBootstrapping: falsecauses blank Settings — If the initial RPC call fails (sidecar still starting), the old error handler setisBootstrapping: falseimmediately, causingProtectedRouteto redirect to/before the 3s poll could recover. Fix (issue #413): keepisBootstrapping: trueon initial failure, let the poll retry, give up after 5 attempts (~15s).CoreStateProvideris consumed by ~25 components — Changes to its state shape or bootstrap behavior affect routes, socket, onboarding, nav, settings, and hooks. Treat it as a high-blast-radius file.- Settings is a full route, not a modal —
/settings/*uses nested<Routes>inSettings.tsx. The.claude/rules/15-settings-modal-system.mddoc describing a portal/modal approach is outdated. A catch-all<Route path="*">redirects unmatched sub-paths to/settings. PersistGate loading={null}causes flash — Changed toloading={<RouteLoadingScreen />}(issue #413).RouteLoadingScreenaccepts an optionallabelprop (defaults to "Initializing OpenHuman...") and can be rendered with no props.
Build Blockers: macOS Tahoe + whisper-rs
whisper-rsbreakscargo buildon macOS Tahoe (Apple Silicon) — Added in main viawhisper-rs = "0.16"(voice feature #178). Apple clang 21+ refuses-mcpu=nativewhen--target=arm64-apple-macosxis also set. This is NOT fixable by updating CLT.- Root cause — ggml cmake sets
GGML_NATIVE=ONby default; the cmake crate appends--targetto clang, triggering the incompatibility. Happens even with the latest toolchain. - Workaround — Patch
~/.cargo/registry/src/index.crates.io-*/whisper-rs-sys-0.15.0/build.rs: addconfig.define("GGML_NATIVE", "OFF");(fortarget_os = "macos" && target_arch = "aarch64") just before theconfig.build()call. - Patch is fragile — Resets on
cargo clean, crate version bump, or registry re-download. Deleting build cache alone (target/debug/build/whisper-rs-sys-*) is NOT enough — cmake regenerates with the same bad flags. - Correct fix — Needs an upstream patch in
whisper-rs-sysor a Cargo feature to opt out ofGGML_NATIVEon Apple Silicon cross-builds.
UI Redesign (Light Theme — April 2026)
- Full dark-to-light redesign shipped — All pages, components, and settings panels converted from dark glass-morphism to clean light theme based on Figma designs by Mithil (
OpenHuman-Prodfile, node2094-250136for tokens). - Design tokens saved in
my_docs/figma-design-tokens.md— neutral grayscale, primary blue#2F6EF4, success#34C759, alert#E8A728, error#EF4444, SF Pro typography scale. - Navigation changed: Left
MiniSidebar→ bottomBottomTabBar(Home, Chat, Skills, Intelligence, Automation, Notification). Settings accessible via gear icon on Home page header. - MiniSidebar.tsx retained (not deleted) as backup.
BottomTabBar.tsxis the active nav component. - Agent message bubbles need
bg-stone-200/80(notbg-stone-100) on#F5F5F5background —bg-stone-100is nearly invisible. - ~55 files touched — purely CSS class changes, zero logic/handler/state changes.
Upsell / Billing (Phase 1 — Issue #403)
- Upsell components live in
app/src/components/upsell/—UpsellBanner,UsageLimitModal,GlobalUpsellBanner,upsellDismissState. Shared hook:app/src/hooks/useUsageState.ts. - Usage data sources —
creditsApi.getTeamUsage()returnsTeamUsage(rolling 10h spend/cap + weekly budget/remaining).billingApi.getCurrentPlan()returnsCurrentPlanData(plan tier, caps, subscription status). Both go throughcallCoreCommand(core RPC). No Redux slice — all local hook state. - Module-level cache in
useUsageState—_cachevariable with 60s TTL prevents duplicate API calls when multiple components mount simultaneously. New pattern; do not remove. - Banner dismiss state uses localStorage (prefix
openhuman:upsell:), not Redux — consistent with CLAUDE.md exception for ephemeral UI state. - Phased rollout — Phase 1 = banners + limit modal + hook. Phase 2 = onboarding upsell + analytics. Phase 3 = remote config + A/B testing.
- "5-hour" label stragglers in Conversations.tsx —
LimitPilllabel and its hover tooltip still say "5h" / "5-hour". Commit 8c52236's "10-hour" terminology refactor missed those two spots. getTeamUsage()now normalizes vianormalizeTeamUsage()— Added in issue #482. The Rust sidecar passes backend JSON through opaquely (src/openhuman/team/ops.rs), so the TS client must normalize field names and types. Pattern matches existingnormalizeCreditBalance()in the same file. Any new billing API that returns raw backend data should follow the same normalize-at-the-client pattern.- Two separate
TeamUsagetypes exist —creditsApi.ts:24(billing: cycle budget, limits) andtypes/team.ts:11(team model: daily token limit). Different import paths, no collision, but confusing.
Settings & Skills Reorganization (Issue #396)
- Settings is NOT a modal — It's a full route (
/settings/*) with nested<Routes>. The.claude/rules/15-settings-modal-system.mddoc is outdated. - SettingsHeader breadcrumbs — All panels now receive
breadcrumbsfromuseSettingsNavigation()hook. The hook derives breadcrumbs from the current route path. When adding a new settings panel, destructurebreadcrumbsfrom the hook and pass to<SettingsHeader>. - Standard settings padding — All settings panel content areas use
p-4 space-y-4. Don't deviate. - Dead code removed —
TauriCommandsPanel,useSettingsAnimation,SettingsPanelLayout,SettingsBackButton,ProfilePanel,AdvancedPanel,SkillsPanel,SkillsGridwere all deleted. Don't re-create them. - Skills page is the single management surface — Browser Access toggle moved from SkillsPanel to the Skills page. There is no
/settings/skillsroute anymore. - Panel decomposition — LocalModelPanel, AutocompletePanel, CronJobsPanel, ScreenIntelligencePanel were split into sub-components in subdirectories. Each orchestrator is ≤ ~300 lines.
- UnifiedSkillCard — All skill types (built-in, channels, 3rd party) use
UnifiedSkillCardfromapp/src/components/skills/SkillCard.tsx. Secondary actions use an overflow menu.data-testidattributes (skill-sync-button-*,skill-debug-button-*) must be preserved. - SkillSearchBar + SkillCategoryFilter — New components in
app/src/components/skills/for search and category filtering on the Skills page.
Composio Identity (Issue #691)
ProviderUserProfile.profile_url— New optional field on the struct insrc/openhuman/composio/providers/types.rs. Providers should populate it when available from upstream profile payloads.identity_setcallback in default flow —ComposioProvider::on_connection_created()insrc/openhuman/composio/providers/traits.rsnow callsidentity_set(&profile)after profile fetch.composio_get_user_profileinsrc/openhuman/composio/ops.rsalso routes persistence throughidentity_set.- Facet key format for connected identities —
skill:{toolkit}:{identifier}:{field}(e.g.skill:gmail:user@example.com:profile_url). UseFacetType::Skillwhen storing. Toolkit and identifier together form the unique identity; field is the attribute name. - Connected identities loader/renderer —
src/openhuman/composio/providers/profile.rscontainsload_connected_identities()(readsskill:*facets) andrender_connected_identities_section()(formats markdown for prompt injection). Keep rendering logic there, not in prompt modules. - Prompt injection helper —
render_connected_identitiesis imported and called inwelcome/prompt.rs,orchestrator/prompt.rs, andintegrations_agent/prompt.rsto inject a "Connected accounts:" block. Add it to any new agent prompt that needs Composio context.
Agent Timeout & Cancellation (Issue #715)
- Frontend silence timer, not a wall-clock limit —
armSilenceTimerinapp/src/pages/Conversations.tsxfires if 120s (fixed to 600s) pass with zero inference progress events. It re-arms on everytool_call,tool_result,iteration_start, etc., so long-running tool chains that keep emitting events are not cut off. - Rust-side HTTP timeout is separate —
src/openhuman/providers/compatible.rssets a 120sreqwestclient timeout on LLM calls. Not changed in #715; relevant if a single LLM round-trip itself stalls for >2 min. - Manual cancel path —
chatCancel()inapp/src/services/chatService.ts→openhuman.channel_web_cancelRPC →cancel_chat()insrc/openhuman/channels/providers/web.rs. Fully implemented; the silence timer is an automatic fallback.
Webhook & Cron Triggers (Issue #726)
- Webhook bus was hardcoded 410 —
src/openhuman/webhooks/bus.rsWebhookRequestSubscriber::handle()returned 410 "skill runtime removed" for ALL incoming webhooks. Now routes to echo/agent/skill/404 based onTunnelRegistration.target_kind. - WebhookRouter access from bus.rs — Router lives in
SocketManager::shared.webhook_router(waspub(super)). Addedpub fn webhook_router(&self)accessor onSocketManager; bus.rs reaches it viaglobal_socket_manager().webhook_router(). TriggerSourceenum: three update points — Adding new variants requires updating: (a)slug()match inenvelope.rs, (b) exhaustive test match, (c)handle_triage_evaluatestring match inagent/schemas.rs(usesp.source.as_str(), not the enum directly).CronJobTriggered/CronJobCompletedwere never published — Defined inevents.rsand used in tests but never emitted. Now published byexecute_and_persist_job()inscheduler.rs. Adding fields to these variants requires updating ~5 construction sites:cron/bus.rs,composio/bus.rs,tree_summarizer/bus.rs,channels/proactive.rs, andevents.rstests.- Webhook ops were all stubs —
list_registrations,list_logs,clear_logs,register_echo,unregister_echoinops.rsall returned empty. Now backed by the real router via aget_router()helper. GGML_NATIVE=OFFfor cargo check — Sidestepping the whisper-rs macOS Tahoe build blocker forcargo check:GGML_NATIVE=OFF cargo check --manifest-path Cargo.toml. Allows compilation checks without the cmake failure.
Agent Runtime Behavior
sandbox_mode = "read_only"in agent.toml is metadata only — Never enforced at runtime. Actual security policy comes fromconfig.autonomy(global), defaulting toSupervised. Adding write tools to a read-only agent works at runtime but violates documented intent.max_iterationshard-fails, not graceful truncation — When the welcome agent (or any agent) hitsmax_iterations,tool_loop.rs:705callsanyhow::bail!. There is no graceful truncation. Budget iterations carefully.- Archivist agent auto-extracts memory — It processes conversation history and persists preferences/facts into
user_profileautomatically. Agents do not need to explicitly callmemory_storeto persist conversational insights. cargo check/cargo testfails on main (llama.cpp cmake) —llama.cpp's cmake build script uses-mcpu=native, which is unsupported on Apple clang 21+ with--target=arm64-apple-macosx. Pre-existing issue onmain, not branch-specific. Frontend checks (typecheck, lint, format) are unaffected. Workaround: setGGML_NATIVE=OFF(same fix as whisper-rs above).
Cron Scheduler
- Cron loop was never spawned —
tokio::spawn(cron::scheduler::run(config))was missing fromsrc/core/jsonrpc.rs. Added after the update scheduler spawn, gated onconfig.cron.enabled. Without it, scheduled jobs never auto-fire at startup (issue #830).
Build & Tooling Gotchas
pnpm typecheckscript was renamed — Checkapp/package.jsonfor the current name; as of issue #830 work, usepnpm workspace openhuman-app compilefor tsc checks.- PR #745 (command palette) merged without its deps —
@radix-ui/react-dialog,cmdk, and@testing-library/user-eventare missing frompackage.json. Install them if tsc fails after syncing main. - Pre-push hooks fail on upstream lint warnings — ESLint warns on
setStatein effects and unusedeslint-disabledirectives inherited from upstream. Use--no-verifyonly when the lint errors are pre-existing upstream issues, not new code.
Mascot Native Window (macOS)
- Not a Tauri window — The floating mascot is a native
NSPanel+WKWebViewinapp/src-tauri/src/mascot_native_window.rs. It usesignoresMouseEvents=true(click-through); interaction is detected by pollingNSEventvia a Foundation timer. macOS-only, uses objc2 bindings. MainThreadOnlyimport must stay — Required byWKWebView::alloc()and other AppKit allocators even if not explicitly referenced in user code. Removing it causes compile errors.NSEvent::pressedMouseButtonsnot in typed objc2-appkit bindings — Must be called viamsg_send!(objc2::class!(NSEvent), pressedMouseButtons)instead of the typed API.- WKWebView IPC via
evaluateJavaScript— The mascot webview is NOT a Tauri runtime; Tauriinvoke/emitdo NOT work. Rust-to-mascot communication usesmsg_send!(webview, evaluateJavaScript:completionHandler:)to dispatchnew CustomEvent(...)onwindow. React listens withaddEventListener. This is NOT subject to the CEF JS injection ban (that only applies towebview_accounts/third-party origins). MascotCharactersleepingprop — Drives the sleep animation (eye close + Zzz).sleepStartSecandsleepFullSecare hardcoded at 2.5s and 4.0s — they are NOT configurable props. Only togglesleeping: boolean.FACE_PRESETSis a strictRecord— Typed asRecord<Exclude<MascotFace, 'normal'>, FacePreset>inGhosty.tsx. Adding a newMascotFaceunion variant requires adding a matching entry toFACE_PRESETSor it won't compile._webviewinspawn_drag_timer— TheWKWebViewcaptured in the drag timer closure was originally unused (prefixed_). It can be used forevaluateJavaScriptcalls during the hover polling loop (e.g. to trigger blink/wake events from Rust).- FrameProvider loops — sleep animation resets —
FrameProviderusesframe % durationInFramesso animations loop. DefaultDURATION_FRAMES = FPS * 6(6s). Sleep animation completes at 4s, then eyes re-open at 6s when frame resets to 0. Fix: use a much longerdurationInFramesfor sleep face (e.g.FPS * 600) so the loop never triggers while sleeping. - Hover detection needs circular hitbox — The mascot panel is 79x79 but the character is visually circular. Using the full AABB (
cursor_in_panel) for hover triggers false positives when cursor is in a panel corner. Use distance-from-center check instead. Also suppress hover events for ~1s after panel shows to let the webview load.
Google Analytics (Issue #1479)
react-ga4injects a<script>tag at runtime — It appends agtag.js<script>to<head>dynamically. This works becausetauri.conf.jsonCSP hashttps:indefault-srcandconnect-src. If CEF ever tightensscript-srcseparately, switch to GA4 Measurement Protocol (pure HTTP POST, no script injection).- Analytics module pattern —
app/src/services/analytics.tsis the single owner ofinitGA,trackPageView,trackEvent, plus anALLOWED_EVENTSallowlist. Never callReactGAdirectly from components; go through this module. - Triple gate before any GA call —
isAnalyticsEnabled()(user consent) ANDGA_MEASUREMENT_IDenv var present AND!IS_DEV. All three must pass or tracking is silently skipped. - Route tracking location —
useLocation()effect wired in AppShell (not individual pages). All page views emit from one place. - Capability catalog must stay in sync —
src/openhuman/about_app/catalog.rsneeds an entry when a new user-visible feature ships. GA was added there as part of issue #1479.
PR Checklist CI
- N/A items need a checked checkbox —
scripts/check-pr-checklist.mjsrequires- [x] N/A: <reason>. Using- [ ] N/A:(unchecked) fails the check even though the text starts with "N/A:".
Config System (Rust)
- Config corruption recovery —
parse_config_with_recoveryinsrc/openhuman/config/schema/load.rs: try primary → try.bak→ archive corrupt file →Config::default(). Guarantees the app always starts even with a corrupt config. - New config fields must use
#[serde(default = "fn_name")]— Bare#[serde(default)]gives0/false, not the meaningful domain default. Define a named fn returning the correct value and reference it by name. .bakis now permanent —Config::save()no longer deletes.bakon success. It always reflects the last-known-good config before the most recent write.load_from_default_pathshas zero callers — Debug utility only; not user-facing.- Config test module path —
openhuman::config::schema::load::tests. Run withcargo test -- config::schema::load::tests.
Environment
- Core port —
7788(default; in-process inside Tauri host). Check withlsof -i :7788. pnpm core:stage— no-op (sidecar removed in PR #1061). Usepnpm dev:appfor full Tauri+core dev.- Kill stuck processes —
lsof -i :7788thenkill <PID>. Useful whendev:appreports a stale listener and you want to force a fresh boot rather than relying on the handle's auto-recovery. - Skills runtime removed — the QuickJS /
rquickjsruntime is gone;src/openhuman/skills/is metadata-only ("Legacy skill metadata helpers retained after QuickJS runtime removal"). Skill execution surfaces are being rebuilt; don't assume a.skillcan run end-to-end without checking the current code.