@creative-dswork/dscode 0.2.4 โ 0.2.5
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 +23 -1
- package/dist/dscode.mjs +2163 -1247
- package/dist/web/assets/index-CV7uCPct.js +79 -0
- package/dist/web/assets/index-Ccr9Myda.css +1 -0
- package/dist/web/index.html +2 -2
- package/package.json +5 -3
- package/dist/web/assets/index-BdHQgCrz.css +0 -1
- package/dist/web/assets/index-CiurCY62.js +0 -91
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ dscode is purpose-built for DeepSeek V4 Pro โ our recommended model for digita
|
|
|
92
92
|
<tr>
|
|
93
93
|
<td width="33%" valign="top">
|
|
94
94
|
<strong>๐ฅ Terminal + Web</strong><br />
|
|
95
|
-
<sub>Full TUI with streaming, thinking, tool calls. Modern React Web UI with identical feature parity via WebSocket.</sub>
|
|
95
|
+
<sub>Full TUI with streaming, thinking, tool calls, per-turn token usage & cost stats. Modern React Web UI with identical feature parity via WebSocket.</sub>
|
|
96
96
|
</td>
|
|
97
97
|
<td width="33%" valign="top">
|
|
98
98
|
<strong>๐ MCP Connector</strong><br />
|
|
@@ -117,6 +117,20 @@ dscode is purpose-built for DeepSeek V4 Pro โ our recommended model for digita
|
|
|
117
117
|
<sub><code>read_file</code>, <code>write_file</code>, <code>edit</code> (hash-anchor), <code>bash</code>, <code>grep</code>, <code>glob</code>. MCP tools discovered on-demand via <code>search_tools</code>.</sub>
|
|
118
118
|
</td>
|
|
119
119
|
</tr>
|
|
120
|
+
<tr>
|
|
121
|
+
<td width="33%" valign="top">
|
|
122
|
+
<strong>๐ฌ Dashboard & Motion</strong><br />
|
|
123
|
+
<sub>ChatโDashboard cascade transition with physics-based "dscode" cluster animation. Session dashboard with context-window usage bar.</sub>
|
|
124
|
+
</td>
|
|
125
|
+
<td width="33%" valign="top">
|
|
126
|
+
<strong>๐ Hash-Anchor Editing</strong><br />
|
|
127
|
+
<sub>Content-addressable file editing with 3-level adaptive resolution, atomic batch operations, checkpoint safety rollback, and structured invalidation scopes.</sub>
|
|
128
|
+
</td>
|
|
129
|
+
<td width="33%" valign="top">
|
|
130
|
+
<strong>๐ Retry & Resilience</strong><br />
|
|
131
|
+
<sub>Exponential backoff with configurable retry policy. Handles rate limits, timeouts, and server errors transparently. Respects Retry-After headers.</sub>
|
|
132
|
+
</td>
|
|
133
|
+
</tr>
|
|
120
134
|
</table>
|
|
121
135
|
|
|
122
136
|
> **Tip:** In TUI, paste clipboard images with `Ctrl+V` (macOS) or `/image clipboard`.
|
|
@@ -312,6 +326,14 @@ This is the kind of harness work we invest in: not adding more AI, but making th
|
|
|
312
326
|
|
|
313
327
|
---
|
|
314
328
|
|
|
329
|
+
## Contributing
|
|
330
|
+
|
|
331
|
+
dscode is currently a single-developer SDD project and does not accept direct code contributions (Pull Requests).
|
|
332
|
+
|
|
333
|
+
We welcome bug reports, feature ideas, and technical discussions via **[GitHub Issues](https://github.com/creativedswork/dscode/issues)**. See [CONTRIBUTING.md](CONTRIBUTING.md) for the full policy.
|
|
334
|
+
|
|
335
|
+
| [CONTRIBUTING.md](CONTRIBUTING.md) | Contribution policy & how the SDD workflow operates |
|
|
336
|
+
|
|
315
337
|
## Learn more
|
|
316
338
|
|
|
317
339
|
| Document | What's inside |
|