dsh-coding-subscription-oauth 0.5.7 → 0.5.8
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/CHANGELOG.md +14 -0
- package/CONTRIBUTING.md +12 -1
- package/INSTALL.md +4 -4
- package/README.de.md +4 -4
- package/README.es.md +4 -4
- package/README.fr.md +4 -4
- package/README.ja.md +4 -4
- package/README.ko.md +4 -4
- package/README.md +4 -4
- package/README.pt-BR.md +4 -4
- package/README.ru.md +4 -4
- package/README.zh-CN.md +4 -4
- package/docs/02-architecture.md +1 -1
- package/docs/02-architecture.zh-CN.md +1 -1
- package/lib/client.js +3 -3
- package/lib/client.js.map +3 -3
- package/package.json +1 -1
- package/scripts/release.mjs +4 -0
- package/src/client/components/AboutTab.tsx +12 -2
- package/src/client/components/GatewayTab.tsx +81 -36
- package/src/client/components/ProgressBar.tsx +2 -1
- package/src/client/components/ToggleSwitch.tsx +1 -1
- package/src/client/constants.ts +1 -1
- package/src/client/locales.ts +4 -0
- package/src/client/styles.ts +3 -8
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to `dsh-coding-subscription-oauth` are documented here, foll
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## v0.5.8 - 2026-08-22
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Make the tag Release workflow idempotent for GitHub Releases (create or edit) and run npm provenance publish in a separate job so a pre-existing release no longer skips publishing.
|
|
12
|
+
- Skip npm publish when the exact version is already on the registry, then verify `npm view` matches the tag.
|
|
13
|
+
- Finish Settings theme polish: Gateway enable uses ToggleSwitch, OpenAI/Anthropic copy actions share CopyButton, snippet tabs get keyboard/ARIA parity, About gains a real heading and docs link, ProgressBar uses `button-info-fill`, and warn banners use warn-colored styling.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Relax Docker preview seed/`run-preview.sh` so they accept the installed `@deepseek-ai/dsh` version instead of a hard-coded `0.1.0-rc.6` pin.
|
|
18
|
+
- Extend `release.mjs` version checks to `INSTALL.md` and `README.zh-CN.md`.
|
|
19
|
+
- Document npm Trusted Publishing binding steps in `CONTRIBUTING.md`.
|
|
20
|
+
|
|
7
21
|
## v0.5.7 - 2026-08-22
|
|
8
22
|
|
|
9
23
|
### Fixed
|
package/CONTRIBUTING.md
CHANGED
|
@@ -25,7 +25,7 @@ The `artifacts`, `package`, `inspect`, and `isolated-install` targets cover gene
|
|
|
25
25
|
|
|
26
26
|
### Isolated Web preview
|
|
27
27
|
|
|
28
|
-
`docker/run-preview.sh` is the only supported interactive preview launcher. It builds `web-preview` offline from two auditable inputs: this checkout's committed `lib/` and a BuildKit named context containing an installed `@deepseek-ai/dsh
|
|
28
|
+
`docker/run-preview.sh` is the only supported interactive preview launcher. It builds `web-preview` offline from two auditable inputs: this checkout's committed `lib/` and a BuildKit named context containing an installed `@deepseek-ai/dsh` **program package** (any audited version whose peer tree satisfies this plugin). Point `DSH_INSTALL_DIR` at that package directory, never at a DSH home/profile or any credential directory:
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
31
|
export DSH_INSTALL_DIR=/path/to/node_modules/@deepseek-ai/dsh
|
|
@@ -97,6 +97,17 @@ History is part of the review. The maintainer counterpart — tags, clean-tree r
|
|
|
97
97
|
- Do not force-push `main` or a published release tag. Feature-branch force-pushes still need explicit approval (see above).
|
|
98
98
|
- Maintainers run the release loop (`docs/00-project-rules.md` §3–4 and §7) after merging a substantive change: clean working tree, bump version, annotated tag `v<version>`, publish to npm, and keep the GitHub milestone/release updated.
|
|
99
99
|
|
|
100
|
+
### npm Trusted Publishing (required for tag releases)
|
|
101
|
+
|
|
102
|
+
Tag pushes run `.github/workflows/release.yml`, which publishes with `npm publish --provenance` via OIDC (no long-lived `NPM_TOKEN`). Before the first automated publish of a package (or after moving the GitHub repo), a maintainer must bind Trusted Publishing on npm:
|
|
103
|
+
|
|
104
|
+
1. Sign in at [npmjs.com](https://www.npmjs.com/) as the package owner.
|
|
105
|
+
2. Open **Package → Settings → Trusted Publisher → GitHub Actions**.
|
|
106
|
+
3. Set **Organization or user** to `lninghaha`, **Repository** to `dsh-coding-subscription-oauth`, **Workflow filename** to `release.yml`, and leave the environment blank unless you add one.
|
|
107
|
+
4. Save. Pushing `v*` must then create/update the GitHub Release and publish (or skip if that exact version is already on the registry).
|
|
108
|
+
|
|
109
|
+
If Trusted Publishing is missing or mis-bound, `npm publish` returns registry `404` after provenance signing. Fix the binding and re-run the failed Release workflow (or publish that one version manually, then rely on CI for later tags).
|
|
110
|
+
|
|
100
111
|
## Reporting security issues
|
|
101
112
|
|
|
102
113
|
Do not open a public issue for a credential or account-safety problem. Follow the compliance/safety policy in `README.md`; for anything sensitive, contact a maintainer directly rather than pasting tokens or credentials anywhere.
|
package/INSTALL.md
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
本仓库原名 **`dsh-grok-build`**。普通用户请使用已发布的 npm 版本:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
6
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
CLI 新命令是 `dsh-coding-oauth`(旧命令 `dsh-grok-build` 仍可用)。为兼容已有 profile,Cordis id 仍是 `llm-grok-build-oauth`,设置页 HTTP 路径仍是 `/plugins/dsh-grok-build/*`,凭据文件名不变。
|
|
10
10
|
|
|
11
|
-
第一次公开发布是 **`0.4.1`**。当前推荐 **`0.5.
|
|
11
|
+
第一次公开发布是 **`0.4.1`**。当前推荐 **`0.5.8`**:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
14
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
15
15
|
dsh plugin --profile web update dsh-coding-subscription-oauth
|
|
16
16
|
```
|
|
17
17
|
|
|
@@ -26,7 +26,7 @@ dsh plugin --profile web update dsh-coding-subscription-oauth
|
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
28
|
# 普通用户:当前 npm 发布版
|
|
29
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
29
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
30
30
|
|
|
31
31
|
# 开发 / 备用:从 GitHub
|
|
32
32
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/README.de.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# 🔐 dsh-coding-subscription-oauth
|
|
6
6
|
|
|
7
|
-
**v0.5.
|
|
7
|
+
**v0.5.8 · früher `dsh-grok-build`
|
|
8
8
|
|
|
9
9
|
**OAuth-Plugin für Coding-Abonnements für [DeepSeek Harness](https://github.com/deepseek-ai/dsh).** Melden Sie sich einmal mit den Abonnements an, die Sie bereits bezahlen, und nutzen Sie die Modelle aus den Einstellungen oder der CLI von dsh. **Keine Tokens in den Chat einfügen.**
|
|
10
10
|
|
|
@@ -23,7 +23,7 @@ Zuerst **`dsh-grok-build`** (nur Grok Build). Jetzt SuperGrok / Codex / Kimi / C
|
|
|
23
23
|
| | Das verwenden | Funktioniert weiter |
|
|
24
24
|
|---|---|---|
|
|
25
25
|
| GitHub / `dsh plugin add` | [`dsh-coding-subscription-oauth`](https://github.com/lninghaha/dsh-coding-subscription-oauth) | `github:lninghaha/dsh-grok-build` (derselbe `main`) |
|
|
26
|
-
| npm | `dsh-coding-subscription-oauth@0.5.
|
|
26
|
+
| npm | `dsh-coding-subscription-oauth@0.5.8` (aktuelle Version) | Es gab kein altes npm-Paket |
|
|
27
27
|
| CLI | `dsh-coding-oauth` | `dsh-grok-build` |
|
|
28
28
|
| Cordis-Plugin-id | `llm-grok-build-oauth` | unverändert |
|
|
29
29
|
| Settings-HTTP-API | `/plugins/dsh-grok-build/*` | unverändert |
|
|
@@ -73,7 +73,7 @@ Diese Suchbegriffe und DSH-Fehler führen meist hierher.
|
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
# 1. Plugin in das Web-Profil installieren (aktuelle npm-Version)
|
|
76
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
76
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
77
77
|
|
|
78
78
|
# 2. optional — Google Antigravity (gepinnte, geprüfte Version)
|
|
79
79
|
dsh plugin --profile web add dsh-agy@0.1.2
|
|
@@ -114,7 +114,7 @@ Erfordert DeepSeek Harness `0.1.0-rc.6+` und Node.js 22.19+. Vollständige Detai
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
# aktuelle npm-Version (empfohlen)
|
|
117
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
117
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
118
118
|
|
|
119
119
|
# Entwicklung/Alternativ: von GitHub
|
|
120
120
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/README.es.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# 🔐 dsh-coding-subscription-oauth
|
|
6
6
|
|
|
7
|
-
**v0.5.
|
|
7
|
+
**v0.5.8 · antes `dsh-grok-build`
|
|
8
8
|
|
|
9
9
|
**Plugin OAuth de suscripciones de codificación para [DeepSeek Harness](https://github.com/deepseek-ai/dsh).** Inicia sesión una vez con las suscripciones que ya pagas y luego usa sus modelos desde la página de configuración o la CLI de dsh. **Sin pegar tokens en el chat.**
|
|
10
10
|
|
|
@@ -24,7 +24,7 @@ Empezó como **`dsh-grok-build`** (solo Grok Build). Ahora cubre SuperGrok / Cod
|
|
|
24
24
|
| | Usa esto | Sigue funcionando |
|
|
25
25
|
|---|---|---|
|
|
26
26
|
| GitHub / `dsh plugin add` | [`dsh-coding-subscription-oauth`](https://github.com/lninghaha/dsh-coding-subscription-oauth) | `github:lninghaha/dsh-grok-build` (el mismo `main`) |
|
|
27
|
-
| npm | `dsh-coding-subscription-oauth@0.5.
|
|
27
|
+
| npm | `dsh-coding-subscription-oauth@0.5.8` (versión actual) | No se publicó un paquete npm legado |
|
|
28
28
|
| CLI | `dsh-coding-oauth` | `dsh-grok-build` |
|
|
29
29
|
| Cordis plugin id | `llm-grok-build-oauth` | sin cambios |
|
|
30
30
|
| API HTTP de ajustes | `/plugins/dsh-grok-build/*` | sin cambios |
|
|
@@ -73,7 +73,7 @@ Estas búsquedas y errores de DSH suelen traer a la gente hasta aquí.
|
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
# 1. instala el plugin en el perfil web (versión actual de npm)
|
|
76
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
76
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
77
77
|
|
|
78
78
|
# 2. opcional — Google Antigravity (versión fija revisada)
|
|
79
79
|
dsh plugin --profile web add dsh-agy@0.1.2
|
|
@@ -114,7 +114,7 @@ Requiere DeepSeek Harness `0.1.0-rc.6+` y Node.js 22.19+. Detalles completos en
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
# versión actual de npm (recomendado)
|
|
117
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
117
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
118
118
|
|
|
119
119
|
# desarrollo/alternativo: desde GitHub
|
|
120
120
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/README.fr.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# 🔐 dsh-coding-subscription-oauth
|
|
6
6
|
|
|
7
|
-
**v0.5.
|
|
7
|
+
**v0.5.8 · anciennement `dsh-grok-build`
|
|
8
8
|
|
|
9
9
|
**Plugin OAuth pour abonnements de codage de [DeepSeek Harness](https://github.com/deepseek-ai/dsh).** Connectez-vous une fois avec les abonnements que vous payez déjà, puis utilisez leurs modèles depuis la page de configuration ou la CLI dsh. **Aucun token collé dans le chat.**
|
|
10
10
|
|
|
@@ -24,7 +24,7 @@ Le projet s'appelait **`dsh-grok-build`** (Grok Build uniquement). Il couvre mai
|
|
|
24
24
|
| | Utiliser | Toujours valable |
|
|
25
25
|
|---|---|---|
|
|
26
26
|
| GitHub / `dsh plugin add` | [`dsh-coding-subscription-oauth`](https://github.com/lninghaha/dsh-coding-subscription-oauth) | `github:lninghaha/dsh-grok-build` (même `main`) |
|
|
27
|
-
| npm | `dsh-coding-subscription-oauth@0.5.
|
|
27
|
+
| npm | `dsh-coding-subscription-oauth@0.5.8` (version actuelle) | Aucun ancien paquet npm n'a été publié |
|
|
28
28
|
| CLI | `dsh-coding-oauth` | `dsh-grok-build` |
|
|
29
29
|
| Cordis plugin id | `llm-grok-build-oauth` | inchangé |
|
|
30
30
|
| API HTTP des réglages | `/plugins/dsh-grok-build/*` | inchangé |
|
|
@@ -73,7 +73,7 @@ Ce sont les recherches et erreurs DSH qui mènent le plus souvent ici.
|
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
# 1. installez le plugin dans le profil web (version actuelle npm)
|
|
76
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
76
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
77
77
|
|
|
78
78
|
# 2. optionnel — Google Antigravity (version épinglée examinée)
|
|
79
79
|
dsh plugin --profile web add dsh-agy@0.1.2
|
|
@@ -114,7 +114,7 @@ Nécessite DeepSeek Harness `0.1.0-rc.6+` et Node.js 22.19+. Détails complets d
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
# version actuelle npm (recommandé)
|
|
117
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
117
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
118
118
|
|
|
119
119
|
# développement/alternatif : depuis GitHub
|
|
120
120
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/README.ja.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# 🔐 dsh-coding-subscription-oauth
|
|
6
6
|
|
|
7
|
-
**v0.5.
|
|
7
|
+
**v0.5.8 · 旧名 `dsh-grok-build`
|
|
8
8
|
|
|
9
9
|
**DeepSeek Harness(dsh)のためのコーディングサブスクリプション OAuth プラグイン。** 支払い済みのサブスクリプションで一度きりのサインイン——その後は dsh の設定ページまたは CLI からそのモデルを使えます。**チャットにトークンを貼り付ける必要はありません。**
|
|
10
10
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
| | これを使う | 互換 |
|
|
24
24
|
|---|---|---|
|
|
25
25
|
| GitHub / `dsh plugin add` | [`dsh-coding-subscription-oauth`](https://github.com/lninghaha/dsh-coding-subscription-oauth) | `github:lninghaha/dsh-grok-build`(同じ `main`) |
|
|
26
|
-
| npm | `dsh-coding-subscription-oauth@0.5.
|
|
26
|
+
| npm | `dsh-coding-subscription-oauth@0.5.8`(現在のリリース) | 旧 npm パッケージは公開されていない |
|
|
27
27
|
| CLI | `dsh-coding-oauth` | `dsh-grok-build` |
|
|
28
28
|
| Cordis プラグイン id | `llm-grok-build-oauth` | 変更なし |
|
|
29
29
|
| 設定ページ HTTP API | `/plugins/dsh-grok-build/*` | 変更なし |
|
|
@@ -73,7 +73,7 @@ DSH にコーディングサブスクを載せるとき、よく次の検索語
|
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
# 1. web プロファイルにプラグインをインストール(現在の npm リリース)
|
|
76
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
76
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
77
77
|
|
|
78
78
|
# 2. 任意 — Google Antigravity(レビュー済みの固定バージョン)
|
|
79
79
|
dsh plugin --profile web add dsh-agy@0.1.2
|
|
@@ -114,7 +114,7 @@ DeepSeek Harness `0.1.0-rc.6+` と Node.js 22.19+ が前提です。詳細は[
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
# 現在の npm リリース(推奨)
|
|
117
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
117
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
118
118
|
|
|
119
119
|
# 開発/代替:GitHub から
|
|
120
120
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/README.ko.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# 🔐 dsh-coding-subscription-oauth
|
|
6
6
|
|
|
7
|
-
**v0.5.
|
|
7
|
+
**v0.5.8 · 이전 이름 `dsh-grok-build`
|
|
8
8
|
|
|
9
9
|
**[DeepSeek Harness](https://github.com/deepseek-ai/dsh)용 코딩 구독 OAuth 플러그인.** 이미 결제한 구독으로 한 번에 로그인하고, dsh 설정 페이지나 CLI에서 그 모델을 사용하세요. **채팅에 토큰을 붙여넣을 필요가 없습니다.**
|
|
10
10
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
| | 이것을 쓰세요 | 계속 동작 |
|
|
24
24
|
|---|---|---|
|
|
25
25
|
| GitHub / `dsh plugin add` | [`dsh-coding-subscription-oauth`](https://github.com/lninghaha/dsh-coding-subscription-oauth) | `github:lninghaha/dsh-grok-build`(같은 `main`) |
|
|
26
|
-
| npm | `dsh-coding-subscription-oauth@0.5.
|
|
26
|
+
| npm | `dsh-coding-subscription-oauth@0.5.8`(현재 릴리스) | 레거시 npm 패키지는 게시된 적 없음 |
|
|
27
27
|
| CLI | `dsh-coding-oauth` | `dsh-grok-build` |
|
|
28
28
|
| Cordis 플러그인 id | `llm-grok-build-oauth` | 그대로 |
|
|
29
29
|
| 설정 페이지 HTTP API | `/plugins/dsh-grok-build/*` | 그대로 |
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
# 1. web 프로필에 플러그인 설치 (현재 npm 릴리스)
|
|
76
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
76
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
77
77
|
|
|
78
78
|
# 2. 선택 사항 — Google Antigravity (검증된 고정 버전)
|
|
79
79
|
dsh plugin --profile web add dsh-agy@0.1.2
|
|
@@ -114,7 +114,7 @@ DeepSeek Harness `0.1.0-rc.6+` 및 Node.js 22.19+가 필요합니다. 자세한
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
# 현재 npm 릴리스 (권장)
|
|
117
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
117
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
118
118
|
|
|
119
119
|
# 개발/대안: GitHub에서
|
|
120
120
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# 🔐 dsh-coding-subscription-oauth
|
|
6
6
|
|
|
7
|
-
**v0.5.
|
|
7
|
+
**v0.5.8** · formerly `dsh-grok-build`
|
|
8
8
|
|
|
9
9
|
**Coding-subscription OAuth for [DeepSeek Harness](https://github.com/deepseek-ai/dsh).** Use SuperGrok / X Premium (Grok Build), ChatGPT Plus/Pro (Codex), Kimi Code, Claude Pro/Max and Google Antigravity inside DSH — without a second API-key bill and **without pasting any token into chat.**
|
|
10
10
|
|
|
@@ -23,7 +23,7 @@ Published first as **`dsh-grok-build`** when it only covered Grok Build. The cur
|
|
|
23
23
|
|
|
24
24
|
| | Use this | Still works |
|
|
25
25
|
|---|---|---|
|
|
26
|
-
| npm (recommended) | Current release is `0.5.
|
|
26
|
+
| npm (recommended) | Current release is `0.5.8`: `dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8` | No legacy npm package was published |
|
|
27
27
|
| GitHub / development | [`dsh-coding-subscription-oauth`](https://github.com/lninghaha/dsh-coding-subscription-oauth) | Previous GitHub repo `dsh-grok-build` was removed |
|
|
28
28
|
| CLI | `dsh-coding-oauth` | `dsh-grok-build` |
|
|
29
29
|
| Cordis plugin id | `llm-grok-build-oauth` | unchanged |
|
|
@@ -77,7 +77,7 @@ Grok Build device login, live `/v1/models-v2` and Responses streaming are verifi
|
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
79
|
# 1. install the current npm release into the web profile
|
|
80
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
80
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
81
81
|
|
|
82
82
|
# 2. optional — Google Antigravity (pinned, reviewed version)
|
|
83
83
|
dsh plugin --profile web add dsh-agy@0.1.2
|
|
@@ -118,7 +118,7 @@ Requires DeepSeek Harness `0.1.0-rc.6+` and Node.js 22.19+. Full details in the
|
|
|
118
118
|
|
|
119
119
|
```bash
|
|
120
120
|
# current npm release
|
|
121
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
121
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
122
122
|
|
|
123
123
|
# development / alternative: from GitHub
|
|
124
124
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/README.pt-BR.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# 🔐 dsh-coding-subscription-oauth
|
|
6
6
|
|
|
7
|
-
**v0.5.
|
|
7
|
+
**v0.5.8 · antigo `dsh-grok-build`
|
|
8
8
|
|
|
9
9
|
**Plugin de OAuth para assinaturas de codificação do [DeepSeek Harness](https://github.com/deepseek-ai/dsh).** Entre com as assinaturas que você já paga — depois use os modelos delas a partir da página de configurações do dsh ou da CLI. **Nenhum token colado no chat.**
|
|
10
10
|
|
|
@@ -24,7 +24,7 @@ O projeto começou como **`dsh-grok-build`** (só Grok Build). Agora cobre Super
|
|
|
24
24
|
| | Use isto | Ainda funciona |
|
|
25
25
|
|---|---|---|
|
|
26
26
|
| GitHub / `dsh plugin add` | [`dsh-coding-subscription-oauth`](https://github.com/lninghaha/dsh-coding-subscription-oauth) | `github:lninghaha/dsh-grok-build` (mesmo `main`) |
|
|
27
|
-
| npm | `dsh-coding-subscription-oauth@0.5.
|
|
27
|
+
| npm | `dsh-coding-subscription-oauth@0.5.8` (versão atual) | Nenhum pacote npm legado foi publicado |
|
|
28
28
|
| CLI | `dsh-coding-oauth` | `dsh-grok-build` |
|
|
29
29
|
| Cordis plugin id | `llm-grok-build-oauth` | inalterado |
|
|
30
30
|
| API HTTP das configurações | `/plugins/dsh-grok-build/*` | inalterado |
|
|
@@ -73,7 +73,7 @@ Estas são as buscas e erros do DSH que costumam trazer as pessoas até aqui.
|
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
# 1. instale o plugin no perfil web (versão atual do npm)
|
|
76
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
76
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
77
77
|
|
|
78
78
|
# 2. opcional — Google Antigravity (versão fixa revisada)
|
|
79
79
|
dsh plugin --profile web add dsh-agy@0.1.2
|
|
@@ -114,7 +114,7 @@ Requer DeepSeek Harness `0.1.0-rc.6+` e Node.js 22.19+. Detalhes completos nas [
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
# versão atual do npm (recomendado)
|
|
117
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
117
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
118
118
|
|
|
119
119
|
# desenvolvimento/alternativo: do GitHub
|
|
120
120
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/README.ru.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# 🔐 dsh-coding-subscription-oauth
|
|
6
6
|
|
|
7
|
-
**v0.5.
|
|
7
|
+
**v0.5.8 · ранее `dsh-grok-build`
|
|
8
8
|
|
|
9
9
|
**Плагин OAuth для подписок на кодинг для [DeepSeek Harness](https://github.com/deepseek-ai/dsh).** Войдите один раз по уже оплаченным подпискам — и используйте их модели из страницы настроек или CLI dsh. **Никаких вставленных токенов в чат.**
|
|
10
10
|
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
| | Используйте | По-прежнему работает |
|
|
25
25
|
|---|---|---|
|
|
26
26
|
| GitHub / `dsh plugin add` | [`dsh-coding-subscription-oauth`](https://github.com/lninghaha/dsh-coding-subscription-oauth) | `github:lninghaha/dsh-grok-build` (тот же `main`) |
|
|
27
|
-
| npm | `dsh-coding-subscription-oauth@0.5.
|
|
27
|
+
| npm | `dsh-coding-subscription-oauth@0.5.8` (текущая версия) | Старого npm-пакета не было |
|
|
28
28
|
| CLI | `dsh-coding-oauth` | `dsh-grok-build` |
|
|
29
29
|
| Cordis plugin id | `llm-grok-build-oauth` | без изменений |
|
|
30
30
|
| HTTP API страницы настроек | `/plugins/dsh-grok-build/*` | без изменений |
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
# 1. установите текущую npm-версию в web-профиль
|
|
76
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
76
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
77
77
|
|
|
78
78
|
# 2. опционально — Google Antigravity (зафиксированная проверенная версия)
|
|
79
79
|
dsh plugin --profile web add dsh-agy@0.1.2
|
|
@@ -114,7 +114,7 @@ systemctl --user restart dsh-web.service
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
# текущая npm-версия (рекомендуется)
|
|
117
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
117
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
118
118
|
|
|
119
119
|
# разработка/альтернатива: из GitHub
|
|
120
120
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/README.zh-CN.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# 🔐 dsh-coding-subscription-oauth
|
|
6
6
|
|
|
7
|
-
**v0.5.
|
|
7
|
+
**v0.5.8** · 原名 `dsh-grok-build`
|
|
8
8
|
|
|
9
9
|
**面向 [DeepSeek Harness](https://github.com/deepseek-ai/dsh) 的编码订阅 OAuth 插件。** 把 SuperGrok / X Premium(Grok Build)、ChatGPT Plus/Pro(Codex)、Kimi Code、Claude Pro/Max 和 Google Antigravity 接到 DSH——不必再开一份按量 API-key,**也不要把 token 粘贴进聊天。**
|
|
10
10
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
| | 请用这个 | 仍然可用 |
|
|
25
25
|
|---|---|---|
|
|
26
|
-
| npm(推荐) | 当前版本是 `0.5.
|
|
26
|
+
| npm(推荐) | 当前版本是 `0.5.8`:`dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8` | 没有发布过旧 npm 包 |
|
|
27
27
|
| GitHub / 开发安装 | [`dsh-coding-subscription-oauth`](https://github.com/lninghaha/dsh-coding-subscription-oauth) | 旧仓库 `dsh-grok-build` 已删除 |
|
|
28
28
|
| CLI | `dsh-coding-oauth` | `dsh-grok-build` |
|
|
29
29
|
| Cordis 插件 id | `llm-grok-build-oauth` | 不变 |
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
77
|
# 1. 安装当前 npm 发布版到 web profile
|
|
78
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
78
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
79
79
|
|
|
80
80
|
# 2. 可选 —— Google Antigravity(固定审核过的版本)
|
|
81
81
|
dsh plugin --profile web add dsh-agy@0.1.2
|
|
@@ -116,7 +116,7 @@ systemctl --user restart dsh-web.service
|
|
|
116
116
|
|
|
117
117
|
```bash
|
|
118
118
|
# 当前 npm 版本
|
|
119
|
-
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.
|
|
119
|
+
dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8
|
|
120
120
|
|
|
121
121
|
# 开发 / 备用:从 GitHub 安装
|
|
122
122
|
dsh plugin --profile web add github:lninghaha/dsh-coding-subscription-oauth
|
package/docs/02-architecture.md
CHANGED
|
@@ -119,7 +119,7 @@ This project does not replicate the private Google Antigravity protocol. The pro
|
|
|
119
119
|
|
|
120
120
|
## 6. Compatibility
|
|
121
121
|
|
|
122
|
-
The canonical package and repository name is **`dsh-coding-subscription-oauth`**. The previous GitHub URL still resolves to the same `main`, so old `dsh plugin add github:lninghaha/dsh-grok-build` commands continue to install the renamed package. The first public npm/GitHub Release was **`0.4.1`**. The current release is **`0.5.
|
|
122
|
+
The canonical package and repository name is **`dsh-coding-subscription-oauth`**. The previous GitHub URL still resolves to the same `main`, so old `dsh plugin add github:lninghaha/dsh-grok-build` commands continue to install the renamed package. The first public npm/GitHub Release was **`0.4.1`**. The current release is **`0.5.8`** (`dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8`). GitHub and local tarball installs remain valid.
|
|
123
123
|
|
|
124
124
|
Stable on-disk / in-process identifiers (do not rename without a migration):
|
|
125
125
|
|
|
@@ -119,7 +119,7 @@ POST /plugins/dsh-grok-build/gateway/rotate
|
|
|
119
119
|
|
|
120
120
|
## 6. 兼容性
|
|
121
121
|
|
|
122
|
-
正式包名与仓库名是 **`dsh-coding-subscription-oauth`**。旧 GitHub 地址仍指向同一条 `main`,因此旧的 `dsh plugin add github:lninghaha/dsh-grok-build` 仍会安装更名后的包。第一次公开 npm / GitHub Release 是 **`0.4.1`**。当前版本是 **`0.5.
|
|
122
|
+
正式包名与仓库名是 **`dsh-coding-subscription-oauth`**。旧 GitHub 地址仍指向同一条 `main`,因此旧的 `dsh plugin add github:lninghaha/dsh-grok-build` 仍会安装更名后的包。第一次公开 npm / GitHub Release 是 **`0.4.1`**。当前版本是 **`0.5.8`**(`dsh plugin --profile web add dsh-coding-subscription-oauth@0.5.8`)。GitHub 与本地 tarball 安装仍然有效。
|
|
123
123
|
|
|
124
124
|
以下标识保持稳定(无迁移方案前不要改名):
|
|
125
125
|
|