@murphai/murph 0.1.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/CHANGELOG.md +2009 -0
- package/LICENSE +674 -0
- package/README.md +97 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/assistant/automation/run-loop.d.ts +21 -0
- package/dist/assistant/automation/run-loop.d.ts.map +1 -0
- package/dist/assistant/automation/run-loop.js +31 -0
- package/dist/assistant/automation/run-loop.js.map +1 -0
- package/dist/assistant/automation.d.ts +10 -0
- package/dist/assistant/automation.d.ts.map +1 -0
- package/dist/assistant/automation.js +5 -0
- package/dist/assistant/automation.js.map +1 -0
- package/dist/assistant/cron.d.ts +19 -0
- package/dist/assistant/cron.d.ts.map +1 -0
- package/dist/assistant/cron.js +59 -0
- package/dist/assistant/cron.js.map +1 -0
- package/dist/assistant/doctor-security.d.ts +15 -0
- package/dist/assistant/doctor-security.d.ts.map +1 -0
- package/dist/assistant/doctor-security.js +172 -0
- package/dist/assistant/doctor-security.js.map +1 -0
- package/dist/assistant/doctor.d.ts +5 -0
- package/dist/assistant/doctor.d.ts.map +1 -0
- package/dist/assistant/doctor.js +527 -0
- package/dist/assistant/doctor.js.map +1 -0
- package/dist/assistant/outbox.d.ts +19 -0
- package/dist/assistant/outbox.d.ts.map +1 -0
- package/dist/assistant/outbox.js +28 -0
- package/dist/assistant/outbox.js.map +1 -0
- package/dist/assistant/provider-catalog.d.ts +61 -0
- package/dist/assistant/provider-catalog.d.ts.map +1 -0
- package/dist/assistant/provider-catalog.js +205 -0
- package/dist/assistant/provider-catalog.js.map +1 -0
- package/dist/assistant/service.d.ts +85 -0
- package/dist/assistant/service.d.ts.map +1 -0
- package/dist/assistant/service.js +26 -0
- package/dist/assistant/service.js.map +1 -0
- package/dist/assistant/status.d.ts +9 -0
- package/dist/assistant/status.d.ts.map +1 -0
- package/dist/assistant/status.js +16 -0
- package/dist/assistant/status.js.map +1 -0
- package/dist/assistant/stop.d.ts +20 -0
- package/dist/assistant/stop.d.ts.map +1 -0
- package/dist/assistant/stop.js +142 -0
- package/dist/assistant/stop.js.map +1 -0
- package/dist/assistant/store.d.ts +6 -0
- package/dist/assistant/store.d.ts.map +1 -0
- package/dist/assistant/store.js +21 -0
- package/dist/assistant/store.js.map +1 -0
- package/dist/assistant/ui/ink.d.ts +247 -0
- package/dist/assistant/ui/ink.d.ts.map +1 -0
- package/dist/assistant/ui/ink.js +2417 -0
- package/dist/assistant/ui/ink.js.map +1 -0
- package/dist/assistant/ui/theme.d.ts +64 -0
- package/dist/assistant/ui/theme.d.ts.map +1 -0
- package/dist/assistant/ui/theme.js +180 -0
- package/dist/assistant/ui/theme.js.map +1 -0
- package/dist/assistant/ui/view-model.d.ts +89 -0
- package/dist/assistant/ui/view-model.d.ts.map +1 -0
- package/dist/assistant/ui/view-model.js +298 -0
- package/dist/assistant/ui/view-model.js.map +1 -0
- package/dist/assistant-chat-ink.d.ts +2 -0
- package/dist/assistant-chat-ink.d.ts.map +1 -0
- package/dist/assistant-chat-ink.js +2 -0
- package/dist/assistant-chat-ink.js.map +1 -0
- package/dist/assistant-daemon-client.d.ts +81 -0
- package/dist/assistant-daemon-client.d.ts.map +1 -0
- package/dist/assistant-daemon-client.js +473 -0
- package/dist/assistant-daemon-client.js.map +1 -0
- package/dist/assistant-runtime.d.ts +25 -0
- package/dist/assistant-runtime.d.ts.map +1 -0
- package/dist/assistant-runtime.js +17 -0
- package/dist/assistant-runtime.js.map +1 -0
- package/dist/bin.d.ts +3 -0
- package/dist/bin.d.ts.map +1 -0
- package/dist/bin.js +7 -0
- package/dist/bin.js.map +1 -0
- package/dist/cli-entry.d.ts +10 -0
- package/dist/cli-entry.d.ts.map +1 -0
- package/dist/cli-entry.js +127 -0
- package/dist/cli-entry.js.map +1 -0
- package/dist/commands/assistant.d.ts +5 -0
- package/dist/commands/assistant.d.ts.map +1 -0
- package/dist/commands/assistant.js +1663 -0
- package/dist/commands/assistant.js.map +1 -0
- package/dist/commands/audit-command-helpers.d.ts +15 -0
- package/dist/commands/audit-command-helpers.d.ts.map +1 -0
- package/dist/commands/audit-command-helpers.js +24 -0
- package/dist/commands/audit-command-helpers.js.map +1 -0
- package/dist/commands/audit.d.ts +4 -0
- package/dist/commands/audit.d.ts.map +1 -0
- package/dist/commands/audit.js +107 -0
- package/dist/commands/audit.js.map +1 -0
- package/dist/commands/device.d.ts +4 -0
- package/dist/commands/device.d.ts.map +1 -0
- package/dist/commands/device.js +177 -0
- package/dist/commands/device.js.map +1 -0
- package/dist/commands/document.d.ts +4 -0
- package/dist/commands/document.d.ts.map +1 -0
- package/dist/commands/document.js +117 -0
- package/dist/commands/document.js.map +1 -0
- package/dist/commands/event.d.ts +4 -0
- package/dist/commands/event.d.ts.map +1 -0
- package/dist/commands/event.js +136 -0
- package/dist/commands/event.js.map +1 -0
- package/dist/commands/experiment.d.ts +4 -0
- package/dist/commands/experiment.d.ts.map +1 -0
- package/dist/commands/experiment.js +140 -0
- package/dist/commands/experiment.js.map +1 -0
- package/dist/commands/export-intake-read-helpers.d.ts +150 -0
- package/dist/commands/export-intake-read-helpers.d.ts.map +1 -0
- package/dist/commands/export-intake-read-helpers.js +328 -0
- package/dist/commands/export-intake-read-helpers.js.map +1 -0
- package/dist/commands/export.d.ts +4 -0
- package/dist/commands/export.d.ts.map +1 -0
- package/dist/commands/export.js +179 -0
- package/dist/commands/export.js.map +1 -0
- package/dist/commands/food.d.ts +4 -0
- package/dist/commands/food.d.ts.map +1 -0
- package/dist/commands/food.js +190 -0
- package/dist/commands/food.js.map +1 -0
- package/dist/commands/health-command-factory.d.ts +230 -0
- package/dist/commands/health-command-factory.d.ts.map +1 -0
- package/dist/commands/health-command-factory.js +551 -0
- package/dist/commands/health-command-factory.js.map +1 -0
- package/dist/commands/health-entity-command-registry.d.ts +27 -0
- package/dist/commands/health-entity-command-registry.d.ts.map +1 -0
- package/dist/commands/health-entity-command-registry.js +84 -0
- package/dist/commands/health-entity-command-registry.js.map +1 -0
- package/dist/commands/inbox.d.ts +5 -0
- package/dist/commands/inbox.d.ts.map +1 -0
- package/dist/commands/inbox.js +841 -0
- package/dist/commands/inbox.js.map +1 -0
- package/dist/commands/intake.d.ts +4 -0
- package/dist/commands/intake.d.ts.map +1 -0
- package/dist/commands/intake.js +175 -0
- package/dist/commands/intake.js.map +1 -0
- package/dist/commands/intervention.d.ts +4 -0
- package/dist/commands/intervention.d.ts.map +1 -0
- package/dist/commands/intervention.js +122 -0
- package/dist/commands/intervention.js.map +1 -0
- package/dist/commands/journal.d.ts +12 -0
- package/dist/commands/journal.d.ts.map +1 -0
- package/dist/commands/journal.js +186 -0
- package/dist/commands/journal.js.map +1 -0
- package/dist/commands/meal.d.ts +4 -0
- package/dist/commands/meal.d.ts.map +1 -0
- package/dist/commands/meal.js +123 -0
- package/dist/commands/meal.js.map +1 -0
- package/dist/commands/profile.d.ts +4 -0
- package/dist/commands/profile.d.ts.map +1 -0
- package/dist/commands/profile.js +62 -0
- package/dist/commands/profile.js.map +1 -0
- package/dist/commands/protocol.d.ts +4 -0
- package/dist/commands/protocol.d.ts.map +1 -0
- package/dist/commands/protocol.js +79 -0
- package/dist/commands/protocol.js.map +1 -0
- package/dist/commands/provider.d.ts +4 -0
- package/dist/commands/provider.d.ts.map +1 -0
- package/dist/commands/provider.js +115 -0
- package/dist/commands/provider.js.map +1 -0
- package/dist/commands/read.d.ts +4 -0
- package/dist/commands/read.d.ts.map +1 -0
- package/dist/commands/read.js +55 -0
- package/dist/commands/read.js.map +1 -0
- package/dist/commands/recipe.d.ts +4 -0
- package/dist/commands/recipe.d.ts.map +1 -0
- package/dist/commands/recipe.js +116 -0
- package/dist/commands/recipe.js.map +1 -0
- package/dist/commands/record-mutation-command-helpers.d.ts +196 -0
- package/dist/commands/record-mutation-command-helpers.d.ts.map +1 -0
- package/dist/commands/record-mutation-command-helpers.js +150 -0
- package/dist/commands/record-mutation-command-helpers.js.map +1 -0
- package/dist/commands/research.d.ts +3 -0
- package/dist/commands/research.d.ts.map +1 -0
- package/dist/commands/research.js +104 -0
- package/dist/commands/research.js.map +1 -0
- package/dist/commands/sample-batch-command-helpers.d.ts +24 -0
- package/dist/commands/sample-batch-command-helpers.d.ts.map +1 -0
- package/dist/commands/sample-batch-command-helpers.js +99 -0
- package/dist/commands/sample-batch-command-helpers.js.map +1 -0
- package/dist/commands/sample-import-command-helpers.d.ts +24 -0
- package/dist/commands/sample-import-command-helpers.d.ts.map +1 -0
- package/dist/commands/sample-import-command-helpers.js +49 -0
- package/dist/commands/sample-import-command-helpers.js.map +1 -0
- package/dist/commands/sample-query-command-helpers.d.ts +11 -0
- package/dist/commands/sample-query-command-helpers.d.ts.map +1 -0
- package/dist/commands/sample-query-command-helpers.js +26 -0
- package/dist/commands/sample-query-command-helpers.js.map +1 -0
- package/dist/commands/samples.d.ts +4 -0
- package/dist/commands/samples.d.ts.map +1 -0
- package/dist/commands/samples.js +261 -0
- package/dist/commands/samples.js.map +1 -0
- package/dist/commands/search.d.ts +4 -0
- package/dist/commands/search.d.ts.map +1 -0
- package/dist/commands/search.js +295 -0
- package/dist/commands/search.js.map +1 -0
- package/dist/commands/supplement.d.ts +4 -0
- package/dist/commands/supplement.d.ts.map +1 -0
- package/dist/commands/supplement.js +338 -0
- package/dist/commands/supplement.js.map +1 -0
- package/dist/commands/vault.d.ts +4 -0
- package/dist/commands/vault.d.ts.map +1 -0
- package/dist/commands/vault.js +164 -0
- package/dist/commands/vault.js.map +1 -0
- package/dist/commands/workout.d.ts +4 -0
- package/dist/commands/workout.d.ts.map +1 -0
- package/dist/commands/workout.js +284 -0
- package/dist/commands/workout.js.map +1 -0
- package/dist/incur.generated.d.ts +2164 -0
- package/dist/incur.generated.d.ts.map +1 -0
- package/dist/incur.generated.js +2 -0
- package/dist/incur.generated.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/dist/research-cli-contracts.d.ts +22 -0
- package/dist/research-cli-contracts.d.ts.map +1 -0
- package/dist/research-cli-contracts.js +18 -0
- package/dist/research-cli-contracts.js.map +1 -0
- package/dist/research-runtime.d.ts +79 -0
- package/dist/research-runtime.d.ts.map +1 -0
- package/dist/research-runtime.js +351 -0
- package/dist/research-runtime.js.map +1 -0
- package/dist/run-terminal-logging.d.ts +12 -0
- package/dist/run-terminal-logging.d.ts.map +1 -0
- package/dist/run-terminal-logging.js +323 -0
- package/dist/run-terminal-logging.js.map +1 -0
- package/dist/setup-agentmail.d.ts +30 -0
- package/dist/setup-agentmail.d.ts.map +1 -0
- package/dist/setup-agentmail.js +136 -0
- package/dist/setup-agentmail.js.map +1 -0
- package/dist/setup-assistant-account.d.ts +29 -0
- package/dist/setup-assistant-account.d.ts.map +1 -0
- package/dist/setup-assistant-account.js +443 -0
- package/dist/setup-assistant-account.js.map +1 -0
- package/dist/setup-assistant.d.ts +34 -0
- package/dist/setup-assistant.d.ts.map +1 -0
- package/dist/setup-assistant.js +355 -0
- package/dist/setup-assistant.js.map +1 -0
- package/dist/setup-cli.d.ts +72 -0
- package/dist/setup-cli.d.ts.map +1 -0
- package/dist/setup-cli.js +387 -0
- package/dist/setup-cli.js.map +1 -0
- package/dist/setup-services/channels.d.ts +19 -0
- package/dist/setup-services/channels.d.ts.map +1 -0
- package/dist/setup-services/channels.js +721 -0
- package/dist/setup-services/channels.js.map +1 -0
- package/dist/setup-services/process.d.ts +18 -0
- package/dist/setup-services/process.d.ts.map +1 -0
- package/dist/setup-services/process.js +98 -0
- package/dist/setup-services/process.js.map +1 -0
- package/dist/setup-services/scheduled-updates.d.ts +9 -0
- package/dist/setup-services/scheduled-updates.d.ts.map +1 -0
- package/dist/setup-services/scheduled-updates.js +64 -0
- package/dist/setup-services/scheduled-updates.js.map +1 -0
- package/dist/setup-services/shell.d.ts +18 -0
- package/dist/setup-services/shell.d.ts.map +1 -0
- package/dist/setup-services/shell.js +447 -0
- package/dist/setup-services/shell.js.map +1 -0
- package/dist/setup-services/steps.d.ts +39 -0
- package/dist/setup-services/steps.d.ts.map +1 -0
- package/dist/setup-services/steps.js +86 -0
- package/dist/setup-services/steps.js.map +1 -0
- package/dist/setup-services/toolchain.d.ts +46 -0
- package/dist/setup-services/toolchain.d.ts.map +1 -0
- package/dist/setup-services/toolchain.js +232 -0
- package/dist/setup-services/toolchain.js.map +1 -0
- package/dist/setup-services.d.ts +44 -0
- package/dist/setup-services.d.ts.map +1 -0
- package/dist/setup-services.js +739 -0
- package/dist/setup-services.js.map +1 -0
- package/dist/setup-wizard.d.ts +101 -0
- package/dist/setup-wizard.d.ts.map +1 -0
- package/dist/setup-wizard.js +1458 -0
- package/dist/setup-wizard.js.map +1 -0
- package/dist/usecases/intervention.d.ts +63 -0
- package/dist/usecases/intervention.d.ts.map +1 -0
- package/dist/usecases/intervention.js +205 -0
- package/dist/usecases/intervention.js.map +1 -0
- package/dist/usecases/text-duration.d.ts +4 -0
- package/dist/usecases/text-duration.d.ts.map +1 -0
- package/dist/usecases/text-duration.js +63 -0
- package/dist/usecases/text-duration.js.map +1 -0
- package/dist/usecases/workout-format.d.ts +139 -0
- package/dist/usecases/workout-format.d.ts.map +1 -0
- package/dist/usecases/workout-format.js +445 -0
- package/dist/usecases/workout-format.js.map +1 -0
- package/dist/usecases/workout.d.ts +94 -0
- package/dist/usecases/workout.d.ts.map +1 -0
- package/dist/usecases/workout.js +411 -0
- package/dist/usecases/workout.js.map +1 -0
- package/dist/vault-cli-command-manifest.d.ts +562 -0
- package/dist/vault-cli-command-manifest.d.ts.map +1 -0
- package/dist/vault-cli-command-manifest.js +759 -0
- package/dist/vault-cli-command-manifest.js.map +1 -0
- package/dist/vault-cli.d.ts +6 -0
- package/dist/vault-cli.d.ts.map +1 -0
- package/dist/vault-cli.js +38 -0
- package/dist/vault-cli.js.map +1 -0
- package/package.json +85 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,2009 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@murphai/murph` will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [0.1.1] - 2026-04-02
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- add safe markdown memory append
|
|
9
|
+
- flatten setup to one backend target
|
|
10
|
+
- restore first-chat check-in and proactive memory
|
|
11
|
+
- preserve hosted openai reasoning effort
|
|
12
|
+
- land explicit hosted config
|
|
13
|
+
- unify auto-reply multimodal inputs
|
|
14
|
+
- land pending hosted web updates
|
|
15
|
+
- add loading fallbacks and eslint cli
|
|
16
|
+
- support hosted privy app clients
|
|
17
|
+
- default hosted phone signup to us
|
|
18
|
+
- cut over local capture sync to inbox cursor
|
|
19
|
+
- use openai responses auto-compaction
|
|
20
|
+
- add two-step linq intro flow
|
|
21
|
+
- add openai-compatible tool runtime parity
|
|
22
|
+
- preserve cron target continuity
|
|
23
|
+
- finish cutover remainder
|
|
24
|
+
- add assistant cron target commands
|
|
25
|
+
- strengthen research-first cron presets
|
|
26
|
+
- require research for condition roundups
|
|
27
|
+
- personalize condition roundup preset
|
|
28
|
+
- complete hosted gateway cutover
|
|
29
|
+
- add local read projection
|
|
30
|
+
- add gateway core boundary
|
|
31
|
+
- refresh onboarding setup flow
|
|
32
|
+
- add canonical inbox capture ledger
|
|
33
|
+
- land bank entity seam
|
|
34
|
+
- add hosted run trace
|
|
35
|
+
- extract local assistant runtime daemon
|
|
36
|
+
- add chatgpt patch wake helpers
|
|
37
|
+
- add chatgpt thread check helpers
|
|
38
|
+
- add data model composability preset
|
|
39
|
+
- add ai usage ledger
|
|
40
|
+
- share callback seams and keyring reads
|
|
41
|
+
- add hosted parity bridge
|
|
42
|
+
- externalize hosted workspace artifacts
|
|
43
|
+
- add hosted telegram ingress
|
|
44
|
+
- add architecture preset
|
|
45
|
+
- add hosted install script
|
|
46
|
+
- sync privy verified email into hosted runtime
|
|
47
|
+
- add hosted email bridge
|
|
48
|
+
- add oura webhook subscription support
|
|
49
|
+
- land hosted web updates
|
|
50
|
+
- add hosted email settings
|
|
51
|
+
- add revnet repair tooling
|
|
52
|
+
- add assistant state scratchpads
|
|
53
|
+
- extract hosted runtime surface
|
|
54
|
+
- add record edit and delete commands
|
|
55
|
+
- finalize hosted outbox queue-before-commit flow
|
|
56
|
+
- add revnet issuance
|
|
57
|
+
- cut over hosted onboarding to privy
|
|
58
|
+
- add workout format commands
|
|
59
|
+
- add hosted share bundle flow
|
|
60
|
+
- add hosted user env overrides
|
|
61
|
+
- add compass-first quiet-default posture
|
|
62
|
+
- add food and supplement rename commands
|
|
63
|
+
- complete cloudflare runner phase 2
|
|
64
|
+
- add food schedule command
|
|
65
|
+
- add cloudflare execution runner
|
|
66
|
+
- save assistant self delivery targets
|
|
67
|
+
- add morning mindfulness cron preset
|
|
68
|
+
- add recurring food daily autolog
|
|
69
|
+
- add resilient observability and recovery
|
|
70
|
+
- add food registry surface
|
|
71
|
+
- add scheduled update onboarding step
|
|
72
|
+
- add hosted onboarding flow
|
|
73
|
+
- add hosted linq ingress
|
|
74
|
+
- add public URL onboarding guidance
|
|
75
|
+
- add garmin device adapter
|
|
76
|
+
- warn on unsupported research plans
|
|
77
|
+
- add research note commands
|
|
78
|
+
- add intervention quick capture
|
|
79
|
+
- add linux host support
|
|
80
|
+
- persist onboarding account metadata
|
|
81
|
+
- add linq inbox integration
|
|
82
|
+
- add assistant cron presets
|
|
83
|
+
- persist partial assistant onboarding
|
|
84
|
+
- add first-class recipe records
|
|
85
|
+
- add blood-test ingestion surface
|
|
86
|
+
- allow note-only meal capture
|
|
87
|
+
- add assistant chat queue and pause controls
|
|
88
|
+
- add foreground run terminal logging
|
|
89
|
+
- add hosted device sync control plane
|
|
90
|
+
- add supplement compound ledger
|
|
91
|
+
- rework setup onboarding flow
|
|
92
|
+
- load local dotenv files
|
|
93
|
+
- add agentmail email channel
|
|
94
|
+
- add cron scheduling
|
|
95
|
+
- add provider-first assistant setup
|
|
96
|
+
- add multimodal inbox routing
|
|
97
|
+
- add data bundle chatgpt flow
|
|
98
|
+
- add structured strength session data
|
|
99
|
+
- add dark theme support
|
|
100
|
+
- add telegram assistant channel
|
|
101
|
+
- bundle and manage local daemon
|
|
102
|
+
- add iMessage self-chat mode
|
|
103
|
+
- add onboard wizard and iMessage auto-reply
|
|
104
|
+
- add explicit assistant memory tools
|
|
105
|
+
- add workout quick capture
|
|
106
|
+
- add assistant markdown memory
|
|
107
|
+
- add assistant chat dark mode
|
|
108
|
+
- persist chat model preferences
|
|
109
|
+
- add root chat alias
|
|
110
|
+
- add model switcher
|
|
111
|
+
- show onboarding install summary
|
|
112
|
+
- add oura polling integration
|
|
113
|
+
- add cli and web auth controls
|
|
114
|
+
- add whoop sync runtime
|
|
115
|
+
- launch chat after setup
|
|
116
|
+
- persist default vault
|
|
117
|
+
- add graph-backed resting heart rate page
|
|
118
|
+
- add whoop device provider foundation
|
|
119
|
+
- add assistant iMessage delivery and ink chat
|
|
120
|
+
- add telegram local-first connector
|
|
121
|
+
- add provider-backed assistant runtime
|
|
122
|
+
- add demo web vault
|
|
123
|
+
- scaffold local observatory app
|
|
124
|
+
- add macos setup wizard
|
|
125
|
+
- add inbox model routing harness
|
|
126
|
+
- support stdin payload input
|
|
127
|
+
- expand vault command surface
|
|
128
|
+
- add inbox parser setup controls
|
|
129
|
+
- expand inbox attachment inspection
|
|
130
|
+
- integrate parsed inbox runtime
|
|
131
|
+
- expand vault-facing command surface
|
|
132
|
+
- add staged write operations
|
|
133
|
+
- add inbox attachment parser layer
|
|
134
|
+
- add sqlite search runtime
|
|
135
|
+
- add inbox runtime command surface
|
|
136
|
+
- add source-agnostic inbox foundation
|
|
137
|
+
- add source-agnostic inbox runtime
|
|
138
|
+
- add retrieval search and timeline commands
|
|
139
|
+
- add package-scoped release flow
|
|
140
|
+
- harden raw import manifests
|
|
141
|
+
- finish cutover follow-through
|
|
142
|
+
- add payload-first health extension surfaces
|
|
143
|
+
- add baseline vault packages
|
|
144
|
+
|
|
145
|
+
### Fixed
|
|
146
|
+
- backfill durable config
|
|
147
|
+
- resolve reasoning effort by target
|
|
148
|
+
- add messaging first-contact check-in
|
|
149
|
+
- migrate legacy runtime schema
|
|
150
|
+
- harden verify against CI env
|
|
151
|
+
- alias messaging-ingress in vitest
|
|
152
|
+
- classify guard-blocked auto replies as failures
|
|
153
|
+
- trust committed writes without temp receipts
|
|
154
|
+
- land greenfield side-effect cutover
|
|
155
|
+
- hard-cut hosted device-sync mirror arbitration
|
|
156
|
+
- harden client JSON parsing and wrangler helpers
|
|
157
|
+
- persist onboard scheduled update selections
|
|
158
|
+
- restore green checks and harden murph shim
|
|
159
|
+
- fence stale webhook and token updates
|
|
160
|
+
- restore green verification and hard-cut hosted runtime
|
|
161
|
+
- close gateway and env replay seams
|
|
162
|
+
- harden bundle and control-plane reads
|
|
163
|
+
- retry stripe billing CAS misses
|
|
164
|
+
- tolerate legacy runtime payloads
|
|
165
|
+
- harden linq webhook ingress
|
|
166
|
+
- reserve checkout before Stripe
|
|
167
|
+
- stop leaking shareCode in internal URLs
|
|
168
|
+
- harden linq webhook receipts
|
|
169
|
+
- preserve refresh and webhook ordering
|
|
170
|
+
- land hosted web review patch
|
|
171
|
+
- scope provider resume recovery
|
|
172
|
+
- serialize hosted onboarding transactions
|
|
173
|
+
- harden poll wake and reply threading
|
|
174
|
+
- land hosted runner review patches
|
|
175
|
+
- handle empty forwarded args
|
|
176
|
+
- land architecture review patch
|
|
177
|
+
- consume review-gpt 0.5.21
|
|
178
|
+
- land security audit patch
|
|
179
|
+
- consume review-gpt 0.5.20
|
|
180
|
+
- build assistantd before cli
|
|
181
|
+
- unify thread helpers on package flow
|
|
182
|
+
- restore verification green
|
|
183
|
+
- support macos bash in release script
|
|
184
|
+
- harden bundle restore and scrub linq urls
|
|
185
|
+
- give auto-reply full murph autonomy
|
|
186
|
+
- improve preset list output
|
|
187
|
+
- clear hosted-web lint blockers
|
|
188
|
+
- break source-level type cycles
|
|
189
|
+
- land contact privacy hard cutover
|
|
190
|
+
- tighten hosted Privy session recovery
|
|
191
|
+
- harden dev smoke cleanup
|
|
192
|
+
- allow tracked next eslint configs
|
|
193
|
+
- land hosted privacy minimization without wallet deferral
|
|
194
|
+
- minimize hosted webhook payload retention
|
|
195
|
+
- align hosted and local web review patch
|
|
196
|
+
- retry prepared build for onboard shim
|
|
197
|
+
- restore green verification
|
|
198
|
+
- omit absent optional event fields
|
|
199
|
+
- fail loudly when build output is incomplete
|
|
200
|
+
- stop privy completion auto-loop
|
|
201
|
+
- recover murph onboard and stale default vaults
|
|
202
|
+
- simplify hosted phone country picker
|
|
203
|
+
- align next manifest with lockfile
|
|
204
|
+
- remove package ESM boundary
|
|
205
|
+
- preserve signup phone spacing
|
|
206
|
+
- auto-finish hosted privy setup
|
|
207
|
+
- resolve smoke script workspace imports
|
|
208
|
+
- defer sqlite require for cloudflare deploy
|
|
209
|
+
- cut iMessage sdk from worker bundle
|
|
210
|
+
- recover local shims after repo move
|
|
211
|
+
- resolve rollout artifacts from app deploy dir
|
|
212
|
+
- install before cloudflare preflight
|
|
213
|
+
- restore simplify preset
|
|
214
|
+
- slim default audit bundle
|
|
215
|
+
- sanitize stored metadata writes
|
|
216
|
+
- drop registry self related ids
|
|
217
|
+
- redact hosted HTTP error logs
|
|
218
|
+
- redact public metadata
|
|
219
|
+
- stabilize empty snapshots and drop cli shims
|
|
220
|
+
- harden chatgpt thread wake fallback
|
|
221
|
+
- narrow webhook imports and wake hints
|
|
222
|
+
- remove legacy assistant-state migration shim
|
|
223
|
+
- migrate assistant state off legacy repo path
|
|
224
|
+
- lazy-load sqlite and narrow hosted inbox imports
|
|
225
|
+
- preflight finish-task paths
|
|
226
|
+
- remove root setup entrypoint
|
|
227
|
+
- harden assistant auto-reply tool profile
|
|
228
|
+
- repair ubuntu ci regressions
|
|
229
|
+
- pass hosted web control env through deploy pipeline
|
|
230
|
+
- enable hosted assistant automation by default
|
|
231
|
+
- harden local gateway reply targets
|
|
232
|
+
- refresh workspace importers
|
|
233
|
+
- include root harness configs in audit bundle
|
|
234
|
+
- add vercel production url fallbacks
|
|
235
|
+
- load startup env defaults
|
|
236
|
+
- ignore stale gateway snapshot replays
|
|
237
|
+
- derive hosted urls from vercel production domain
|
|
238
|
+
- share gateway event log helpers
|
|
239
|
+
- bound auto-reply attachment prompts
|
|
240
|
+
- land hosted review patch
|
|
241
|
+
- restore green verification
|
|
242
|
+
- tighten recurring food prompt heuristics
|
|
243
|
+
- restore package-local vitest semantics
|
|
244
|
+
- restore root package suite policy
|
|
245
|
+
- refine onboarding assistant setup
|
|
246
|
+
- tighten gateway route delivery rules
|
|
247
|
+
- improve auto-reply failure observability
|
|
248
|
+
- remove greenfield legacy fallbacks
|
|
249
|
+
- harden atomic writes and returnTo validation
|
|
250
|
+
- harden atomic writes and device-sync returnTo validation
|
|
251
|
+
- preserve typed daemon errors
|
|
252
|
+
- harden headless core boundary
|
|
253
|
+
- land daemon and loopback followups
|
|
254
|
+
- land workout-format followups
|
|
255
|
+
- declare cloudflare assistant-core dependency
|
|
256
|
+
- finish daemon runtime routing
|
|
257
|
+
- harden assistant-state secrecy
|
|
258
|
+
- remove assistant-services boundary
|
|
259
|
+
- narrow stripe credential source
|
|
260
|
+
- hard-cut remaining compatibility
|
|
261
|
+
- harden storage id paths
|
|
262
|
+
- land final cleanup follow-up
|
|
263
|
+
- harden assistant delivery privacy gating
|
|
264
|
+
- isolate session routing bindings
|
|
265
|
+
- remove legacy workout compatibility
|
|
266
|
+
- harden hosted run trace logs
|
|
267
|
+
- harden daemon runtime follow-up
|
|
268
|
+
- narrow outbound reply sanitization
|
|
269
|
+
- preserve runner rpc request payloads
|
|
270
|
+
- harden daemon trust boundaries
|
|
271
|
+
- harden inbound sender authorization
|
|
272
|
+
- harden hosted runner isolation
|
|
273
|
+
- harden metering and export
|
|
274
|
+
- harden hosted usage and commit invariants
|
|
275
|
+
- clean up proxy web control clients
|
|
276
|
+
- keep runtime type errors internal
|
|
277
|
+
- harden web control boundaries
|
|
278
|
+
- hydrate hosted attachment bytes
|
|
279
|
+
- clarify hosted privacy copy
|
|
280
|
+
- harden stripe freshness and retry recovery
|
|
281
|
+
- proxy hosted usage export through worker
|
|
282
|
+
- harden hosted runner trust boundary
|
|
283
|
+
- harden hosted oura webhook handling
|
|
284
|
+
- harden outbox and hosted recovery
|
|
285
|
+
- harden share auth and replay follow-ups
|
|
286
|
+
- filter automation-only user env
|
|
287
|
+
- harden assistant resume and setup persistence
|
|
288
|
+
- harden hosted trust boundaries
|
|
289
|
+
- harden hosted sync fencing
|
|
290
|
+
- harden local state durability
|
|
291
|
+
- preserve legacy binding compatibility
|
|
292
|
+
- align local and hosted remediation boundaries
|
|
293
|
+
- restore garmin compatibility
|
|
294
|
+
- close webhook contract gaps
|
|
295
|
+
- harden stripe reconciliation
|
|
296
|
+
- harden assistant session reliability
|
|
297
|
+
- harden hosted and local webhook flows
|
|
298
|
+
- simplify Oura webhook upkeep
|
|
299
|
+
- simplify Oura webhook upkeep and idempotency
|
|
300
|
+
- close garmin snapshot parse gap
|
|
301
|
+
- harden hosted whoop sync state
|
|
302
|
+
- harden runner trust boundaries and replay retention
|
|
303
|
+
- finalize route-scoped recovery state
|
|
304
|
+
- restore green verification and telegram parity
|
|
305
|
+
- close hosted production blockers
|
|
306
|
+
- harden privy session boundaries
|
|
307
|
+
- harden hosted artifact hydration and key handling
|
|
308
|
+
- preserve assistant headers on setup rerun
|
|
309
|
+
- close final duplicate-send gaps
|
|
310
|
+
- harden hosted and local Linq flows
|
|
311
|
+
- harden hosted webhook boundaries
|
|
312
|
+
- harden garmin snapshot normalization
|
|
313
|
+
- ignore coverage artifacts in no-js guard
|
|
314
|
+
- harden oura webhook imports
|
|
315
|
+
- harden hosted production followups
|
|
316
|
+
- harden assistant backlog reply scanning
|
|
317
|
+
- harden hosted production followups
|
|
318
|
+
- preserve pending replies after backlog drain
|
|
319
|
+
- harden auto-reply outcome retries
|
|
320
|
+
- tighten hosted webhook dispatch prisma boundary
|
|
321
|
+
- repair non-vercel action lanes
|
|
322
|
+
- validate stored write operation parsing
|
|
323
|
+
- restore profile list date filters
|
|
324
|
+
- harden oura import cleanup
|
|
325
|
+
- keep hosted bootstrap explicit
|
|
326
|
+
- centralize provider markdown registry writes
|
|
327
|
+
- include cloudflare deploy artifacts in zip
|
|
328
|
+
- tighten trust-boundary follow-up checks
|
|
329
|
+
- schedule hosted execution drain
|
|
330
|
+
- fix Oura import contract mismatches
|
|
331
|
+
- use localhost instead of 127.0.0.1 and fix Oura scope parsing
|
|
332
|
+
- trim install quickstart copy
|
|
333
|
+
- harden write and inbox trust boundaries
|
|
334
|
+
- finish cloudflare cleanup
|
|
335
|
+
- use hosted sender identity for verified email sync
|
|
336
|
+
- tighten hosted bridge readiness
|
|
337
|
+
- drop legacy compatibility paths
|
|
338
|
+
- harden hosted runner predeploy
|
|
339
|
+
- harden staging deploy followups
|
|
340
|
+
- harden assistant config durability
|
|
341
|
+
- restore tolerant hydration
|
|
342
|
+
- use root murph domain in test fixture
|
|
343
|
+
- restore cli snippet and prove murph trigger
|
|
344
|
+
- harden revnet repair replay
|
|
345
|
+
- close assistant canonical-write review findings
|
|
346
|
+
- finalize assistant canonical-write followups
|
|
347
|
+
- harden revnet billing issuance flow
|
|
348
|
+
- finalize predeploy hardening
|
|
349
|
+
- harden hosted runner controls
|
|
350
|
+
- clamp assistant vault turns
|
|
351
|
+
- harden privy reauth flows
|
|
352
|
+
- default local dev to webpack
|
|
353
|
+
- harden hosted onboarding billing trust
|
|
354
|
+
- harden hosted deploy config
|
|
355
|
+
- suspend refunded members
|
|
356
|
+
- isolate assistant provider workspace
|
|
357
|
+
- accept pnpm argv separator in image cleanup
|
|
358
|
+
- close production advice follow-ups
|
|
359
|
+
- separate bootstrap from user env state
|
|
360
|
+
- salvage assistant cleanup lanes
|
|
361
|
+
- harden hosted bundles and webhook boundaries
|
|
362
|
+
- track workout format source
|
|
363
|
+
- stabilize hosted privy hydration
|
|
364
|
+
- harden privy csp headers
|
|
365
|
+
- harden privy csp headers
|
|
366
|
+
- apply hosted webhook audit follow-ups
|
|
367
|
+
- repair landing privy import
|
|
368
|
+
- harden hosted webhook side effects
|
|
369
|
+
- repair edit record rename flows
|
|
370
|
+
- require explicit day-key policy on event edits
|
|
371
|
+
- repair ink composer sync
|
|
372
|
+
- use privy cookies for onboarding
|
|
373
|
+
- harden cloudflare runner dispatch
|
|
374
|
+
- repair local day handling and scheduling
|
|
375
|
+
- harden hosted runner deploy review
|
|
376
|
+
- harden canonical write boundary
|
|
377
|
+
- audit inbox canonical persistence
|
|
378
|
+
- guard canonical vault writes during codex turns
|
|
379
|
+
- harden hosted execution boundaries
|
|
380
|
+
- handle inbox envelope evidence correctly
|
|
381
|
+
- stabilize repo verification checks
|
|
382
|
+
- hard cut over legacy cron routing
|
|
383
|
+
- harden hosted runner deploy scaffold
|
|
384
|
+
- migrate legacy cron delivery targets
|
|
385
|
+
- stabilize built runtime verification
|
|
386
|
+
- rotate codex sessions for vault prompt change
|
|
387
|
+
- harden failover runtime state
|
|
388
|
+
- surface structured assistant run errors
|
|
389
|
+
- rotate codex sessions on prompt version changes
|
|
390
|
+
- patch 0.5.0 model selection
|
|
391
|
+
- soften restaurant meal follow-ups
|
|
392
|
+
- enrich restaurant meal logging guidance
|
|
393
|
+
- harden passkey lifecycle
|
|
394
|
+
- look up restaurant menus for foods
|
|
395
|
+
- look up branded food ingredients
|
|
396
|
+
- auto-log described meals
|
|
397
|
+
- narrow recurring meal food prompts
|
|
398
|
+
- suggest reusable foods for repeat meals
|
|
399
|
+
- lock assistant runs and honor retry-after
|
|
400
|
+
- keep wrapped ink status rows colored
|
|
401
|
+
- harden inbox restart and transport retries
|
|
402
|
+
- guard generated source sidecars
|
|
403
|
+
- keep wrapped ink rows colored
|
|
404
|
+
- normalize assistant chat arrow keys
|
|
405
|
+
- restore green verification
|
|
406
|
+
- auto-start deep research after send
|
|
407
|
+
- clarify prompt routing and tool guidance
|
|
408
|
+
- default research timeout to 40m
|
|
409
|
+
- tighten prompt guidance copy
|
|
410
|
+
- clarify research wait semantics
|
|
411
|
+
- restart failed connector watches
|
|
412
|
+
- default complex research to deep research
|
|
413
|
+
- use shared audit bundle tool
|
|
414
|
+
- protect long-running auto-replies
|
|
415
|
+
- retry stalled auto-replies
|
|
416
|
+
- sanitize audit bundles
|
|
417
|
+
- surface auto-reply provider progress
|
|
418
|
+
- strip outbound assistant source callouts
|
|
419
|
+
- harden hosted control-plane boundaries
|
|
420
|
+
- refresh assistant chat theme after macos appearance changes
|
|
421
|
+
- harden device sync boundaries
|
|
422
|
+
- add metadata compatibility repair
|
|
423
|
+
- ask onboarding tone only once
|
|
424
|
+
- harden memory upserts and help discovery
|
|
425
|
+
- restyle queued follow-up UI
|
|
426
|
+
- ask onboarding name only once
|
|
427
|
+
- harden whoop and oura callbacks
|
|
428
|
+
- add first-turn onboarding for interactive chats
|
|
429
|
+
- harden incur command handling
|
|
430
|
+
- harden inbox discovery and email normalization
|
|
431
|
+
- harden assistant delivery and polling
|
|
432
|
+
- stop retrying mcp bootstrap failures as disconnects
|
|
433
|
+
- bias assistant toward meal logging
|
|
434
|
+
- suppress citations in outbound assistant replies
|
|
435
|
+
- coalesce email thread backlog replies
|
|
436
|
+
- isolate connector failures in daemon runs
|
|
437
|
+
- process email backlog on first auto-reply
|
|
438
|
+
- snapshot ephemeral imessage attachments
|
|
439
|
+
- persist onboard channel preferences
|
|
440
|
+
- tolerate missing local attachments
|
|
441
|
+
- keep onboard prompts alive after review
|
|
442
|
+
- recover agentmail inbox onboarding
|
|
443
|
+
- correct ink transcript viewport widths
|
|
444
|
+
- reuse saved onboarding channels
|
|
445
|
+
- hide stale working status
|
|
446
|
+
- keep working dot static
|
|
447
|
+
- harden shim dist checks
|
|
448
|
+
- pulse working loader dot
|
|
449
|
+
- preserve tty in installed shim
|
|
450
|
+
- remove working loader background
|
|
451
|
+
- recover ink chat raw mode input
|
|
452
|
+
- bound foreground ctrl-c shutdown
|
|
453
|
+
- revert sent bubble width change
|
|
454
|
+
- widen sent chat bubbles
|
|
455
|
+
- repair missing runtime shim deps
|
|
456
|
+
- wrap assistant prose by word
|
|
457
|
+
- exempt Healthy Bob chat vault ops from repo workflow
|
|
458
|
+
- harden ink chat transcript layout
|
|
459
|
+
- force-stop stuck inbox loops
|
|
460
|
+
- recover suspended inbox stop
|
|
461
|
+
- fallback to saved default vault
|
|
462
|
+
- add top-level run alias
|
|
463
|
+
- allow bare healthybob assistant
|
|
464
|
+
- stabilize verification for web and smoke coverage
|
|
465
|
+
- harden timestamps and backfills
|
|
466
|
+
- preserve assistant tool schema typing
|
|
467
|
+
- remove ink chat borders
|
|
468
|
+
- remove assistant chat intro banner
|
|
469
|
+
- reduce assistant chat redraw churn
|
|
470
|
+
- harden assistant session drift
|
|
471
|
+
- shorten assistant starter prompts
|
|
472
|
+
- restore composer spacing
|
|
473
|
+
- simplify assistant footer badges
|
|
474
|
+
- harden assistant provider recovery
|
|
475
|
+
- refresh assistant chat guidance
|
|
476
|
+
- harden assistant adapter
|
|
477
|
+
- wire codex trace streaming
|
|
478
|
+
- bind assistant vault for memory
|
|
479
|
+
- stabilize root verification
|
|
480
|
+
- render assistant transcript links
|
|
481
|
+
- reflow ink chat transcript
|
|
482
|
+
- hard-cut canonical read paths
|
|
483
|
+
- make healthybob shims resilient
|
|
484
|
+
- harden assistant memory tooling
|
|
485
|
+
- correct Ink chat width and cursor
|
|
486
|
+
- harden ink composer input
|
|
487
|
+
- require adapter and statically bind sdk
|
|
488
|
+
- narrow assistant prompt discovery
|
|
489
|
+
- restore assistant ink blue cursor
|
|
490
|
+
- tighten assistant memory extraction
|
|
491
|
+
- harden assistant ink terminal input
|
|
492
|
+
- harden assistant ink composer input
|
|
493
|
+
- restore green verification checks
|
|
494
|
+
- replay local assistant transcripts
|
|
495
|
+
- trim chat exit output
|
|
496
|
+
- refine chat layout
|
|
497
|
+
- inject default vault for root chat
|
|
498
|
+
- match user turns to composer
|
|
499
|
+
- harden non-core path helpers against symlink escapes
|
|
500
|
+
- lock down local control plane
|
|
501
|
+
- redact secret-bearing raw metadata
|
|
502
|
+
- batch canonical write mutations
|
|
503
|
+
- repair partial capture replay
|
|
504
|
+
- stop persisting assistant-state excerpts
|
|
505
|
+
- apply wearable audit fixes
|
|
506
|
+
- enable assistant incur cli access
|
|
507
|
+
- streamline chat waiting copy
|
|
508
|
+
- order codex approval flag correctly
|
|
509
|
+
- harden local next runtime boot
|
|
510
|
+
- rebuild query before local next boot
|
|
511
|
+
- restore clean verification baseline
|
|
512
|
+
- trim homepage chrome
|
|
513
|
+
- install healthybob shims
|
|
514
|
+
- simplify observatory overview
|
|
515
|
+
- restore green verification
|
|
516
|
+
- harden macos onboarding flow
|
|
517
|
+
- tighten inbox routing assistant safety
|
|
518
|
+
- redact setup home paths
|
|
519
|
+
- align incur search routing
|
|
520
|
+
- unify read output envelopes
|
|
521
|
+
- normalize selector and filter surface
|
|
522
|
+
- harden parser daemon reruns
|
|
523
|
+
- use repeatable multi-value flags
|
|
524
|
+
- regularize export and search subcommands
|
|
525
|
+
- tighten bootstrap and parser operator flow
|
|
526
|
+
- persist export packs in vault
|
|
527
|
+
- persist export packs in vault
|
|
528
|
+
- add bootstrap setup command
|
|
529
|
+
- include root bootstrap config
|
|
530
|
+
- harden adapter artifact checks
|
|
531
|
+
- keep readVault tolerant during cli cutover
|
|
532
|
+
- add canonical write lock
|
|
533
|
+
- harden inbox follow-up correctness
|
|
534
|
+
- harden inbox durability and ops
|
|
535
|
+
- harden sample import retries
|
|
536
|
+
- remove unused list cursor
|
|
537
|
+
- harden write boundaries
|
|
538
|
+
- reserve cursor until pagination exists
|
|
539
|
+
- restore incur schema surfaces
|
|
540
|
+
- support merge-preserving registry lookups
|
|
541
|
+
- enforce contract discipline across health surfaces
|
|
542
|
+
- wire repo-local prompt presets
|
|
543
|
+
- harden health export pack inputs
|
|
544
|
+
- remove explicit any seams
|
|
545
|
+
- enrich export packs with health context
|
|
546
|
+
- tighten export pack health readers
|
|
547
|
+
- stabilize final ts runtime gates
|
|
548
|
+
- restore runtime package loading
|
|
549
|
+
- type legacy mutation APIs
|
|
550
|
+
- resolve review-found runtime bugs
|
|
551
|
+
|
|
552
|
+
### Changed
|
|
553
|
+
- upgrade incur and green workspace
|
|
554
|
+
- hard-cut greenfield cleanup
|
|
555
|
+
- switch memory writes to markdown edits
|
|
556
|
+
- remove local-web package
|
|
557
|
+
- close reasoning capability bookkeeping
|
|
558
|
+
- remove stale guard workspace path
|
|
559
|
+
- hard-cut runtime schema
|
|
560
|
+
- remove onboarding summary path
|
|
561
|
+
- make codex a privileged local adapter
|
|
562
|
+
- finish shared runtime cutover
|
|
563
|
+
- hard-cut route recovery tooling
|
|
564
|
+
- hard-cut legacy provider state
|
|
565
|
+
- simplify auto-reply multimodal cleanup
|
|
566
|
+
- remove legacy provider compatibility shims
|
|
567
|
+
- require simplify for 200+ LOC local changes
|
|
568
|
+
- hard-cut runtime override contract
|
|
569
|
+
- cover override hard cut
|
|
570
|
+
- remove dead compatibility paths
|
|
571
|
+
- clear closed hosted-risk-fixes lane
|
|
572
|
+
- extract shared ingress package
|
|
573
|
+
- hard cut explicit entrypoints
|
|
574
|
+
- hard-cut hosted runtime ownership
|
|
575
|
+
- split stripe billing event handlers
|
|
576
|
+
- keep attempt metadata out of errors
|
|
577
|
+
- drop legacy responses resume fallback
|
|
578
|
+
- hard-cut execution context and provider attempt metadata
|
|
579
|
+
- split runtime state ownership
|
|
580
|
+
- hard-cut query read model to canonical entities
|
|
581
|
+
- converge query read model ownership
|
|
582
|
+
- centralize apps-web json route helpers
|
|
583
|
+
- land data model review patch
|
|
584
|
+
- remove assistant session compatibility shims
|
|
585
|
+
- tighten device-sync package boundary
|
|
586
|
+
- land code quality audit patch
|
|
587
|
+
- split composability seams
|
|
588
|
+
- land simplification pass
|
|
589
|
+
- pin stale-channel reconciliation to darwin
|
|
590
|
+
- Update doc-inventory.md
|
|
591
|
+
- v0.1.0
|
|
592
|
+
- centralize operator authority and tool concerns
|
|
593
|
+
- clarify provider transport capability naming
|
|
594
|
+
- remove compatibility-only paths
|
|
595
|
+
- simplify device-sync route params and provider-turn helpers
|
|
596
|
+
- forbid unsafe cast shortcuts
|
|
597
|
+
- require apps/web lint
|
|
598
|
+
- add package boundaries preset
|
|
599
|
+
- move npm packages to @murphai scope
|
|
600
|
+
- hard cut over sparse receipt refs
|
|
601
|
+
- land follow-up service splits
|
|
602
|
+
- add app skill locks
|
|
603
|
+
- clear completed privy fix ledger row
|
|
604
|
+
- Improve hosted phone country picker
|
|
605
|
+
- Apply simplification, code-quality, and architecture review patches
|
|
606
|
+
- update pnpm
|
|
607
|
+
- Update package.json
|
|
608
|
+
- upgrade pnpm action to v5
|
|
609
|
+
- remove sqlite lazy loader
|
|
610
|
+
- split root and node exports
|
|
611
|
+
- clarify audit-pass authorization
|
|
612
|
+
- harden pnpm policy and simplify runtime seams
|
|
613
|
+
- finish architecture patch alignment
|
|
614
|
+
- land architecture review patch slices
|
|
615
|
+
- harden supply chain — remove unused deps, add lockfile policy guard, frozen-lockfile installs
|
|
616
|
+
- normalize preset response contracts
|
|
617
|
+
- close cloudflare deploy ordering record
|
|
618
|
+
- bump to 0.5.19
|
|
619
|
+
- bump to 0.5.17 and add simplify script
|
|
620
|
+
- clean pending worktree changes
|
|
621
|
+
- split local surface into gateway-local
|
|
622
|
+
- add workspace package cycle guard
|
|
623
|
+
- remove low-value aliases
|
|
624
|
+
- hard cut client ownership
|
|
625
|
+
- split outbox and inbox persistence helpers
|
|
626
|
+
- hard cut stale compatibility paths
|
|
627
|
+
- bump review-gpt to 0.5.13
|
|
628
|
+
- relax simplify audit default
|
|
629
|
+
- simplify scoped env and email helpers
|
|
630
|
+
- hard cut hosted-execution shim
|
|
631
|
+
- simplify hosted webhook helpers
|
|
632
|
+
- hard cut shared assistant-core layers
|
|
633
|
+
- finish concurrency hardening
|
|
634
|
+
- hard cut assistant-core facades
|
|
635
|
+
- return text findings from review prompts
|
|
636
|
+
- bump review-gpt to 0.5.12
|
|
637
|
+
- harden suite concurrency defaults
|
|
638
|
+
- split gateway and hosted device-sync helpers
|
|
639
|
+
- move assistant facades behind assistant-core
|
|
640
|
+
- speed up harness and hosted web verify
|
|
641
|
+
- emit patched composability artifacts
|
|
642
|
+
- add composability review snapshot
|
|
643
|
+
- Harden hosted device sync inputs and snapshots
|
|
644
|
+
- restore audit delegation reminder
|
|
645
|
+
- hard-cut gateway core ownership
|
|
646
|
+
- rename local web package
|
|
647
|
+
- Update pnpm-lock.yaml
|
|
648
|
+
- clarify finish-task vs committer usage
|
|
649
|
+
- finish pending boundary and gateway cleanup
|
|
650
|
+
- land ddia cleanup patch
|
|
651
|
+
- finalize local-only hard cut
|
|
652
|
+
- expand suite concurrency and fast verify lanes
|
|
653
|
+
- restore explicit commit workflow
|
|
654
|
+
- land pending worktree changes
|
|
655
|
+
- refresh generated inventory
|
|
656
|
+
- add text-only docs verification fast path
|
|
657
|
+
- remove obsolete continuity docs
|
|
658
|
+
- add heart emoji to title
|
|
659
|
+
- refine product pitch
|
|
660
|
+
- clean up local scaffold leftovers
|
|
661
|
+
- turn AGENTS into a router
|
|
662
|
+
- drop licensed gitleaks step
|
|
663
|
+
- streamline repo guidance
|
|
664
|
+
- make review subagents read-only
|
|
665
|
+
- split vitest lanes for faster local verification
|
|
666
|
+
- clear completed cron target lane
|
|
667
|
+
- speed up verification runtime builds
|
|
668
|
+
- document hosted vercel secrets
|
|
669
|
+
- clarify coordination ledger path
|
|
670
|
+
- snapshot remaining worktree and close active plans
|
|
671
|
+
- dedupe root vitest package list
|
|
672
|
+
- remove closed paddleocr row
|
|
673
|
+
- hard-cut paddleocr
|
|
674
|
+
- split app verification lane
|
|
675
|
+
- split health projectors by family
|
|
676
|
+
- land residual provider and registry fixes
|
|
677
|
+
- bump repo tools and review gpt
|
|
678
|
+
- revert patch output contract
|
|
679
|
+
- bump review-gpt to 0.5.8
|
|
680
|
+
- simplify webhook receipt helpers
|
|
681
|
+
- clean up headless service naming
|
|
682
|
+
- apply behavior-preserving simplify patch
|
|
683
|
+
- clarify no-plan patch landing commit path
|
|
684
|
+
- smooth patch landing workflow
|
|
685
|
+
- request patch output in prompts
|
|
686
|
+
- remove stale assistantd seam lane
|
|
687
|
+
- clear completed assistant-core boundary lane
|
|
688
|
+
- hard-cut remaining compat seams
|
|
689
|
+
- clear assistant hardening row
|
|
690
|
+
- clear completed routing isolation lane
|
|
691
|
+
- bump review-gpt to v0.5.7
|
|
692
|
+
- clear cloudflare prod sweep row
|
|
693
|
+
- add assistant-core boundary
|
|
694
|
+
- align sender helper regression
|
|
695
|
+
- clear hosted run trace row
|
|
696
|
+
- clarify watch-only thread flow
|
|
697
|
+
- bump review-gpt to v0.5.6
|
|
698
|
+
- split registry entity documents
|
|
699
|
+
- bump review-gpt to v0.5.5
|
|
700
|
+
- simplify control plane clients
|
|
701
|
+
- simplify assistant quality audit paths
|
|
702
|
+
- bump review-gpt to v0.5.2
|
|
703
|
+
- centralize protocol registry adapters
|
|
704
|
+
- integrate assistant runtime seams
|
|
705
|
+
- clear completed chatgpt tooling ledger row
|
|
706
|
+
- hard-cut legacy stored-state readers
|
|
707
|
+
- normalize internal relation links
|
|
708
|
+
- close hosted control-plane ledger
|
|
709
|
+
- fold coverage audit into final review
|
|
710
|
+
- cover assessment cutover path
|
|
711
|
+
- add vault record family map
|
|
712
|
+
- hard-cut typed snapshot seam
|
|
713
|
+
- cover patch clears and drop family alias
|
|
714
|
+
- clear stale coordination row
|
|
715
|
+
- type profile snapshots and event drafts
|
|
716
|
+
- centralize registry seams for condition allergy family and genetics
|
|
717
|
+
- hard cut strict frontmatter reads
|
|
718
|
+
- centralize goal registry definition
|
|
719
|
+
- restore ai usage meter coverage
|
|
720
|
+
- align ai usage meter tests
|
|
721
|
+
- cover proxied device sync fetch plumbing
|
|
722
|
+
- cover non-hosted usage ledger skip
|
|
723
|
+
- clear completed linq lane
|
|
724
|
+
- cover hosted signature and http failure paths
|
|
725
|
+
- tighten hosted webhook regressions
|
|
726
|
+
- clean up hosted parity intake
|
|
727
|
+
- clear assistant route-scoped recovery ledger
|
|
728
|
+
- clear completed privy lane
|
|
729
|
+
- separate assistant provider bindings
|
|
730
|
+
- sync garmin plan index
|
|
731
|
+
- tighten hosted execution trust boundaries
|
|
732
|
+
- centralize privy session checks
|
|
733
|
+
- cover cli and hosted id invariants
|
|
734
|
+
- merge origin main
|
|
735
|
+
- sync origin main
|
|
736
|
+
- remove stale active worker prompts
|
|
737
|
+
- clean lingering worktree
|
|
738
|
+
- cover food recipe edit input flow
|
|
739
|
+
- extract shared food recipe scaffolding
|
|
740
|
+
- dedupe wrangler runners
|
|
741
|
+
- clarify hosted device-sync helpers
|
|
742
|
+
- dedupe hosted wake persistence
|
|
743
|
+
- dedupe hosted worker contracts
|
|
744
|
+
- cover webhook receipt cas retries
|
|
745
|
+
- resolve PR #2 conflicts with main
|
|
746
|
+
- resolve pr-2 conflicts
|
|
747
|
+
- resolve main conflicts for pr 2
|
|
748
|
+
- unify assistant inbox automation
|
|
749
|
+
- centralize hosted webhook receipt transitions
|
|
750
|
+
- cover localhost daemon auth regressions
|
|
751
|
+
- centralize hosted webhook receipt transitions
|
|
752
|
+
- split hosted stripe dispatch and revnet flow
|
|
753
|
+
- simplify assistant ink runtime
|
|
754
|
+
- make assistant provider recovery explicit
|
|
755
|
+
- finish health adapter migration
|
|
756
|
+
- split webhook internals
|
|
757
|
+
- add current-profile recency tie-break audit
|
|
758
|
+
- refresh index for store split plan
|
|
759
|
+
- clear completed device sync lane
|
|
760
|
+
- cover device sync store boundaries
|
|
761
|
+
- make hosted runtime use package boundary
|
|
762
|
+
- simplify current-profile seam
|
|
763
|
+
- move dispatch-ref ownership
|
|
764
|
+
- split hosted device sync store internals
|
|
765
|
+
- cover current profile markdown retention
|
|
766
|
+
- split hosted runtime seams
|
|
767
|
+
- move overview selectors out of web
|
|
768
|
+
- share current profile projection helpers
|
|
769
|
+
- clear cli health lane
|
|
770
|
+
- tighten markdown registry seam coverage
|
|
771
|
+
- simplify health service ownership
|
|
772
|
+
- guard shared taxonomy seam
|
|
773
|
+
- unify health projection pipeline
|
|
774
|
+
- clarify current-profile seam
|
|
775
|
+
- remove stripe invoice subscription fallback
|
|
776
|
+
- hard-cut greenfield-only shims
|
|
777
|
+
- remove legacy hosted execution compatibility
|
|
778
|
+
- add finish-task plan closure
|
|
779
|
+
- simplify final async cleanup
|
|
780
|
+
- add legacy-removal preset
|
|
781
|
+
- hard-cut assistant legacy state
|
|
782
|
+
- cover deploy preflight helpers
|
|
783
|
+
- harden hosted next artifact ownership
|
|
784
|
+
- add audit wait guidance
|
|
785
|
+
- remove legacy healthybob surfaces
|
|
786
|
+
- drop healthybob hard-cut fallbacks
|
|
787
|
+
- ignore codex scratch artifacts
|
|
788
|
+
- keep setup surface murph-only
|
|
789
|
+
- ignore .next-dev audit artifacts
|
|
790
|
+
- migrate healthy bob surfaces to murph
|
|
791
|
+
- integrate six-worker cleanup batch
|
|
792
|
+
- finish runtime boundary integration
|
|
793
|
+
- minimize outbox payloads
|
|
794
|
+
- hard-cut assistant model config
|
|
795
|
+
- minimize outbox payloads
|
|
796
|
+
- integrate runtime boundary refactor
|
|
797
|
+
- expand assistant provider hard-cutover coverage
|
|
798
|
+
- cut back webhook cleanup
|
|
799
|
+
- align receipt helper expectations
|
|
800
|
+
- align trust-boundary helpers
|
|
801
|
+
- add murph migration plan
|
|
802
|
+
- minimize outbox payloads
|
|
803
|
+
- rename hosted copy to murph
|
|
804
|
+
- restore truthful source resolution
|
|
805
|
+
- drop stale revnet env knob
|
|
806
|
+
- cover Stripe reversal suspension
|
|
807
|
+
- harden hosted deploy lane
|
|
808
|
+
- archive production advice follow-up
|
|
809
|
+
- clarify postcss allowlist wording
|
|
810
|
+
- allow hosted web postcss config
|
|
811
|
+
- clarify cron state binding
|
|
812
|
+
- use outbound worker handlers
|
|
813
|
+
- share hosted control-plane helpers
|
|
814
|
+
- journal hosted side effects
|
|
815
|
+
- close hosted execution outbox lane
|
|
816
|
+
- split hosted service boundaries
|
|
817
|
+
- cover assistant model catalog fallbacks
|
|
818
|
+
- centralize assistant provider model catalog
|
|
819
|
+
- upgrade next 16 and drop webpack flag
|
|
820
|
+
- split hosted runner state machine
|
|
821
|
+
- simplify privy onboarding boundaries
|
|
822
|
+
- land cleanup batch
|
|
823
|
+
- cover hosted privy cookie route boundary
|
|
824
|
+
- ban branded prefixes
|
|
825
|
+
- verify privy onboarding from tokens only
|
|
826
|
+
- remove branded error codes
|
|
827
|
+
- import revnet pay from wire
|
|
828
|
+
- switch revnet issuance to native eth
|
|
829
|
+
- hard-cut native container execution
|
|
830
|
+
- remove branded env prefixes
|
|
831
|
+
- drop hb deploy env prefix
|
|
832
|
+
- add hosted deploy automation
|
|
833
|
+
- cover history local-day timezone writes
|
|
834
|
+
- clarify audit delegation
|
|
835
|
+
- simplify duplicated helpers across packages
|
|
836
|
+
- simplify assistant setup and onboarding flows
|
|
837
|
+
- cover duplicate webhook receipts
|
|
838
|
+
- clear completed cron repair row
|
|
839
|
+
- require audit subagents
|
|
840
|
+
- exempt data-only tasks from repo workflow
|
|
841
|
+
- remove food add-daily command
|
|
842
|
+
- require explicit cron delivery
|
|
843
|
+
- add constitution guidance
|
|
844
|
+
- simplify duplicated helper scaffolding
|
|
845
|
+
- bump @cobuild/review-gpt to 0.5.1
|
|
846
|
+
- hard-cut regimen to protocol
|
|
847
|
+
- stabilize coverage and food smoke fixtures
|
|
848
|
+
- clear outbox debug ledger row
|
|
849
|
+
- close assistant stop recovery plan
|
|
850
|
+
- bump review-gpt to 0.4.4
|
|
851
|
+
- migrate hosted passkeys to webauthx
|
|
852
|
+
- remove first legacy shims
|
|
853
|
+
- tighten workflow audits
|
|
854
|
+
- remove daemon restart shim
|
|
855
|
+
- extract workspace verification wrapper
|
|
856
|
+
- close bundle hygiene plan
|
|
857
|
+
- integrate worker refactor lanes
|
|
858
|
+
- simplify duplicated cli and core flows
|
|
859
|
+
- enforce source import boundaries
|
|
860
|
+
- bump review-gpt to 0.4.2
|
|
861
|
+
- cover assistant cron presets
|
|
862
|
+
- bump review-gpt to 0.4.1
|
|
863
|
+
- checkpoint local worktree
|
|
864
|
+
- extract inbox app layer
|
|
865
|
+
- split registry and mutation domains
|
|
866
|
+
- share runtime unavailable guidance
|
|
867
|
+
- dedupe workspace source config
|
|
868
|
+
- clarify auth alias compatibility
|
|
869
|
+
- dedupe importer runtime contracts
|
|
870
|
+
- share release argv parsing
|
|
871
|
+
- reuse shared returnTo helper
|
|
872
|
+
- dedupe device-sync connect routes
|
|
873
|
+
- cover recipe and supplement commands
|
|
874
|
+
- hard cut HEALTHYBOB aliases
|
|
875
|
+
- prefer unprefixed runtime vars
|
|
876
|
+
- resolve workspace packages from source
|
|
877
|
+
- harden runtime artifact rebuild helper
|
|
878
|
+
- extract shared ulid helper
|
|
879
|
+
- simplify canonical health collector
|
|
880
|
+
- dedupe assistant state write locks
|
|
881
|
+
- reuse markdown registry api for bank
|
|
882
|
+
- share public wire types
|
|
883
|
+
- dedupe frontmatter readers
|
|
884
|
+
- simplify experiment journal vault
|
|
885
|
+
- remove dead helper code
|
|
886
|
+
- ignore assistant state
|
|
887
|
+
- extract shared public ingress
|
|
888
|
+
- refresh generated inventory
|
|
889
|
+
- add operator ui guidance
|
|
890
|
+
- clarify experiment mutation boundary
|
|
891
|
+
- simplify health command factory
|
|
892
|
+
- share registry api flow
|
|
893
|
+
- simplify raw key redaction rules
|
|
894
|
+
- share transport helpers
|
|
895
|
+
- simplify whoop provider branching
|
|
896
|
+
- simplify inbox doctor flow
|
|
897
|
+
- simplify conversation runtime
|
|
898
|
+
- centralize current profile resolution
|
|
899
|
+
- share provider normalization helpers
|
|
900
|
+
- remove unreachable helper exports
|
|
901
|
+
- reuse markdown registry helpers
|
|
902
|
+
- share oauth session helpers
|
|
903
|
+
- simplify inbox service helpers
|
|
904
|
+
- split runtime state adapters
|
|
905
|
+
- move canonical mutation semantics out of cli
|
|
906
|
+
- polish assistant ink chat ui
|
|
907
|
+
- centralize command manifest
|
|
908
|
+
- cap file size guidance
|
|
909
|
+
- add env example template
|
|
910
|
+
- add fixed-version monorepo flow
|
|
911
|
+
- stabilize ink chat input path
|
|
912
|
+
- share oauth provider plumbing
|
|
913
|
+
- dedupe assistant session resolution
|
|
914
|
+
- narrow assistant memory paths
|
|
915
|
+
- share device normalization helpers
|
|
916
|
+
- dedupe profile current materialization
|
|
917
|
+
- dedupe inbox daemon state
|
|
918
|
+
- share bank write audit helper
|
|
919
|
+
- drop legacy read fallbacks
|
|
920
|
+
- record imessage delivery preflight
|
|
921
|
+
- restore assistant composer padding
|
|
922
|
+
- widen assistant chat blocks
|
|
923
|
+
- tighten assistant chat blocks
|
|
924
|
+
- cover assistant ink keybindings
|
|
925
|
+
- reduce assistant chat rerenders
|
|
926
|
+
- reduce assistant ink typing rerenders
|
|
927
|
+
- centralize id-family helpers
|
|
928
|
+
- unify document meal read path
|
|
929
|
+
- cover attachment inbox service helpers
|
|
930
|
+
- simplify health descriptor matrix
|
|
931
|
+
- add repo chat alias
|
|
932
|
+
- centralize id-or-slug lookup
|
|
933
|
+
- dedupe inbox canonical promotions
|
|
934
|
+
- simplify current profile resolution
|
|
935
|
+
- stop forcing dev host
|
|
936
|
+
- add repo onboarding aliases
|
|
937
|
+
- add security audit preset
|
|
938
|
+
- unify query runtime boundary
|
|
939
|
+
- share vault usecase helpers
|
|
940
|
+
- share current-profile fallback resolution
|
|
941
|
+
- share raw import manifest contract
|
|
942
|
+
- simplify health command factory
|
|
943
|
+
- dedupe small helper utilities
|
|
944
|
+
- dedupe pure helper utilities
|
|
945
|
+
- unify vault write policy
|
|
946
|
+
- unify inbox promotion helpers
|
|
947
|
+
- share overview scoring
|
|
948
|
+
- unify query filter helpers
|
|
949
|
+
- harden bindings and inbox cursoring
|
|
950
|
+
- remove resting heart rate page
|
|
951
|
+
- add react types for ink chat
|
|
952
|
+
- drop ink chat react ts-ignore
|
|
953
|
+
- make assistant chat ink-only
|
|
954
|
+
- standardize telegram on grammy
|
|
955
|
+
- ignore package-local skill artifacts
|
|
956
|
+
- upgrade incur to 0.3.4
|
|
957
|
+
- upgrade vercel ai sdk
|
|
958
|
+
- include setup vitest coverage
|
|
959
|
+
- drop incur-specific cleanup
|
|
960
|
+
- point cli work to incur note
|
|
961
|
+
- archive stale plans and incur notes
|
|
962
|
+
- archive stale work
|
|
963
|
+
- add incur cli guardrails
|
|
964
|
+
- split helper kitchen sinks
|
|
965
|
+
- generalize artifact-backed health commands
|
|
966
|
+
- remove unused binding-layer list type
|
|
967
|
+
- remove obsolete command helper shims
|
|
968
|
+
- make command handlers delegate through services
|
|
969
|
+
- define capability bundles
|
|
970
|
+
- simplify capability bundle metadata
|
|
971
|
+
- add capability bundle model
|
|
972
|
+
- add GPL-3.0 metadata
|
|
973
|
+
- add bootstrap setup command
|
|
974
|
+
- align inbox parser bootstrap docs
|
|
975
|
+
- finish usecase type plumbing
|
|
976
|
+
- extract internal usecase layer
|
|
977
|
+
- dedupe executable lookup plumbing
|
|
978
|
+
- cover genetics registry target stability
|
|
979
|
+
- reuse shared health crud binder
|
|
980
|
+
- extract family genetics registry skeleton
|
|
981
|
+
- inline simple health crud registration
|
|
982
|
+
- dedupe canonical constants
|
|
983
|
+
- make strict reads final
|
|
984
|
+
- soften ledger exclusivity
|
|
985
|
+
- clear write-batch ownership
|
|
986
|
+
- update write-batch verification
|
|
987
|
+
- finish write-batch migration
|
|
988
|
+
- cut over inbox runtime ownership
|
|
989
|
+
- finish generic entity cutover
|
|
990
|
+
- share canonical health collector
|
|
991
|
+
- unify canonical health entities
|
|
992
|
+
- share entity registry metadata
|
|
993
|
+
- split search sqlite ownership
|
|
994
|
+
- archive cli descriptor wiring plan
|
|
995
|
+
- tighten health descriptor wiring
|
|
996
|
+
- simplify family genetics registries
|
|
997
|
+
- simplify health health-loaders
|
|
998
|
+
- unify frontmatter markdown parsing
|
|
999
|
+
- simplify vault fs write boundary
|
|
1000
|
+
- centralize raw import manifest assembly
|
|
1001
|
+
- align search coverage fixtures
|
|
1002
|
+
- close inbox followup fixes
|
|
1003
|
+
- close inbox cli ops plan
|
|
1004
|
+
- factor health command group setup
|
|
1005
|
+
- tighten runtime row decoding
|
|
1006
|
+
- simplify health readers
|
|
1007
|
+
- add parallel-agent output prompts
|
|
1008
|
+
- simplify read model readers
|
|
1009
|
+
- simplify health command factory
|
|
1010
|
+
- simplify runtime boundaries
|
|
1011
|
+
- simplify bank registry helpers
|
|
1012
|
+
- unify parsing engine
|
|
1013
|
+
- reuse health descriptor schemas
|
|
1014
|
+
- clarify record id semantics
|
|
1015
|
+
- share export-pack health loaders
|
|
1016
|
+
- unify history normalization
|
|
1017
|
+
- clear inboxd lane
|
|
1018
|
+
- simplify lazy module loading
|
|
1019
|
+
- simplify bank registry reads
|
|
1020
|
+
- normalize health extracts with zod
|
|
1021
|
+
- use contracts parser for assessment storage
|
|
1022
|
+
- use contract parser for profile snapshots
|
|
1023
|
+
- clarify zod-first contracts
|
|
1024
|
+
- make zod canonical
|
|
1025
|
+
- trim unused presets
|
|
1026
|
+
- align incur integration
|
|
1027
|
+
- align vault-cli with incur
|
|
1028
|
+
- adopt repo-defined presets
|
|
1029
|
+
- use native incur commands
|
|
1030
|
+
- clean up ts workspace plumbing
|
|
1031
|
+
- finish ts package cleanup
|
|
1032
|
+
- bump review-gpt to 0.2.16
|
|
1033
|
+
- strengthen export pack health assertions
|
|
1034
|
+
- tighten tone
|
|
1035
|
+
- expand healthy bob overview
|
|
1036
|
+
- clear completed health entries
|
|
1037
|
+
- simplify package script runner wiring
|
|
1038
|
+
- tighten legacy core test typings
|
|
1039
|
+
- align vitest package gates
|
|
1040
|
+
- migrate runtime packages to typescript
|
|
1041
|
+
- migrate package to typescript
|
|
1042
|
+
- ignore audit bundles
|
|
1043
|
+
- add review gpt wiring
|
|
1044
|
+
- tighten worker ownership for vault batch
|
|
1045
|
+
- add vault baseline contract fence
|
|
1046
|
+
- add repo harness
|
|
1047
|
+
|
|
1048
|
+
## [0.1.0] - 2026-04-01
|
|
1049
|
+
|
|
1050
|
+
### Added
|
|
1051
|
+
- land pending hosted web updates
|
|
1052
|
+
- add loading fallbacks and eslint cli
|
|
1053
|
+
- support hosted privy app clients
|
|
1054
|
+
- default hosted phone signup to us
|
|
1055
|
+
- cut over local capture sync to inbox cursor
|
|
1056
|
+
- use openai responses auto-compaction
|
|
1057
|
+
- add two-step linq intro flow
|
|
1058
|
+
- add openai-compatible tool runtime parity
|
|
1059
|
+
- preserve cron target continuity
|
|
1060
|
+
- finish cutover remainder
|
|
1061
|
+
- add assistant cron target commands
|
|
1062
|
+
- strengthen research-first cron presets
|
|
1063
|
+
- require research for condition roundups
|
|
1064
|
+
- personalize condition roundup preset
|
|
1065
|
+
- complete hosted gateway cutover
|
|
1066
|
+
- add local read projection
|
|
1067
|
+
- add gateway core boundary
|
|
1068
|
+
- refresh onboarding setup flow
|
|
1069
|
+
- add canonical inbox capture ledger
|
|
1070
|
+
- land bank entity seam
|
|
1071
|
+
- add hosted run trace
|
|
1072
|
+
- extract local assistant runtime daemon
|
|
1073
|
+
- add chatgpt patch wake helpers
|
|
1074
|
+
- add chatgpt thread check helpers
|
|
1075
|
+
- add data model composability preset
|
|
1076
|
+
- add ai usage ledger
|
|
1077
|
+
- share callback seams and keyring reads
|
|
1078
|
+
- add hosted parity bridge
|
|
1079
|
+
- externalize hosted workspace artifacts
|
|
1080
|
+
- add hosted telegram ingress
|
|
1081
|
+
- add architecture preset
|
|
1082
|
+
- add hosted install script
|
|
1083
|
+
- sync privy verified email into hosted runtime
|
|
1084
|
+
- add hosted email bridge
|
|
1085
|
+
- add oura webhook subscription support
|
|
1086
|
+
- land hosted web updates
|
|
1087
|
+
- add hosted email settings
|
|
1088
|
+
- add revnet repair tooling
|
|
1089
|
+
- add assistant state scratchpads
|
|
1090
|
+
- extract hosted runtime surface
|
|
1091
|
+
- add record edit and delete commands
|
|
1092
|
+
- finalize hosted outbox queue-before-commit flow
|
|
1093
|
+
- add revnet issuance
|
|
1094
|
+
- cut over hosted onboarding to privy
|
|
1095
|
+
- add workout format commands
|
|
1096
|
+
- add hosted share bundle flow
|
|
1097
|
+
- add hosted user env overrides
|
|
1098
|
+
- add compass-first quiet-default posture
|
|
1099
|
+
- add food and supplement rename commands
|
|
1100
|
+
- complete cloudflare runner phase 2
|
|
1101
|
+
- add food schedule command
|
|
1102
|
+
- add cloudflare execution runner
|
|
1103
|
+
- save assistant self delivery targets
|
|
1104
|
+
- add morning mindfulness cron preset
|
|
1105
|
+
- add recurring food daily autolog
|
|
1106
|
+
- add resilient observability and recovery
|
|
1107
|
+
- add food registry surface
|
|
1108
|
+
- add scheduled update onboarding step
|
|
1109
|
+
- add hosted onboarding flow
|
|
1110
|
+
- add hosted linq ingress
|
|
1111
|
+
- add public URL onboarding guidance
|
|
1112
|
+
- add garmin device adapter
|
|
1113
|
+
- warn on unsupported research plans
|
|
1114
|
+
- add research note commands
|
|
1115
|
+
- add intervention quick capture
|
|
1116
|
+
- add linux host support
|
|
1117
|
+
- persist onboarding account metadata
|
|
1118
|
+
- add linq inbox integration
|
|
1119
|
+
- add assistant cron presets
|
|
1120
|
+
- persist partial assistant onboarding
|
|
1121
|
+
- add first-class recipe records
|
|
1122
|
+
- add blood-test ingestion surface
|
|
1123
|
+
- allow note-only meal capture
|
|
1124
|
+
- add assistant chat queue and pause controls
|
|
1125
|
+
- add foreground run terminal logging
|
|
1126
|
+
- add hosted device sync control plane
|
|
1127
|
+
- add supplement compound ledger
|
|
1128
|
+
- rework setup onboarding flow
|
|
1129
|
+
- load local dotenv files
|
|
1130
|
+
- add agentmail email channel
|
|
1131
|
+
- add cron scheduling
|
|
1132
|
+
- add provider-first assistant setup
|
|
1133
|
+
- add multimodal inbox routing
|
|
1134
|
+
- add data bundle chatgpt flow
|
|
1135
|
+
- add structured strength session data
|
|
1136
|
+
- add dark theme support
|
|
1137
|
+
- add telegram assistant channel
|
|
1138
|
+
- bundle and manage local daemon
|
|
1139
|
+
- add iMessage self-chat mode
|
|
1140
|
+
- add onboard wizard and iMessage auto-reply
|
|
1141
|
+
- add explicit assistant memory tools
|
|
1142
|
+
- add workout quick capture
|
|
1143
|
+
- add assistant markdown memory
|
|
1144
|
+
- add assistant chat dark mode
|
|
1145
|
+
- persist chat model preferences
|
|
1146
|
+
- add root chat alias
|
|
1147
|
+
- add model switcher
|
|
1148
|
+
- show onboarding install summary
|
|
1149
|
+
- add oura polling integration
|
|
1150
|
+
- add cli and web auth controls
|
|
1151
|
+
- add whoop sync runtime
|
|
1152
|
+
- launch chat after setup
|
|
1153
|
+
- persist default vault
|
|
1154
|
+
- add graph-backed resting heart rate page
|
|
1155
|
+
- add whoop device provider foundation
|
|
1156
|
+
- add assistant iMessage delivery and ink chat
|
|
1157
|
+
- add telegram local-first connector
|
|
1158
|
+
- add provider-backed assistant runtime
|
|
1159
|
+
- add demo web vault
|
|
1160
|
+
- scaffold local observatory app
|
|
1161
|
+
- add macos setup wizard
|
|
1162
|
+
- add inbox model routing harness
|
|
1163
|
+
- support stdin payload input
|
|
1164
|
+
- expand vault command surface
|
|
1165
|
+
- add inbox parser setup controls
|
|
1166
|
+
- expand inbox attachment inspection
|
|
1167
|
+
- integrate parsed inbox runtime
|
|
1168
|
+
- expand vault-facing command surface
|
|
1169
|
+
- add staged write operations
|
|
1170
|
+
- add inbox attachment parser layer
|
|
1171
|
+
- add sqlite search runtime
|
|
1172
|
+
- add inbox runtime command surface
|
|
1173
|
+
- add source-agnostic inbox foundation
|
|
1174
|
+
- add source-agnostic inbox runtime
|
|
1175
|
+
- add retrieval search and timeline commands
|
|
1176
|
+
- add package-scoped release flow
|
|
1177
|
+
- harden raw import manifests
|
|
1178
|
+
- finish cutover follow-through
|
|
1179
|
+
- add payload-first health extension surfaces
|
|
1180
|
+
- add baseline vault packages
|
|
1181
|
+
|
|
1182
|
+
### Fixed
|
|
1183
|
+
- unify thread helpers on package flow
|
|
1184
|
+
- restore verification green
|
|
1185
|
+
- support macos bash in release script
|
|
1186
|
+
- harden bundle restore and scrub linq urls
|
|
1187
|
+
- give auto-reply full murph autonomy
|
|
1188
|
+
- improve preset list output
|
|
1189
|
+
- clear hosted-web lint blockers
|
|
1190
|
+
- break source-level type cycles
|
|
1191
|
+
- land contact privacy hard cutover
|
|
1192
|
+
- tighten hosted Privy session recovery
|
|
1193
|
+
- harden dev smoke cleanup
|
|
1194
|
+
- allow tracked next eslint configs
|
|
1195
|
+
- land hosted privacy minimization without wallet deferral
|
|
1196
|
+
- minimize hosted webhook payload retention
|
|
1197
|
+
- align hosted and local web review patch
|
|
1198
|
+
- retry prepared build for onboard shim
|
|
1199
|
+
- restore green verification
|
|
1200
|
+
- omit absent optional event fields
|
|
1201
|
+
- fail loudly when build output is incomplete
|
|
1202
|
+
- stop privy completion auto-loop
|
|
1203
|
+
- recover murph onboard and stale default vaults
|
|
1204
|
+
- simplify hosted phone country picker
|
|
1205
|
+
- align next manifest with lockfile
|
|
1206
|
+
- remove package ESM boundary
|
|
1207
|
+
- preserve signup phone spacing
|
|
1208
|
+
- auto-finish hosted privy setup
|
|
1209
|
+
- resolve smoke script workspace imports
|
|
1210
|
+
- defer sqlite require for cloudflare deploy
|
|
1211
|
+
- cut iMessage sdk from worker bundle
|
|
1212
|
+
- recover local shims after repo move
|
|
1213
|
+
- resolve rollout artifacts from app deploy dir
|
|
1214
|
+
- install before cloudflare preflight
|
|
1215
|
+
- restore simplify preset
|
|
1216
|
+
- slim default audit bundle
|
|
1217
|
+
- sanitize stored metadata writes
|
|
1218
|
+
- drop registry self related ids
|
|
1219
|
+
- redact hosted HTTP error logs
|
|
1220
|
+
- redact public metadata
|
|
1221
|
+
- stabilize empty snapshots and drop cli shims
|
|
1222
|
+
- harden chatgpt thread wake fallback
|
|
1223
|
+
- narrow webhook imports and wake hints
|
|
1224
|
+
- remove legacy assistant-state migration shim
|
|
1225
|
+
- migrate assistant state off legacy repo path
|
|
1226
|
+
- lazy-load sqlite and narrow hosted inbox imports
|
|
1227
|
+
- preflight finish-task paths
|
|
1228
|
+
- remove root setup entrypoint
|
|
1229
|
+
- harden assistant auto-reply tool profile
|
|
1230
|
+
- repair ubuntu ci regressions
|
|
1231
|
+
- pass hosted web control env through deploy pipeline
|
|
1232
|
+
- enable hosted assistant automation by default
|
|
1233
|
+
- harden local gateway reply targets
|
|
1234
|
+
- refresh workspace importers
|
|
1235
|
+
- include root harness configs in audit bundle
|
|
1236
|
+
- add vercel production url fallbacks
|
|
1237
|
+
- load startup env defaults
|
|
1238
|
+
- ignore stale gateway snapshot replays
|
|
1239
|
+
- derive hosted urls from vercel production domain
|
|
1240
|
+
- share gateway event log helpers
|
|
1241
|
+
- bound auto-reply attachment prompts
|
|
1242
|
+
- land hosted review patch
|
|
1243
|
+
- restore green verification
|
|
1244
|
+
- tighten recurring food prompt heuristics
|
|
1245
|
+
- restore package-local vitest semantics
|
|
1246
|
+
- restore root package suite policy
|
|
1247
|
+
- refine onboarding assistant setup
|
|
1248
|
+
- tighten gateway route delivery rules
|
|
1249
|
+
- improve auto-reply failure observability
|
|
1250
|
+
- remove greenfield legacy fallbacks
|
|
1251
|
+
- harden atomic writes and returnTo validation
|
|
1252
|
+
- harden atomic writes and device-sync returnTo validation
|
|
1253
|
+
- preserve typed daemon errors
|
|
1254
|
+
- harden headless core boundary
|
|
1255
|
+
- land daemon and loopback followups
|
|
1256
|
+
- land workout-format followups
|
|
1257
|
+
- declare cloudflare assistant-core dependency
|
|
1258
|
+
- finish daemon runtime routing
|
|
1259
|
+
- harden assistant-state secrecy
|
|
1260
|
+
- remove assistant-services boundary
|
|
1261
|
+
- narrow stripe credential source
|
|
1262
|
+
- hard-cut remaining compatibility
|
|
1263
|
+
- harden storage id paths
|
|
1264
|
+
- land final cleanup follow-up
|
|
1265
|
+
- harden assistant delivery privacy gating
|
|
1266
|
+
- isolate session routing bindings
|
|
1267
|
+
- remove legacy workout compatibility
|
|
1268
|
+
- harden hosted run trace logs
|
|
1269
|
+
- harden daemon runtime follow-up
|
|
1270
|
+
- narrow outbound reply sanitization
|
|
1271
|
+
- preserve runner rpc request payloads
|
|
1272
|
+
- harden daemon trust boundaries
|
|
1273
|
+
- harden inbound sender authorization
|
|
1274
|
+
- harden hosted runner isolation
|
|
1275
|
+
- harden metering and export
|
|
1276
|
+
- harden hosted usage and commit invariants
|
|
1277
|
+
- clean up proxy web control clients
|
|
1278
|
+
- keep runtime type errors internal
|
|
1279
|
+
- harden web control boundaries
|
|
1280
|
+
- hydrate hosted attachment bytes
|
|
1281
|
+
- clarify hosted privacy copy
|
|
1282
|
+
- harden stripe freshness and retry recovery
|
|
1283
|
+
- proxy hosted usage export through worker
|
|
1284
|
+
- harden hosted runner trust boundary
|
|
1285
|
+
- harden hosted oura webhook handling
|
|
1286
|
+
- harden outbox and hosted recovery
|
|
1287
|
+
- harden share auth and replay follow-ups
|
|
1288
|
+
- filter automation-only user env
|
|
1289
|
+
- harden assistant resume and setup persistence
|
|
1290
|
+
- harden hosted trust boundaries
|
|
1291
|
+
- harden hosted sync fencing
|
|
1292
|
+
- harden local state durability
|
|
1293
|
+
- preserve legacy binding compatibility
|
|
1294
|
+
- align local and hosted remediation boundaries
|
|
1295
|
+
- restore garmin compatibility
|
|
1296
|
+
- close webhook contract gaps
|
|
1297
|
+
- harden stripe reconciliation
|
|
1298
|
+
- harden assistant session reliability
|
|
1299
|
+
- harden hosted and local webhook flows
|
|
1300
|
+
- simplify Oura webhook upkeep
|
|
1301
|
+
- simplify Oura webhook upkeep and idempotency
|
|
1302
|
+
- close garmin snapshot parse gap
|
|
1303
|
+
- harden hosted whoop sync state
|
|
1304
|
+
- harden runner trust boundaries and replay retention
|
|
1305
|
+
- finalize route-scoped recovery state
|
|
1306
|
+
- restore green verification and telegram parity
|
|
1307
|
+
- close hosted production blockers
|
|
1308
|
+
- harden privy session boundaries
|
|
1309
|
+
- harden hosted artifact hydration and key handling
|
|
1310
|
+
- preserve assistant headers on setup rerun
|
|
1311
|
+
- close final duplicate-send gaps
|
|
1312
|
+
- harden hosted and local Linq flows
|
|
1313
|
+
- harden hosted webhook boundaries
|
|
1314
|
+
- harden garmin snapshot normalization
|
|
1315
|
+
- ignore coverage artifacts in no-js guard
|
|
1316
|
+
- harden oura webhook imports
|
|
1317
|
+
- harden hosted production followups
|
|
1318
|
+
- harden assistant backlog reply scanning
|
|
1319
|
+
- harden hosted production followups
|
|
1320
|
+
- preserve pending replies after backlog drain
|
|
1321
|
+
- harden auto-reply outcome retries
|
|
1322
|
+
- tighten hosted webhook dispatch prisma boundary
|
|
1323
|
+
- repair non-vercel action lanes
|
|
1324
|
+
- validate stored write operation parsing
|
|
1325
|
+
- restore profile list date filters
|
|
1326
|
+
- harden oura import cleanup
|
|
1327
|
+
- keep hosted bootstrap explicit
|
|
1328
|
+
- centralize provider markdown registry writes
|
|
1329
|
+
- include cloudflare deploy artifacts in zip
|
|
1330
|
+
- tighten trust-boundary follow-up checks
|
|
1331
|
+
- schedule hosted execution drain
|
|
1332
|
+
- fix Oura import contract mismatches
|
|
1333
|
+
- use localhost instead of 127.0.0.1 and fix Oura scope parsing
|
|
1334
|
+
- trim install quickstart copy
|
|
1335
|
+
- harden write and inbox trust boundaries
|
|
1336
|
+
- finish cloudflare cleanup
|
|
1337
|
+
- use hosted sender identity for verified email sync
|
|
1338
|
+
- tighten hosted bridge readiness
|
|
1339
|
+
- drop legacy compatibility paths
|
|
1340
|
+
- harden hosted runner predeploy
|
|
1341
|
+
- harden staging deploy followups
|
|
1342
|
+
- harden assistant config durability
|
|
1343
|
+
- restore tolerant hydration
|
|
1344
|
+
- use root murph domain in test fixture
|
|
1345
|
+
- restore cli snippet and prove murph trigger
|
|
1346
|
+
- harden revnet repair replay
|
|
1347
|
+
- close assistant canonical-write review findings
|
|
1348
|
+
- finalize assistant canonical-write followups
|
|
1349
|
+
- harden revnet billing issuance flow
|
|
1350
|
+
- finalize predeploy hardening
|
|
1351
|
+
- harden hosted runner controls
|
|
1352
|
+
- clamp assistant vault turns
|
|
1353
|
+
- harden privy reauth flows
|
|
1354
|
+
- default local dev to webpack
|
|
1355
|
+
- harden hosted onboarding billing trust
|
|
1356
|
+
- harden hosted deploy config
|
|
1357
|
+
- suspend refunded members
|
|
1358
|
+
- isolate assistant provider workspace
|
|
1359
|
+
- accept pnpm argv separator in image cleanup
|
|
1360
|
+
- close production advice follow-ups
|
|
1361
|
+
- separate bootstrap from user env state
|
|
1362
|
+
- salvage assistant cleanup lanes
|
|
1363
|
+
- harden hosted bundles and webhook boundaries
|
|
1364
|
+
- track workout format source
|
|
1365
|
+
- stabilize hosted privy hydration
|
|
1366
|
+
- harden privy csp headers
|
|
1367
|
+
- harden privy csp headers
|
|
1368
|
+
- apply hosted webhook audit follow-ups
|
|
1369
|
+
- repair landing privy import
|
|
1370
|
+
- harden hosted webhook side effects
|
|
1371
|
+
- repair edit record rename flows
|
|
1372
|
+
- require explicit day-key policy on event edits
|
|
1373
|
+
- repair ink composer sync
|
|
1374
|
+
- use privy cookies for onboarding
|
|
1375
|
+
- harden cloudflare runner dispatch
|
|
1376
|
+
- repair local day handling and scheduling
|
|
1377
|
+
- harden hosted runner deploy review
|
|
1378
|
+
- harden canonical write boundary
|
|
1379
|
+
- audit inbox canonical persistence
|
|
1380
|
+
- guard canonical vault writes during codex turns
|
|
1381
|
+
- harden hosted execution boundaries
|
|
1382
|
+
- handle inbox envelope evidence correctly
|
|
1383
|
+
- stabilize repo verification checks
|
|
1384
|
+
- hard cut over legacy cron routing
|
|
1385
|
+
- harden hosted runner deploy scaffold
|
|
1386
|
+
- migrate legacy cron delivery targets
|
|
1387
|
+
- stabilize built runtime verification
|
|
1388
|
+
- rotate codex sessions for vault prompt change
|
|
1389
|
+
- harden failover runtime state
|
|
1390
|
+
- surface structured assistant run errors
|
|
1391
|
+
- rotate codex sessions on prompt version changes
|
|
1392
|
+
- patch 0.5.0 model selection
|
|
1393
|
+
- soften restaurant meal follow-ups
|
|
1394
|
+
- enrich restaurant meal logging guidance
|
|
1395
|
+
- harden passkey lifecycle
|
|
1396
|
+
- look up restaurant menus for foods
|
|
1397
|
+
- look up branded food ingredients
|
|
1398
|
+
- auto-log described meals
|
|
1399
|
+
- narrow recurring meal food prompts
|
|
1400
|
+
- suggest reusable foods for repeat meals
|
|
1401
|
+
- lock assistant runs and honor retry-after
|
|
1402
|
+
- keep wrapped ink status rows colored
|
|
1403
|
+
- harden inbox restart and transport retries
|
|
1404
|
+
- guard generated source sidecars
|
|
1405
|
+
- keep wrapped ink rows colored
|
|
1406
|
+
- normalize assistant chat arrow keys
|
|
1407
|
+
- restore green verification
|
|
1408
|
+
- auto-start deep research after send
|
|
1409
|
+
- clarify prompt routing and tool guidance
|
|
1410
|
+
- default research timeout to 40m
|
|
1411
|
+
- tighten prompt guidance copy
|
|
1412
|
+
- clarify research wait semantics
|
|
1413
|
+
- restart failed connector watches
|
|
1414
|
+
- default complex research to deep research
|
|
1415
|
+
- use shared audit bundle tool
|
|
1416
|
+
- protect long-running auto-replies
|
|
1417
|
+
- retry stalled auto-replies
|
|
1418
|
+
- sanitize audit bundles
|
|
1419
|
+
- surface auto-reply provider progress
|
|
1420
|
+
- strip outbound assistant source callouts
|
|
1421
|
+
- harden hosted control-plane boundaries
|
|
1422
|
+
- refresh assistant chat theme after macos appearance changes
|
|
1423
|
+
- harden device sync boundaries
|
|
1424
|
+
- add metadata compatibility repair
|
|
1425
|
+
- ask onboarding tone only once
|
|
1426
|
+
- harden memory upserts and help discovery
|
|
1427
|
+
- restyle queued follow-up UI
|
|
1428
|
+
- ask onboarding name only once
|
|
1429
|
+
- harden whoop and oura callbacks
|
|
1430
|
+
- add first-turn onboarding for interactive chats
|
|
1431
|
+
- harden incur command handling
|
|
1432
|
+
- harden inbox discovery and email normalization
|
|
1433
|
+
- harden assistant delivery and polling
|
|
1434
|
+
- stop retrying mcp bootstrap failures as disconnects
|
|
1435
|
+
- bias assistant toward meal logging
|
|
1436
|
+
- suppress citations in outbound assistant replies
|
|
1437
|
+
- coalesce email thread backlog replies
|
|
1438
|
+
- isolate connector failures in daemon runs
|
|
1439
|
+
- process email backlog on first auto-reply
|
|
1440
|
+
- snapshot ephemeral imessage attachments
|
|
1441
|
+
- persist onboard channel preferences
|
|
1442
|
+
- tolerate missing local attachments
|
|
1443
|
+
- keep onboard prompts alive after review
|
|
1444
|
+
- recover agentmail inbox onboarding
|
|
1445
|
+
- correct ink transcript viewport widths
|
|
1446
|
+
- reuse saved onboarding channels
|
|
1447
|
+
- hide stale working status
|
|
1448
|
+
- keep working dot static
|
|
1449
|
+
- harden shim dist checks
|
|
1450
|
+
- pulse working loader dot
|
|
1451
|
+
- preserve tty in installed shim
|
|
1452
|
+
- remove working loader background
|
|
1453
|
+
- recover ink chat raw mode input
|
|
1454
|
+
- bound foreground ctrl-c shutdown
|
|
1455
|
+
- revert sent bubble width change
|
|
1456
|
+
- widen sent chat bubbles
|
|
1457
|
+
- repair missing runtime shim deps
|
|
1458
|
+
- wrap assistant prose by word
|
|
1459
|
+
- exempt Healthy Bob chat vault ops from repo workflow
|
|
1460
|
+
- harden ink chat transcript layout
|
|
1461
|
+
- force-stop stuck inbox loops
|
|
1462
|
+
- recover suspended inbox stop
|
|
1463
|
+
- fallback to saved default vault
|
|
1464
|
+
- add top-level run alias
|
|
1465
|
+
- allow bare healthybob assistant
|
|
1466
|
+
- stabilize verification for web and smoke coverage
|
|
1467
|
+
- harden timestamps and backfills
|
|
1468
|
+
- preserve assistant tool schema typing
|
|
1469
|
+
- remove ink chat borders
|
|
1470
|
+
- remove assistant chat intro banner
|
|
1471
|
+
- reduce assistant chat redraw churn
|
|
1472
|
+
- harden assistant session drift
|
|
1473
|
+
- shorten assistant starter prompts
|
|
1474
|
+
- restore composer spacing
|
|
1475
|
+
- simplify assistant footer badges
|
|
1476
|
+
- harden assistant provider recovery
|
|
1477
|
+
- refresh assistant chat guidance
|
|
1478
|
+
- harden assistant adapter
|
|
1479
|
+
- wire codex trace streaming
|
|
1480
|
+
- bind assistant vault for memory
|
|
1481
|
+
- stabilize root verification
|
|
1482
|
+
- render assistant transcript links
|
|
1483
|
+
- reflow ink chat transcript
|
|
1484
|
+
- hard-cut canonical read paths
|
|
1485
|
+
- make healthybob shims resilient
|
|
1486
|
+
- harden assistant memory tooling
|
|
1487
|
+
- correct Ink chat width and cursor
|
|
1488
|
+
- harden ink composer input
|
|
1489
|
+
- require adapter and statically bind sdk
|
|
1490
|
+
- narrow assistant prompt discovery
|
|
1491
|
+
- restore assistant ink blue cursor
|
|
1492
|
+
- tighten assistant memory extraction
|
|
1493
|
+
- harden assistant ink terminal input
|
|
1494
|
+
- harden assistant ink composer input
|
|
1495
|
+
- restore green verification checks
|
|
1496
|
+
- replay local assistant transcripts
|
|
1497
|
+
- trim chat exit output
|
|
1498
|
+
- refine chat layout
|
|
1499
|
+
- inject default vault for root chat
|
|
1500
|
+
- match user turns to composer
|
|
1501
|
+
- harden non-core path helpers against symlink escapes
|
|
1502
|
+
- lock down local control plane
|
|
1503
|
+
- redact secret-bearing raw metadata
|
|
1504
|
+
- batch canonical write mutations
|
|
1505
|
+
- repair partial capture replay
|
|
1506
|
+
- stop persisting assistant-state excerpts
|
|
1507
|
+
- apply wearable audit fixes
|
|
1508
|
+
- enable assistant incur cli access
|
|
1509
|
+
- streamline chat waiting copy
|
|
1510
|
+
- order codex approval flag correctly
|
|
1511
|
+
- harden local next runtime boot
|
|
1512
|
+
- rebuild query before local next boot
|
|
1513
|
+
- restore clean verification baseline
|
|
1514
|
+
- trim homepage chrome
|
|
1515
|
+
- install healthybob shims
|
|
1516
|
+
- simplify observatory overview
|
|
1517
|
+
- restore green verification
|
|
1518
|
+
- harden macos onboarding flow
|
|
1519
|
+
- tighten inbox routing assistant safety
|
|
1520
|
+
- redact setup home paths
|
|
1521
|
+
- align incur search routing
|
|
1522
|
+
- unify read output envelopes
|
|
1523
|
+
- normalize selector and filter surface
|
|
1524
|
+
- harden parser daemon reruns
|
|
1525
|
+
- use repeatable multi-value flags
|
|
1526
|
+
- regularize export and search subcommands
|
|
1527
|
+
- tighten bootstrap and parser operator flow
|
|
1528
|
+
- persist export packs in vault
|
|
1529
|
+
- persist export packs in vault
|
|
1530
|
+
- add bootstrap setup command
|
|
1531
|
+
- include root bootstrap config
|
|
1532
|
+
- harden adapter artifact checks
|
|
1533
|
+
- keep readVault tolerant during cli cutover
|
|
1534
|
+
- add canonical write lock
|
|
1535
|
+
- harden inbox follow-up correctness
|
|
1536
|
+
- harden inbox durability and ops
|
|
1537
|
+
- harden sample import retries
|
|
1538
|
+
- remove unused list cursor
|
|
1539
|
+
- harden write boundaries
|
|
1540
|
+
- reserve cursor until pagination exists
|
|
1541
|
+
- restore incur schema surfaces
|
|
1542
|
+
- support merge-preserving registry lookups
|
|
1543
|
+
- enforce contract discipline across health surfaces
|
|
1544
|
+
- wire repo-local prompt presets
|
|
1545
|
+
- harden health export pack inputs
|
|
1546
|
+
- remove explicit any seams
|
|
1547
|
+
- enrich export packs with health context
|
|
1548
|
+
- tighten export pack health readers
|
|
1549
|
+
- stabilize final ts runtime gates
|
|
1550
|
+
- restore runtime package loading
|
|
1551
|
+
- type legacy mutation APIs
|
|
1552
|
+
- resolve review-found runtime bugs
|
|
1553
|
+
|
|
1554
|
+
### Changed
|
|
1555
|
+
- centralize operator authority and tool concerns
|
|
1556
|
+
- clarify provider transport capability naming
|
|
1557
|
+
- remove compatibility-only paths
|
|
1558
|
+
- simplify device-sync route params and provider-turn helpers
|
|
1559
|
+
- forbid unsafe cast shortcuts
|
|
1560
|
+
- require apps/web lint
|
|
1561
|
+
- add package boundaries preset
|
|
1562
|
+
- move npm packages to @murphai scope
|
|
1563
|
+
- hard cut over sparse receipt refs
|
|
1564
|
+
- land follow-up service splits
|
|
1565
|
+
- add app skill locks
|
|
1566
|
+
- clear completed privy fix ledger row
|
|
1567
|
+
- Improve hosted phone country picker
|
|
1568
|
+
- Apply simplification, code-quality, and architecture review patches
|
|
1569
|
+
- update pnpm
|
|
1570
|
+
- Update package.json
|
|
1571
|
+
- upgrade pnpm action to v5
|
|
1572
|
+
- remove sqlite lazy loader
|
|
1573
|
+
- split root and node exports
|
|
1574
|
+
- clarify audit-pass authorization
|
|
1575
|
+
- harden pnpm policy and simplify runtime seams
|
|
1576
|
+
- finish architecture patch alignment
|
|
1577
|
+
- land architecture review patch slices
|
|
1578
|
+
- harden supply chain — remove unused deps, add lockfile policy guard, frozen-lockfile installs
|
|
1579
|
+
- normalize preset response contracts
|
|
1580
|
+
- close cloudflare deploy ordering record
|
|
1581
|
+
- bump to 0.5.19
|
|
1582
|
+
- bump to 0.5.17 and add simplify script
|
|
1583
|
+
- clean pending worktree changes
|
|
1584
|
+
- split local surface into gateway-local
|
|
1585
|
+
- add workspace package cycle guard
|
|
1586
|
+
- remove low-value aliases
|
|
1587
|
+
- hard cut client ownership
|
|
1588
|
+
- split outbox and inbox persistence helpers
|
|
1589
|
+
- hard cut stale compatibility paths
|
|
1590
|
+
- bump review-gpt to 0.5.13
|
|
1591
|
+
- relax simplify audit default
|
|
1592
|
+
- simplify scoped env and email helpers
|
|
1593
|
+
- hard cut hosted-execution shim
|
|
1594
|
+
- simplify hosted webhook helpers
|
|
1595
|
+
- hard cut shared assistant-core layers
|
|
1596
|
+
- finish concurrency hardening
|
|
1597
|
+
- hard cut assistant-core facades
|
|
1598
|
+
- return text findings from review prompts
|
|
1599
|
+
- bump review-gpt to 0.5.12
|
|
1600
|
+
- harden suite concurrency defaults
|
|
1601
|
+
- split gateway and hosted device-sync helpers
|
|
1602
|
+
- move assistant facades behind assistant-core
|
|
1603
|
+
- speed up harness and hosted web verify
|
|
1604
|
+
- emit patched composability artifacts
|
|
1605
|
+
- add composability review snapshot
|
|
1606
|
+
- Harden hosted device sync inputs and snapshots
|
|
1607
|
+
- restore audit delegation reminder
|
|
1608
|
+
- hard-cut gateway core ownership
|
|
1609
|
+
- rename local web package
|
|
1610
|
+
- Update pnpm-lock.yaml
|
|
1611
|
+
- clarify finish-task vs committer usage
|
|
1612
|
+
- finish pending boundary and gateway cleanup
|
|
1613
|
+
- land ddia cleanup patch
|
|
1614
|
+
- finalize local-only hard cut
|
|
1615
|
+
- expand suite concurrency and fast verify lanes
|
|
1616
|
+
- restore explicit commit workflow
|
|
1617
|
+
- land pending worktree changes
|
|
1618
|
+
- refresh generated inventory
|
|
1619
|
+
- add text-only docs verification fast path
|
|
1620
|
+
- remove obsolete continuity docs
|
|
1621
|
+
- add heart emoji to title
|
|
1622
|
+
- refine product pitch
|
|
1623
|
+
- clean up local scaffold leftovers
|
|
1624
|
+
- turn AGENTS into a router
|
|
1625
|
+
- drop licensed gitleaks step
|
|
1626
|
+
- streamline repo guidance
|
|
1627
|
+
- make review subagents read-only
|
|
1628
|
+
- split vitest lanes for faster local verification
|
|
1629
|
+
- clear completed cron target lane
|
|
1630
|
+
- speed up verification runtime builds
|
|
1631
|
+
- document hosted vercel secrets
|
|
1632
|
+
- clarify coordination ledger path
|
|
1633
|
+
- snapshot remaining worktree and close active plans
|
|
1634
|
+
- dedupe root vitest package list
|
|
1635
|
+
- remove closed paddleocr row
|
|
1636
|
+
- hard-cut paddleocr
|
|
1637
|
+
- split app verification lane
|
|
1638
|
+
- split health projectors by family
|
|
1639
|
+
- land residual provider and registry fixes
|
|
1640
|
+
- bump repo tools and review gpt
|
|
1641
|
+
- revert patch output contract
|
|
1642
|
+
- bump review-gpt to 0.5.8
|
|
1643
|
+
- simplify webhook receipt helpers
|
|
1644
|
+
- clean up headless service naming
|
|
1645
|
+
- apply behavior-preserving simplify patch
|
|
1646
|
+
- clarify no-plan patch landing commit path
|
|
1647
|
+
- smooth patch landing workflow
|
|
1648
|
+
- request patch output in prompts
|
|
1649
|
+
- remove stale assistantd seam lane
|
|
1650
|
+
- clear completed assistant-core boundary lane
|
|
1651
|
+
- hard-cut remaining compat seams
|
|
1652
|
+
- clear assistant hardening row
|
|
1653
|
+
- clear completed routing isolation lane
|
|
1654
|
+
- bump review-gpt to v0.5.7
|
|
1655
|
+
- clear cloudflare prod sweep row
|
|
1656
|
+
- add assistant-core boundary
|
|
1657
|
+
- align sender helper regression
|
|
1658
|
+
- clear hosted run trace row
|
|
1659
|
+
- clarify watch-only thread flow
|
|
1660
|
+
- bump review-gpt to v0.5.6
|
|
1661
|
+
- split registry entity documents
|
|
1662
|
+
- bump review-gpt to v0.5.5
|
|
1663
|
+
- simplify control plane clients
|
|
1664
|
+
- simplify assistant quality audit paths
|
|
1665
|
+
- bump review-gpt to v0.5.2
|
|
1666
|
+
- centralize protocol registry adapters
|
|
1667
|
+
- integrate assistant runtime seams
|
|
1668
|
+
- clear completed chatgpt tooling ledger row
|
|
1669
|
+
- hard-cut legacy stored-state readers
|
|
1670
|
+
- normalize internal relation links
|
|
1671
|
+
- close hosted control-plane ledger
|
|
1672
|
+
- fold coverage audit into final review
|
|
1673
|
+
- cover assessment cutover path
|
|
1674
|
+
- add vault record family map
|
|
1675
|
+
- hard-cut typed snapshot seam
|
|
1676
|
+
- cover patch clears and drop family alias
|
|
1677
|
+
- clear stale coordination row
|
|
1678
|
+
- type profile snapshots and event drafts
|
|
1679
|
+
- centralize registry seams for condition allergy family and genetics
|
|
1680
|
+
- hard cut strict frontmatter reads
|
|
1681
|
+
- centralize goal registry definition
|
|
1682
|
+
- restore ai usage meter coverage
|
|
1683
|
+
- align ai usage meter tests
|
|
1684
|
+
- cover proxied device sync fetch plumbing
|
|
1685
|
+
- cover non-hosted usage ledger skip
|
|
1686
|
+
- clear completed linq lane
|
|
1687
|
+
- cover hosted signature and http failure paths
|
|
1688
|
+
- tighten hosted webhook regressions
|
|
1689
|
+
- clean up hosted parity intake
|
|
1690
|
+
- clear assistant route-scoped recovery ledger
|
|
1691
|
+
- clear completed privy lane
|
|
1692
|
+
- separate assistant provider bindings
|
|
1693
|
+
- sync garmin plan index
|
|
1694
|
+
- tighten hosted execution trust boundaries
|
|
1695
|
+
- centralize privy session checks
|
|
1696
|
+
- cover cli and hosted id invariants
|
|
1697
|
+
- merge origin main
|
|
1698
|
+
- sync origin main
|
|
1699
|
+
- remove stale active worker prompts
|
|
1700
|
+
- clean lingering worktree
|
|
1701
|
+
- cover food recipe edit input flow
|
|
1702
|
+
- extract shared food recipe scaffolding
|
|
1703
|
+
- dedupe wrangler runners
|
|
1704
|
+
- clarify hosted device-sync helpers
|
|
1705
|
+
- dedupe hosted wake persistence
|
|
1706
|
+
- dedupe hosted worker contracts
|
|
1707
|
+
- cover webhook receipt cas retries
|
|
1708
|
+
- resolve PR #2 conflicts with main
|
|
1709
|
+
- resolve pr-2 conflicts
|
|
1710
|
+
- resolve main conflicts for pr 2
|
|
1711
|
+
- unify assistant inbox automation
|
|
1712
|
+
- centralize hosted webhook receipt transitions
|
|
1713
|
+
- cover localhost daemon auth regressions
|
|
1714
|
+
- centralize hosted webhook receipt transitions
|
|
1715
|
+
- split hosted stripe dispatch and revnet flow
|
|
1716
|
+
- simplify assistant ink runtime
|
|
1717
|
+
- make assistant provider recovery explicit
|
|
1718
|
+
- finish health adapter migration
|
|
1719
|
+
- split webhook internals
|
|
1720
|
+
- add current-profile recency tie-break audit
|
|
1721
|
+
- refresh index for store split plan
|
|
1722
|
+
- clear completed device sync lane
|
|
1723
|
+
- cover device sync store boundaries
|
|
1724
|
+
- make hosted runtime use package boundary
|
|
1725
|
+
- simplify current-profile seam
|
|
1726
|
+
- move dispatch-ref ownership
|
|
1727
|
+
- split hosted device sync store internals
|
|
1728
|
+
- cover current profile markdown retention
|
|
1729
|
+
- split hosted runtime seams
|
|
1730
|
+
- move overview selectors out of web
|
|
1731
|
+
- share current profile projection helpers
|
|
1732
|
+
- clear cli health lane
|
|
1733
|
+
- tighten markdown registry seam coverage
|
|
1734
|
+
- simplify health service ownership
|
|
1735
|
+
- guard shared taxonomy seam
|
|
1736
|
+
- unify health projection pipeline
|
|
1737
|
+
- clarify current-profile seam
|
|
1738
|
+
- remove stripe invoice subscription fallback
|
|
1739
|
+
- hard-cut greenfield-only shims
|
|
1740
|
+
- remove legacy hosted execution compatibility
|
|
1741
|
+
- add finish-task plan closure
|
|
1742
|
+
- simplify final async cleanup
|
|
1743
|
+
- add legacy-removal preset
|
|
1744
|
+
- hard-cut assistant legacy state
|
|
1745
|
+
- cover deploy preflight helpers
|
|
1746
|
+
- harden hosted next artifact ownership
|
|
1747
|
+
- add audit wait guidance
|
|
1748
|
+
- remove legacy healthybob surfaces
|
|
1749
|
+
- drop healthybob hard-cut fallbacks
|
|
1750
|
+
- ignore codex scratch artifacts
|
|
1751
|
+
- keep setup surface murph-only
|
|
1752
|
+
- ignore .next-dev audit artifacts
|
|
1753
|
+
- migrate healthy bob surfaces to murph
|
|
1754
|
+
- integrate six-worker cleanup batch
|
|
1755
|
+
- finish runtime boundary integration
|
|
1756
|
+
- minimize outbox payloads
|
|
1757
|
+
- hard-cut assistant model config
|
|
1758
|
+
- minimize outbox payloads
|
|
1759
|
+
- integrate runtime boundary refactor
|
|
1760
|
+
- expand assistant provider hard-cutover coverage
|
|
1761
|
+
- cut back webhook cleanup
|
|
1762
|
+
- align receipt helper expectations
|
|
1763
|
+
- align trust-boundary helpers
|
|
1764
|
+
- add murph migration plan
|
|
1765
|
+
- minimize outbox payloads
|
|
1766
|
+
- rename hosted copy to murph
|
|
1767
|
+
- restore truthful source resolution
|
|
1768
|
+
- drop stale revnet env knob
|
|
1769
|
+
- cover Stripe reversal suspension
|
|
1770
|
+
- harden hosted deploy lane
|
|
1771
|
+
- archive production advice follow-up
|
|
1772
|
+
- clarify postcss allowlist wording
|
|
1773
|
+
- allow hosted web postcss config
|
|
1774
|
+
- clarify cron state binding
|
|
1775
|
+
- use outbound worker handlers
|
|
1776
|
+
- share hosted control-plane helpers
|
|
1777
|
+
- journal hosted side effects
|
|
1778
|
+
- close hosted execution outbox lane
|
|
1779
|
+
- split hosted service boundaries
|
|
1780
|
+
- cover assistant model catalog fallbacks
|
|
1781
|
+
- centralize assistant provider model catalog
|
|
1782
|
+
- upgrade next 16 and drop webpack flag
|
|
1783
|
+
- split hosted runner state machine
|
|
1784
|
+
- simplify privy onboarding boundaries
|
|
1785
|
+
- land cleanup batch
|
|
1786
|
+
- cover hosted privy cookie route boundary
|
|
1787
|
+
- ban branded prefixes
|
|
1788
|
+
- verify privy onboarding from tokens only
|
|
1789
|
+
- remove branded error codes
|
|
1790
|
+
- import revnet pay from wire
|
|
1791
|
+
- switch revnet issuance to native eth
|
|
1792
|
+
- hard-cut native container execution
|
|
1793
|
+
- remove branded env prefixes
|
|
1794
|
+
- drop hb deploy env prefix
|
|
1795
|
+
- add hosted deploy automation
|
|
1796
|
+
- cover history local-day timezone writes
|
|
1797
|
+
- clarify audit delegation
|
|
1798
|
+
- simplify duplicated helpers across packages
|
|
1799
|
+
- simplify assistant setup and onboarding flows
|
|
1800
|
+
- cover duplicate webhook receipts
|
|
1801
|
+
- clear completed cron repair row
|
|
1802
|
+
- require audit subagents
|
|
1803
|
+
- exempt data-only tasks from repo workflow
|
|
1804
|
+
- remove food add-daily command
|
|
1805
|
+
- require explicit cron delivery
|
|
1806
|
+
- add constitution guidance
|
|
1807
|
+
- simplify duplicated helper scaffolding
|
|
1808
|
+
- bump @cobuild/review-gpt to 0.5.1
|
|
1809
|
+
- hard-cut regimen to protocol
|
|
1810
|
+
- stabilize coverage and food smoke fixtures
|
|
1811
|
+
- clear outbox debug ledger row
|
|
1812
|
+
- close assistant stop recovery plan
|
|
1813
|
+
- bump review-gpt to 0.4.4
|
|
1814
|
+
- migrate hosted passkeys to webauthx
|
|
1815
|
+
- remove first legacy shims
|
|
1816
|
+
- tighten workflow audits
|
|
1817
|
+
- remove daemon restart shim
|
|
1818
|
+
- extract workspace verification wrapper
|
|
1819
|
+
- close bundle hygiene plan
|
|
1820
|
+
- integrate worker refactor lanes
|
|
1821
|
+
- simplify duplicated cli and core flows
|
|
1822
|
+
- enforce source import boundaries
|
|
1823
|
+
- bump review-gpt to 0.4.2
|
|
1824
|
+
- cover assistant cron presets
|
|
1825
|
+
- bump review-gpt to 0.4.1
|
|
1826
|
+
- checkpoint local worktree
|
|
1827
|
+
- extract inbox app layer
|
|
1828
|
+
- split registry and mutation domains
|
|
1829
|
+
- share runtime unavailable guidance
|
|
1830
|
+
- dedupe workspace source config
|
|
1831
|
+
- clarify auth alias compatibility
|
|
1832
|
+
- dedupe importer runtime contracts
|
|
1833
|
+
- share release argv parsing
|
|
1834
|
+
- reuse shared returnTo helper
|
|
1835
|
+
- dedupe device-sync connect routes
|
|
1836
|
+
- cover recipe and supplement commands
|
|
1837
|
+
- hard cut HEALTHYBOB aliases
|
|
1838
|
+
- prefer unprefixed runtime vars
|
|
1839
|
+
- resolve workspace packages from source
|
|
1840
|
+
- harden runtime artifact rebuild helper
|
|
1841
|
+
- extract shared ulid helper
|
|
1842
|
+
- simplify canonical health collector
|
|
1843
|
+
- dedupe assistant state write locks
|
|
1844
|
+
- reuse markdown registry api for bank
|
|
1845
|
+
- share public wire types
|
|
1846
|
+
- dedupe frontmatter readers
|
|
1847
|
+
- simplify experiment journal vault
|
|
1848
|
+
- remove dead helper code
|
|
1849
|
+
- ignore assistant state
|
|
1850
|
+
- extract shared public ingress
|
|
1851
|
+
- refresh generated inventory
|
|
1852
|
+
- add operator ui guidance
|
|
1853
|
+
- clarify experiment mutation boundary
|
|
1854
|
+
- simplify health command factory
|
|
1855
|
+
- share registry api flow
|
|
1856
|
+
- simplify raw key redaction rules
|
|
1857
|
+
- share transport helpers
|
|
1858
|
+
- simplify whoop provider branching
|
|
1859
|
+
- simplify inbox doctor flow
|
|
1860
|
+
- simplify conversation runtime
|
|
1861
|
+
- centralize current profile resolution
|
|
1862
|
+
- share provider normalization helpers
|
|
1863
|
+
- remove unreachable helper exports
|
|
1864
|
+
- reuse markdown registry helpers
|
|
1865
|
+
- share oauth session helpers
|
|
1866
|
+
- simplify inbox service helpers
|
|
1867
|
+
- split runtime state adapters
|
|
1868
|
+
- move canonical mutation semantics out of cli
|
|
1869
|
+
- polish assistant ink chat ui
|
|
1870
|
+
- centralize command manifest
|
|
1871
|
+
- cap file size guidance
|
|
1872
|
+
- add env example template
|
|
1873
|
+
- add fixed-version monorepo flow
|
|
1874
|
+
- stabilize ink chat input path
|
|
1875
|
+
- share oauth provider plumbing
|
|
1876
|
+
- dedupe assistant session resolution
|
|
1877
|
+
- narrow assistant memory paths
|
|
1878
|
+
- share device normalization helpers
|
|
1879
|
+
- dedupe profile current materialization
|
|
1880
|
+
- dedupe inbox daemon state
|
|
1881
|
+
- share bank write audit helper
|
|
1882
|
+
- drop legacy read fallbacks
|
|
1883
|
+
- record imessage delivery preflight
|
|
1884
|
+
- restore assistant composer padding
|
|
1885
|
+
- widen assistant chat blocks
|
|
1886
|
+
- tighten assistant chat blocks
|
|
1887
|
+
- cover assistant ink keybindings
|
|
1888
|
+
- reduce assistant chat rerenders
|
|
1889
|
+
- reduce assistant ink typing rerenders
|
|
1890
|
+
- centralize id-family helpers
|
|
1891
|
+
- unify document meal read path
|
|
1892
|
+
- cover attachment inbox service helpers
|
|
1893
|
+
- simplify health descriptor matrix
|
|
1894
|
+
- add repo chat alias
|
|
1895
|
+
- centralize id-or-slug lookup
|
|
1896
|
+
- dedupe inbox canonical promotions
|
|
1897
|
+
- simplify current profile resolution
|
|
1898
|
+
- stop forcing dev host
|
|
1899
|
+
- add repo onboarding aliases
|
|
1900
|
+
- add security audit preset
|
|
1901
|
+
- unify query runtime boundary
|
|
1902
|
+
- share vault usecase helpers
|
|
1903
|
+
- share current-profile fallback resolution
|
|
1904
|
+
- share raw import manifest contract
|
|
1905
|
+
- simplify health command factory
|
|
1906
|
+
- dedupe small helper utilities
|
|
1907
|
+
- dedupe pure helper utilities
|
|
1908
|
+
- unify vault write policy
|
|
1909
|
+
- unify inbox promotion helpers
|
|
1910
|
+
- share overview scoring
|
|
1911
|
+
- unify query filter helpers
|
|
1912
|
+
- harden bindings and inbox cursoring
|
|
1913
|
+
- remove resting heart rate page
|
|
1914
|
+
- add react types for ink chat
|
|
1915
|
+
- drop ink chat react ts-ignore
|
|
1916
|
+
- make assistant chat ink-only
|
|
1917
|
+
- standardize telegram on grammy
|
|
1918
|
+
- ignore package-local skill artifacts
|
|
1919
|
+
- upgrade incur to 0.3.4
|
|
1920
|
+
- upgrade vercel ai sdk
|
|
1921
|
+
- include setup vitest coverage
|
|
1922
|
+
- drop incur-specific cleanup
|
|
1923
|
+
- point cli work to incur note
|
|
1924
|
+
- archive stale plans and incur notes
|
|
1925
|
+
- archive stale work
|
|
1926
|
+
- add incur cli guardrails
|
|
1927
|
+
- split helper kitchen sinks
|
|
1928
|
+
- generalize artifact-backed health commands
|
|
1929
|
+
- remove unused binding-layer list type
|
|
1930
|
+
- remove obsolete command helper shims
|
|
1931
|
+
- make command handlers delegate through services
|
|
1932
|
+
- define capability bundles
|
|
1933
|
+
- simplify capability bundle metadata
|
|
1934
|
+
- add capability bundle model
|
|
1935
|
+
- add GPL-3.0 metadata
|
|
1936
|
+
- add bootstrap setup command
|
|
1937
|
+
- align inbox parser bootstrap docs
|
|
1938
|
+
- finish usecase type plumbing
|
|
1939
|
+
- extract internal usecase layer
|
|
1940
|
+
- dedupe executable lookup plumbing
|
|
1941
|
+
- cover genetics registry target stability
|
|
1942
|
+
- reuse shared health crud binder
|
|
1943
|
+
- extract family genetics registry skeleton
|
|
1944
|
+
- inline simple health crud registration
|
|
1945
|
+
- dedupe canonical constants
|
|
1946
|
+
- make strict reads final
|
|
1947
|
+
- soften ledger exclusivity
|
|
1948
|
+
- clear write-batch ownership
|
|
1949
|
+
- update write-batch verification
|
|
1950
|
+
- finish write-batch migration
|
|
1951
|
+
- cut over inbox runtime ownership
|
|
1952
|
+
- finish generic entity cutover
|
|
1953
|
+
- share canonical health collector
|
|
1954
|
+
- unify canonical health entities
|
|
1955
|
+
- share entity registry metadata
|
|
1956
|
+
- split search sqlite ownership
|
|
1957
|
+
- archive cli descriptor wiring plan
|
|
1958
|
+
- tighten health descriptor wiring
|
|
1959
|
+
- simplify family genetics registries
|
|
1960
|
+
- simplify health health-loaders
|
|
1961
|
+
- unify frontmatter markdown parsing
|
|
1962
|
+
- simplify vault fs write boundary
|
|
1963
|
+
- centralize raw import manifest assembly
|
|
1964
|
+
- align search coverage fixtures
|
|
1965
|
+
- close inbox followup fixes
|
|
1966
|
+
- close inbox cli ops plan
|
|
1967
|
+
- factor health command group setup
|
|
1968
|
+
- tighten runtime row decoding
|
|
1969
|
+
- simplify health readers
|
|
1970
|
+
- add parallel-agent output prompts
|
|
1971
|
+
- simplify read model readers
|
|
1972
|
+
- simplify health command factory
|
|
1973
|
+
- simplify runtime boundaries
|
|
1974
|
+
- simplify bank registry helpers
|
|
1975
|
+
- unify parsing engine
|
|
1976
|
+
- reuse health descriptor schemas
|
|
1977
|
+
- clarify record id semantics
|
|
1978
|
+
- share export-pack health loaders
|
|
1979
|
+
- unify history normalization
|
|
1980
|
+
- clear inboxd lane
|
|
1981
|
+
- simplify lazy module loading
|
|
1982
|
+
- simplify bank registry reads
|
|
1983
|
+
- normalize health extracts with zod
|
|
1984
|
+
- use contracts parser for assessment storage
|
|
1985
|
+
- use contract parser for profile snapshots
|
|
1986
|
+
- clarify zod-first contracts
|
|
1987
|
+
- make zod canonical
|
|
1988
|
+
- trim unused presets
|
|
1989
|
+
- align incur integration
|
|
1990
|
+
- align vault-cli with incur
|
|
1991
|
+
- adopt repo-defined presets
|
|
1992
|
+
- use native incur commands
|
|
1993
|
+
- clean up ts workspace plumbing
|
|
1994
|
+
- finish ts package cleanup
|
|
1995
|
+
- bump review-gpt to 0.2.16
|
|
1996
|
+
- strengthen export pack health assertions
|
|
1997
|
+
- tighten tone
|
|
1998
|
+
- expand healthy bob overview
|
|
1999
|
+
- clear completed health entries
|
|
2000
|
+
- simplify package script runner wiring
|
|
2001
|
+
- tighten legacy core test typings
|
|
2002
|
+
- align vitest package gates
|
|
2003
|
+
- migrate runtime packages to typescript
|
|
2004
|
+
- migrate package to typescript
|
|
2005
|
+
- ignore audit bundles
|
|
2006
|
+
- add review gpt wiring
|
|
2007
|
+
- tighten worker ownership for vault batch
|
|
2008
|
+
- add vault baseline contract fence
|
|
2009
|
+
- add repo harness
|