@murphai/murph 0.1.13 → 0.1.15
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 +26 -0
- package/README.md +2 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/knowledge.d.ts.map +1 -1
- package/dist/commands/knowledge.js +19 -20
- package/dist/commands/knowledge.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/knowledge-cli-contracts.d.ts +2 -14
- package/dist/knowledge-cli-contracts.d.ts.map +1 -1
- package/dist/knowledge-cli-contracts.js +3 -8
- package/dist/knowledge-cli-contracts.js.map +1 -1
- package/dist/vault-cli-command-manifest.d.ts +2 -10
- package/dist/vault-cli-command-manifest.d.ts.map +1 -1
- package/dist/vault-cli-command-manifest.js +4 -4
- package/dist/vault-cli-command-manifest.js.map +1 -1
- package/package.json +13 -13
- package/dist/knowledge-documents.d.ts +0 -44
- package/dist/knowledge-documents.d.ts.map +0 -1
- package/dist/knowledge-documents.js +0 -195
- package/dist/knowledge-documents.js.map +0 -1
- package/dist/knowledge-lint.d.ts +0 -11
- package/dist/knowledge-lint.d.ts.map +0 -1
- package/dist/knowledge-lint.js +0 -254
- package/dist/knowledge-lint.js.map +0 -1
- package/dist/knowledge-runtime.d.ts +0 -49
- package/dist/knowledge-runtime.d.ts.map +0 -1
- package/dist/knowledge-runtime.js +0 -227
- package/dist/knowledge-runtime.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@murphai/murph` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.1.15] - 2026-04-04
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- refine the onboarding system prompt so the first-message check-in and follow-up guidance read more naturally
|
|
9
|
+
- tighten the wearable-connect onboarding copy so the optional Oura and WHOOP handoff is clearer
|
|
10
|
+
|
|
11
|
+
## [0.1.14] - 2026-04-04
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- add best-effort assistant typing indicators across supported messaging channels
|
|
15
|
+
- add hosted per-user root-key envelopes and browser-compatible user-key helpers for future unlock flows
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- harden hosted execution control with signed control routes, per-run runner tokens, and safer per-user key handling
|
|
19
|
+
- keep hosted user-envelope reads greenfield-safe while preserving the new hosted key model
|
|
20
|
+
- restore hosted verification stability by fixing Cloudflare control-path regressions and stale hosted-web smoke-process cleanup
|
|
21
|
+
- align hosted Linq integrations with the current v3 API, canonical snapshots, and v3 media payloads
|
|
22
|
+
- harden the hosted install script for stock macOS Bash
|
|
23
|
+
- tighten assistant onboarding so first-contact guidance runs once, uses clearer copy, and keeps knowledge tools available on provider turns
|
|
24
|
+
- support Venice defaults in hosted assistant configuration
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- move knowledge runtime ownership into `assistant-core` and tighten knowledge validation
|
|
28
|
+
- centralize first-contact finalization in the assistant runtime
|
|
29
|
+
- refactor the hosted homepage into composable sections and refresh the landing-page copy
|
|
30
|
+
|
|
5
31
|
## [0.1.13] - 2026-04-04
|
|
6
32
|
|
|
7
33
|
### Changed
|
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ vault-cli inbox doctor
|
|
|
44
44
|
For durable local synthesis that should keep adding up inside the vault, use the derived knowledge wiki commands:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
vault-cli knowledge
|
|
47
|
+
vault-cli knowledge upsert --title "Sleep notes" --body "# Sleep notes\n\nMagnesium looked helpful for sleep continuity.\n" --source-path research/2026/04/sleep-note.md
|
|
48
48
|
vault-cli knowledge search "sleep magnesium"
|
|
49
49
|
vault-cli knowledge list
|
|
50
50
|
vault-cli knowledge lint
|
|
@@ -54,7 +54,7 @@ vault-cli knowledge lint
|
|
|
54
54
|
|
|
55
55
|
- a file-native health vault with canonical writes owned by `@murphai/core`
|
|
56
56
|
- local assistant chat, automation, status, cron, and outbox commands
|
|
57
|
-
- a non-canonical derived knowledge wiki you can
|
|
57
|
+
- a non-canonical derived knowledge wiki you can upsert and inspect under `derived/knowledge/**`
|
|
58
58
|
- inbox capture, review, backfill, and parser-driven attachment extraction
|
|
59
59
|
- optional local device sync through `@murphai/device-syncd`
|
|
60
60
|
- optional local assistant daemon support through `@murphai/assistantd`
|