@cofy-x/dsh-console 0.1.0-alpha.0 → 0.1.0-alpha.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 +8 -14
- package/dist/{chunk-Z7RUTXMO.js → chunk-JFPTU3O3.js} +1309 -547
- package/dist/{chunk-YNJGTXFJ.js → chunk-N3EQS35J.js} +36 -5
- package/dist/dsh/index.js +2 -2
- package/dist/index.js +2 -2
- package/dist/ui/renderers.js +1 -1
- package/package.json +17 -7
package/README.md
CHANGED
|
@@ -1,27 +1,23 @@
|
|
|
1
1
|
# DSH Console
|
|
2
2
|
|
|
3
|
-
`dsh-console` is a TypeScript and React/Ink terminal frontend for
|
|
4
|
-
[DeepSeek Harness](https://github.com/deepseek-ai/DeepSeek-Harness).
|
|
3
|
+
`dsh-console` is a TypeScript and React/Ink terminal frontend for [DeepSeek Harness](https://github.com/deepseek-ai/DeepSeek-Harness).
|
|
5
4
|
|
|
6
|
-
> DSH Console is currently a public alpha. Commands and UI details may change
|
|
7
|
-
> before the first stable release.
|
|
5
|
+
> DSH Console is currently a public alpha. Commands and UI details may change before the first stable release.
|
|
8
6
|
|
|
9
7
|
## Install
|
|
10
8
|
|
|
11
|
-
DSH Console requires Node.js 24 or newer and a working DSH provider
|
|
12
|
-
configuration.
|
|
9
|
+
DSH Console requires Node.js 24 or newer and a working DSH provider configuration.
|
|
13
10
|
|
|
14
11
|
```sh
|
|
15
|
-
npm install --global @deepseek-ai/dsh @cofy-x/dsh-console
|
|
12
|
+
npm install --global @deepseek-ai/dsh @cofy-x/dsh-console
|
|
16
13
|
dsh-console --prompt "hello"
|
|
17
14
|
```
|
|
18
15
|
|
|
19
|
-
Alpha releases
|
|
16
|
+
Public Alpha releases are intentionally available through npm's default `latest` channel for a simple installation path, while the published version keeps its `-alpha.x` prerelease identifier so the maturity level remains explicit.
|
|
20
17
|
|
|
21
18
|
## Use
|
|
22
19
|
|
|
23
|
-
The launcher initializes or locates the `dsh-console` DSH profile and starts an
|
|
24
|
-
interactive terminal session. Useful commands include:
|
|
20
|
+
The launcher initializes or locates the `dsh-console` DSH profile and starts an interactive terminal session. Useful commands include:
|
|
25
21
|
|
|
26
22
|
```text
|
|
27
23
|
/model Select the active DSH model
|
|
@@ -34,8 +30,6 @@ interactive terminal session. Useful commands include:
|
|
|
34
30
|
/settings Edit Console settings
|
|
35
31
|
```
|
|
36
32
|
|
|
37
|
-
DSH owns provider credentials, model routing, session logs, and attachments.
|
|
38
|
-
DSH Console does not maintain a separate authentication or session database.
|
|
33
|
+
DSH owns provider credentials, model routing, session logs, and attachments. DSH Console does not maintain a separate authentication or session database.
|
|
39
34
|
|
|
40
|
-
See the [GitHub repository](https://github.com/cofy-x/dsh-console) for source
|
|
41
|
-
development, architecture, alpha boundaries, and license attribution details.
|
|
35
|
+
See the [GitHub repository](https://github.com/cofy-x/dsh-console) for source development, architecture, alpha boundaries, and license attribution details.
|