@proxysoul/soulforge 2.6.5 → 2.8.0
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 +21 -2
- package/dist/index.js +23822 -14687
- package/dist/workers/intelligence.worker.js +31 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
<br/><br/>
|
|
21
21
|
|
|
22
|
-
<img src="assets/
|
|
22
|
+
<img src="assets/intro.gif" alt="SoulForge" width="900" />
|
|
23
23
|
|
|
24
24
|
<br/>
|
|
25
25
|
|
|
@@ -118,6 +118,10 @@ SoulForge already knows. On startup it builds a **live dependency graph** of you
|
|
|
118
118
|
<td>Installable skills for domain work. Destructive actions need confirmation. Auto mode for full autonomy.</td>
|
|
119
119
|
</tr>
|
|
120
120
|
<tr>
|
|
121
|
+
<td><strong>MCP servers</strong></td>
|
|
122
|
+
<td>Connect to any <a href="https://modelcontextprotocol.io">Model Context Protocol</a> server. stdio, HTTP, SSE transports. Auto-reconnect, bounded concurrency, tool namespacing. <a href="docs/mcp.md">More</a></td>
|
|
123
|
+
</tr>
|
|
124
|
+
<tr>
|
|
121
125
|
<td><strong>Inline images</strong></td>
|
|
122
126
|
<td>Pixel-perfect images, animated GIFs, and video-to-GIF inline in chat via <code>soul_vision</code>. Kitty graphics protocol with Unicode placeholders. Supports local files, URLs, and code execution output. <a href="#inline-image-support">See terminal support</a></td>
|
|
123
127
|
</tr>
|
|
@@ -125,6 +129,10 @@ SoulForge already knows. On startup it builds a **live dependency graph** of you
|
|
|
125
129
|
<td><strong>4-tier intelligence</strong></td>
|
|
126
130
|
<td>LSP, ts-morph, tree-sitter, regex. 33 languages. Dual LSP: Neovim bridge when the editor is open, standalone servers when it's not. <a href="docs/architecture.md">More</a></td>
|
|
127
131
|
</tr>
|
|
132
|
+
<tr>
|
|
133
|
+
<td><strong>Persistent memory</strong></td>
|
|
134
|
+
<td>Optional <a href="https://github.com/milla-jovovich/mempalace">MemPalace</a> integration. Compaction v2 automatically saves decisions, discoveries, and failures to a searchable knowledge graph. Agent diary persists across sessions. Zero extra tokens. <a href="docs/compaction.md#mempalace-integration">More</a></td>
|
|
135
|
+
</tr>
|
|
128
136
|
</table>
|
|
129
137
|
|
|
130
138
|
</details>
|
|
@@ -301,6 +309,14 @@ brew install ffmpeg chafa yt-dlp
|
|
|
301
309
|
<td>-</td>
|
|
302
310
|
</tr>
|
|
303
311
|
<tr>
|
|
312
|
+
<td><strong>MCP support</strong></td>
|
|
313
|
+
<td>Built-in: stdio, HTTP, SSE. Auto-reconnect, namespaced tools</td>
|
|
314
|
+
<td>MCP client</td>
|
|
315
|
+
<td>MCP client</td>
|
|
316
|
+
<td>MCP-based</td>
|
|
317
|
+
<td>-</td>
|
|
318
|
+
</tr>
|
|
319
|
+
<tr>
|
|
304
320
|
<td><strong>Editor</strong></td>
|
|
305
321
|
<td>Embedded Neovim (your config, your plugins)</td>
|
|
306
322
|
<td>No</td>
|
|
@@ -541,6 +557,8 @@ See [GETTING_STARTED.md](GETTING_STARTED.md) for the full config reference.
|
|
|
541
557
|
<tr><td colspan="2"><strong>Tools</strong></td></tr>
|
|
542
558
|
<tr><td><a href="docs/compound-tools.md">Compound Tools</a></td><td>read, multi_edit, rename_symbol, move_symbol, refactor, project</td></tr>
|
|
543
559
|
<tr><td><a href="docs/project-tool.md">Project Tool</a></td><td>25+ ecosystems, pre-commit checks, monorepo discovery</td></tr>
|
|
560
|
+
<tr><td><a href="docs/mcp.md">MCP Servers</a></td><td>Model Context Protocol integration, transports, configuration, lifecycle</td></tr>
|
|
561
|
+
<tr><td><a href="docs/compaction.md#mempalace-integration">MemPalace</a></td><td>Persistent memory via <a href="https://github.com/milla-jovovich/mempalace">MemPalace</a>. Compaction auto-saves to knowledge graph, agent diary, semantic search</td></tr>
|
|
544
562
|
<tr><td><a href="docs/commands-reference.md">Commands</a></td><td>All 86 slash commands</td></tr>
|
|
545
563
|
<tr><td colspan="2"><strong>Usage</strong></td></tr>
|
|
546
564
|
<tr><td><a href="docs/headless.md">Headless Mode</a></td><td>CLI flags, JSON/JSONL output, CI/CD integration</td></tr>
|
|
@@ -566,11 +584,12 @@ Extracting the intelligence layer into reusable packages:
|
|
|
566
584
|
- **`@soulforge/intelligence`** : graph intelligence, tools, agent orchestration as a library
|
|
567
585
|
- **`@soulforge/mcp`** : Soul Map tools as MCP servers for Claude Code, Cursor, Copilot, any MCP client
|
|
568
586
|
- **`sf --headless`** : shipped. [Docs](docs/headless.md)
|
|
587
|
+
- **MCP servers** : shipped. Connect to any MCP server. [Docs](docs/mcp.md)
|
|
569
588
|
|
|
570
589
|
<table>
|
|
571
590
|
<thead><tr><th width="120">Status</th><th>Item</th></tr></thead>
|
|
572
591
|
<tbody>
|
|
573
|
-
<tr><td><strong>In progress</strong></td><td>
|
|
592
|
+
<tr><td><strong>In progress</strong></td><td>Repo map visualization, GitHub CLI integration, dispatch worktrees, <a href="https://agentclientprotocol.com/">ACP</a></td></tr>
|
|
574
593
|
<tr><td><strong>Planned</strong></td><td>Monorepo graph support, benchmarks, orchestrated workflows (planner > TDD > reviewer > security)</td></tr>
|
|
575
594
|
</tbody>
|
|
576
595
|
</table>
|