@cortexkit/opencode-magic-context 0.8.0 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
<a href="#what-is-magic-context">What is Magic Context?</a> ·
|
|
23
23
|
<a href="#what-your-agent-gets">What Your Agent Gets</a> ·
|
|
24
24
|
<a href="#how-it-works">How It Works</a> ·
|
|
25
|
+
<a href="#magic-context-app">🖥️ Desktop App <sup>(NEW)</sup></a> ·
|
|
25
26
|
<a href="#commands">Commands</a> ·
|
|
26
27
|
<a href="#configuration">Configuration</a>
|
|
27
28
|
</p>
|
|
@@ -316,6 +317,27 @@ On startup, Magic Context checks for common configuration problems — OpenCode'
|
|
|
316
317
|
|
|
317
318
|
---
|
|
318
319
|
|
|
320
|
+
## Magic Context App
|
|
321
|
+
|
|
322
|
+
A companion desktop app for browsing and managing Magic Context state outside of OpenCode.
|
|
323
|
+
|
|
324
|
+
<p align="center">
|
|
325
|
+
<a href="https://github.com/cortexkit/opencode-magic-context/releases?q=dashboard"><strong>⬇️ Download for macOS · Windows · Linux</strong></a>
|
|
326
|
+
</p>
|
|
327
|
+
|
|
328
|
+
**Features:**
|
|
329
|
+
- **Memory Browser** — search, filter, and edit project memories with category and project filtering
|
|
330
|
+
- **Session History** — browse compartments, facts, and notes for any session with timeline navigation
|
|
331
|
+
- **Cache Diagnostics** — real-time cache hit/miss timeline, bust cause detection, per-session stats
|
|
332
|
+
- **Dreamer Management** — view dream run history per project, trigger runs, inspect task results
|
|
333
|
+
- **Configuration Editor** — form-based editing for all settings including model selection with fallback chains
|
|
334
|
+
- **Log Viewer** — live-tailing log viewer with search
|
|
335
|
+
- **System Tray** — quick access to dreamer status and controls
|
|
336
|
+
|
|
337
|
+
The app reads directly from Magic Context's SQLite database — no additional server or API required. Auto-updates are built in.
|
|
338
|
+
|
|
339
|
+
---
|
|
340
|
+
|
|
319
341
|
## Configuration
|
|
320
342
|
|
|
321
343
|
All settings live in `magic-context.jsonc` as flat top-level keys. See **[CONFIGURATION.md](./CONFIGURATION.md)** for the full reference — cache TTL tuning, per-model execute thresholds, historian model selection, embedding providers, memory settings, sidekick, and dreamer.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cortexkit/opencode-magic-context",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OpenCode plugin for Magic Context — cross-session memory and context management",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@clack/prompts": "^1.1.0",
|
|
47
|
-
"@huggingface/transformers": "
|
|
47
|
+
"@huggingface/transformers": "~3.7.6",
|
|
48
48
|
"@opencode-ai/plugin": "^1.2.26",
|
|
49
49
|
"@opencode-ai/sdk": "^1.2.26",
|
|
50
50
|
"ai-tokenizer": "^1.0.6",
|