@proxysoul/soulforge 2.16.1 → 2.16.2
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 +34 -0
- package/dist/index.js +5 -3
- package/dist/workers/io.worker.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,43 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
+
<a href="https://github.com/sponsors/proxysoul"><img src="https://img.shields.io/badge/%F0%9F%94%A5_Sponsor-GitHub-EA4AAA.svg?style=for-the-badge&logo=githubsponsors&logoColor=white" alt="Sponsor on GitHub" /></a>
|
|
3
4
|
<a href="https://paypal.me/waeru"><img src="https://img.shields.io/badge/%E2%9A%94%EF%B8%8F_Fuel_the_Forge-PayPal-9B30FF.svg?style=for-the-badge&logo=paypal&logoColor=white" alt="Fuel the Forge" /></a>
|
|
4
5
|
|
|
5
6
|
<br/>
|
|
6
7
|
|
|
8
|
+
<sub><b>Backed by</b></sub>
|
|
9
|
+
<br/>
|
|
10
|
+
<br/>
|
|
11
|
+
|
|
12
|
+
<!--
|
|
13
|
+
Sponsor wall — logos sized by tier.
|
|
14
|
+
Heart of the forge ($1000/mo) → height="80" top row, solo
|
|
15
|
+
Anvil ($500/mo) → height="60" premium row
|
|
16
|
+
Forge ($100/mo) + Permanent ($200+) → height="48" supporters row
|
|
17
|
+
Add new sponsors to the matching tier row below. Source of truth: BACKERS.md.
|
|
18
|
+
-->
|
|
19
|
+
|
|
20
|
+
<!-- Permanent backers ($200+ one-time) & Forge tier ($100/mo) -->
|
|
21
|
+
<a href="https://llmgateway.io/dashboard?ref=6tjJR2H3X4E9RmVQiQwK" title="LLM Gateway — Permanent backer">
|
|
22
|
+
<picture>
|
|
23
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://llmgateway.io/brand/logo-with-name-white.svg" />
|
|
24
|
+
<source media="(prefers-color-scheme: light)" srcset="https://llmgateway.io/brand/logo-with-name-black.svg" />
|
|
25
|
+
<img alt="LLM Gateway" src="https://llmgateway.io/brand/logo-with-name-black.svg" height="48" />
|
|
26
|
+
</picture>
|
|
27
|
+
</a>
|
|
28
|
+
|
|
29
|
+
<br/>
|
|
30
|
+
<sub><i>One API, 200+ models, up to 30% off frontier — already wired into SoulForge as the <code>llmgateway</code> provider.</i></sub>
|
|
31
|
+
|
|
32
|
+
<br/><br/>
|
|
33
|
+
|
|
34
|
+
<a href="https://llmgateway.io/dashboard?ref=6tjJR2H3X4E9RmVQiQwK"><img src="https://img.shields.io/badge/Get_a_LLM_Gateway_key-%E2%86%92-7C3AED.svg?style=for-the-badge&labelColor=0a0818" alt="Get a LLM Gateway key" /></a>
|
|
35
|
+
|
|
36
|
+
<br/>
|
|
37
|
+
<sub><a href="BACKERS.md">See all backers</a> · <a href="https://github.com/sponsors/proxysoul">Become a sponsor</a></sub>
|
|
38
|
+
|
|
39
|
+
<br/>
|
|
40
|
+
|
|
7
41
|
<picture>
|
|
8
42
|
<source media="(prefers-color-scheme: dark)" srcset="assets/SOULFORGE_LOGO.png" />
|
|
9
43
|
<source media="(prefers-color-scheme: light)" srcset="assets/SOULFORGE_LOGO_LIGHT.png" />
|
package/dist/index.js
CHANGED
|
@@ -63415,7 +63415,7 @@ var package_default;
|
|
|
63415
63415
|
var init_package = __esm(() => {
|
|
63416
63416
|
package_default = {
|
|
63417
63417
|
name: "@proxysoul/soulforge",
|
|
63418
|
-
version: "2.16.
|
|
63418
|
+
version: "2.16.2",
|
|
63419
63419
|
description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
|
|
63420
63420
|
repository: {
|
|
63421
63421
|
type: "git",
|
|
@@ -503780,8 +503780,6 @@ function extractReadSources(tc) {
|
|
|
503780
503780
|
const argPath = filesArg.find((f3) => typeof f3?.path === "string" && (f3.path === outPath || outPath.endsWith(f3.path)));
|
|
503781
503781
|
const path6 = typeof argPath?.path === "string" ? argPath.path : outPath;
|
|
503782
503782
|
const lang254 = langFromPath(path6);
|
|
503783
|
-
if (!lang254)
|
|
503784
|
-
continue;
|
|
503785
503783
|
result.push({ path: path6, content: stripReadLineNumbers(body4), lang: lang254 });
|
|
503786
503784
|
}
|
|
503787
503785
|
return result.length > 0 ? result : null;
|
|
@@ -506608,6 +506606,10 @@ var init_LockInStreamView = __esm(async () => {
|
|
|
506608
506606
|
const trailingText = import_react59.useMemo(() => {
|
|
506609
506607
|
if (committedAt === null)
|
|
506610
506608
|
return null;
|
|
506609
|
+
for (let i4 = committedAt;i4 < segments.length; i4++) {
|
|
506610
|
+
if (segments[i4]?.type === "tools")
|
|
506611
|
+
return null;
|
|
506612
|
+
}
|
|
506611
506613
|
const parts2 = [];
|
|
506612
506614
|
for (let i4 = committedAt;i4 < segments.length; i4++) {
|
|
506613
506615
|
const seg = segments[i4];
|
|
@@ -50577,7 +50577,7 @@ var package_default;
|
|
|
50577
50577
|
var init_package = __esm(() => {
|
|
50578
50578
|
package_default = {
|
|
50579
50579
|
name: "@proxysoul/soulforge",
|
|
50580
|
-
version: "2.16.
|
|
50580
|
+
version: "2.16.2",
|
|
50581
50581
|
description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
|
|
50582
50582
|
repository: {
|
|
50583
50583
|
type: "git",
|