@wlv-zedd/dsh-chatgpt-web 1.0.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/LICENSE +21 -0
- package/README.md +140 -0
- package/assets/demo.gif +0 -0
- package/assets/hero-demo.png +0 -0
- package/assets/promo-dshmarket-official.png +0 -0
- package/cordis.patch.yml +4 -0
- package/lib/cli.js +239642 -0
- package/lib/plugin.js +195 -0
- package/package.json +88 -0
- package/screenshots.json +5 -0
- package/src/adapters/base.ts +16 -0
- package/src/adapters/chatgpt-web/adapter-error.ts +59 -0
- package/src/adapters/chatgpt-web/browser-helper-main.ts +513 -0
- package/src/adapters/chatgpt-web/browser-helper-prompt-selection.ts +27 -0
- package/src/adapters/chatgpt-web/browser-worker.ts +4944 -0
- package/src/adapters/chatgpt-web/codex-rollout-environment.ts +628 -0
- package/src/adapters/chatgpt-web/compaction-handoff.ts +533 -0
- package/src/adapters/chatgpt-web/compaction-transaction.ts +142 -0
- package/src/adapters/chatgpt-web/concurrency.ts +6 -0
- package/src/adapters/chatgpt-web/conversation-key.ts +58 -0
- package/src/adapters/chatgpt-web/environment.ts +669 -0
- package/src/adapters/chatgpt-web/index.ts +1544 -0
- package/src/adapters/chatgpt-web/input-tokens.ts +74 -0
- package/src/adapters/chatgpt-web/launcher-helper-client.ts +695 -0
- package/src/adapters/chatgpt-web/markdown.ts +418 -0
- package/src/adapters/chatgpt-web/mcp-main.ts +25 -0
- package/src/adapters/chatgpt-web/mcp-server.ts +933 -0
- package/src/adapters/chatgpt-web/model.ts +70 -0
- package/src/adapters/chatgpt-web/native-compaction-control.ts +74 -0
- package/src/adapters/chatgpt-web/output-validation.ts +62 -0
- package/src/adapters/chatgpt-web/process-line-writer.ts +46 -0
- package/src/adapters/chatgpt-web/prompt.ts +702 -0
- package/src/adapters/chatgpt-web/retry-policy.ts +73 -0
- package/src/adapters/chatgpt-web/rolling-checkpoint.ts +384 -0
- package/src/adapters/chatgpt-web/thread-environment.ts +238 -0
- package/src/adapters/chatgpt-web/tool-stream-parser.ts +601 -0
- package/src/adapters/chatgpt-web/turn-broker.ts +1481 -0
- package/src/adapters/chatgpt-web/turn-execution.ts +816 -0
- package/src/adapters/chatgpt-web/turn-progress.ts +292 -0
- package/src/adapters/chatgpt-web/usage.ts +121 -0
- package/src/adapters/image.ts +9 -0
- package/src/bridge.ts +1083 -0
- package/src/browser-login.ts +521 -0
- package/src/chatgpt-session.ts +240 -0
- package/src/chatgpt-web-models.ts +400 -0
- package/src/cli.ts +568 -0
- package/src/codex-integration-document.ts +824 -0
- package/src/codex-integration-journal.ts +212 -0
- package/src/codex-integration-route.ts +515 -0
- package/src/codex-integration-shared.ts +332 -0
- package/src/codex-integration.ts +529 -0
- package/src/codex-interrupt-hook.ts +158 -0
- package/src/config.ts +616 -0
- package/src/dev-chat/cli.ts +432 -0
- package/src/dev-chat/constants.ts +3 -0
- package/src/dev-chat/driver.ts +655 -0
- package/src/dev-chat/profile.ts +223 -0
- package/src/dev-chat/session.ts +287 -0
- package/src/dev-chat/transport.ts +54 -0
- package/src/doctor.ts +237 -0
- package/src/event-queue.ts +45 -0
- package/src/http-body.ts +30 -0
- package/src/launcher-browser-host.ts +695 -0
- package/src/lib/errors.ts +281 -0
- package/src/lib/token-estimate.ts +42 -0
- package/src/login-helper.cjs +140 -0
- package/src/model-catalog.ts +197 -0
- package/src/native-passthrough.ts +261 -0
- package/src/plugin.ts +191 -0
- package/src/process.ts +45 -0
- package/src/responses/compaction.ts +199 -0
- package/src/responses/parser.ts +633 -0
- package/src/responses/reasoning-envelope.ts +49 -0
- package/src/responses/schema.ts +172 -0
- package/src/responses/state.ts +230 -0
- package/src/server.ts +1111 -0
- package/src/service.ts +315 -0
- package/src/setup.ts +671 -0
- package/src/stall-timeout.ts +23 -0
- package/src/tunnel-service.ts +160 -0
- package/src/tunnel.ts +417 -0
- package/src/turndown-plugin-gfm.d.ts +5 -0
- package/src/types.ts +307 -0
- package/src/usage/totals.ts +12 -0
- package/src/version.ts +1 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 WLV-ZEDD & Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
# dsh-chatgpt-web
|
|
2
|
+
|
|
3
|
+
[English](https://github.com/WLV-ZEDD/dsh-chatgpt-web#readme) | [中文](https://github.com/WLV-ZEDD/dsh-chatgpt-web/blob/main/docs/README.zh-CN.md)
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/@wlv-zedd/dsh-chatgpt-web)
|
|
6
|
+
[](https://github.com/WLV-ZEDD/dsh-chatgpt-web/blob/main/LICENSE)
|
|
7
|
+
[](https://github.com/deepseek-ai/deepseek-harness)
|
|
8
|
+
[](https://github.com/WLV-ZEDD/dsh-chatgpt-web)
|
|
9
|
+
|
|
10
|
+
> **Zero-cost conversational AI model provider for DeepSeek Harness powered by free ChatGPT Web (GPT 5.6 Luna).**
|
|
11
|
+
|
|
12
|
+

|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Overview
|
|
17
|
+
|
|
18
|
+
**dsh-chatgpt-web** turns your local browser session of ChatGPT into a seamless, **$0.00 API-free conversational model provider** directly inside DeepSeek Harness (DSH).
|
|
19
|
+
|
|
20
|
+
It connects via headless or visible Chrome browser automation to `chatgpt.com`, streaming real-time Markdown responses, code solutions, explanations, and reasoning back to your DSH chats without consuming API credits.
|
|
21
|
+
|
|
22
|
+
### Why Pure Chat?
|
|
23
|
+
Small conversational web models (like GPT 5.6 Luna) excel at explanations, dialogue, Q&A, brainstorming, code snippet generation, and side-assistant tasks. By running in **Pure Chat Mode**, the bridge eliminates prompt overhead, tool hallucinations, and syntax errors of autonomous multi-tool execution loops, providing a fast, rock-solid, zero-cost LLM provider.
|
|
24
|
+
|
|
25
|
+
### Key Features
|
|
26
|
+
- **100% Free ($0.00 Cost):** Uses your existing free ChatGPT Web session. No OpenAI API keys or credit cards needed.
|
|
27
|
+
- **Cordis Plugin-First Lifecycle:** Seamlessly managed by DSH via `ctx.effect`. DeepSeek Harness starts the background sidecar automatically on launch and shuts it down on exit.
|
|
28
|
+
- **Dynamic Model Auto-Detection:** Automatically detects your ChatGPT tier:
|
|
29
|
+
- **Free Accounts:** Defaults to `chatgpt-web/luna` (`gpt-5-6-luna`).
|
|
30
|
+
- **Plus / Team Accounts:** Automatically detects and exposes available paid models (such as `gpt-4o`, `o1`).
|
|
31
|
+
- **Full Streaming Markdown & Code Blocks:** Delivers tokens in real time directly to the DSH Web UI or CLI.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Quick Start
|
|
36
|
+
|
|
37
|
+
### 1. Installation
|
|
38
|
+
|
|
39
|
+
Install `@wlv-zedd/dsh-chatgpt-web` in your DeepSeek Harness environment or profile:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pnpm add @wlv-zedd/dsh-chatgpt-web
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### 2. One-Time Browser Sign-In
|
|
46
|
+
|
|
47
|
+
Authenticate your ChatGPT account once:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npx @wlv-zedd/dsh-chatgpt-web login
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
A dedicated Chrome window will open. Log into your OpenAI / ChatGPT account. Once the ChatGPT composer is visible, the browser session is safely and securely saved locally to `~/.dsh/storages/chatgpt-free/`.
|
|
54
|
+
|
|
55
|
+
### 3. Enable in DeepSeek Harness
|
|
56
|
+
|
|
57
|
+
Add the provider to your `~/.dsh/settings.yaml`:
|
|
58
|
+
|
|
59
|
+
```yaml
|
|
60
|
+
providers:
|
|
61
|
+
chatgpt-web:
|
|
62
|
+
displayName: "ChatGPT Web (Free)"
|
|
63
|
+
api: openai-responses
|
|
64
|
+
baseURL: http://127.0.0.1:17841/v1
|
|
65
|
+
headers:
|
|
66
|
+
Authorization: "Bearer chatgpt-web-free"
|
|
67
|
+
streamIdleTimeoutMs: 300000
|
|
68
|
+
models:
|
|
69
|
+
- id: chatgpt-web/luna
|
|
70
|
+
name: "ChatGPT Web — Luna (Free)"
|
|
71
|
+
contextWindow: 1050000
|
|
72
|
+
maxTokens: 32768
|
|
73
|
+
input:
|
|
74
|
+
- text
|
|
75
|
+
- image
|
|
76
|
+
|
|
77
|
+
agent-default-model:
|
|
78
|
+
provider: chatgpt-web
|
|
79
|
+
model: chatgpt-web/luna
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
And add the sidecar plugin to your profile's `cordis.patch.yml` (or `cordis.yml`):
|
|
83
|
+
|
|
84
|
+
```yaml
|
|
85
|
+
- insert:
|
|
86
|
+
- id: dsh-chatgpt-web
|
|
87
|
+
name: '@wlv-zedd/dsh-chatgpt-web'
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Now start DeepSeek Harness:
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
pnpm dsh web
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
DSH will automatically start the background sidecar process, connect to your authenticated ChatGPT session, and accept prompts!
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## Diagnostics & Health Check
|
|
101
|
+
|
|
102
|
+
Verify your setup at any time with the built-in diagnostic doctor:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
npx @wlv-zedd/dsh-chatgpt-web doctor
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Example healthy output:
|
|
109
|
+
```text
|
|
110
|
+
✓ Configuration is valid (~/.dsh/storages/chatgpt-free/config.json)
|
|
111
|
+
✓ Chrome executable found: C:\Program Files\Google\Chrome\Application\chrome.exe
|
|
112
|
+
✓ ChatGPT login state has authenticated browser evidence
|
|
113
|
+
✓ Responses proxy is healthy on 127.0.0.1:17841
|
|
114
|
+
Doctor result: ready
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## Notes & Limitations
|
|
120
|
+
|
|
121
|
+
1. **Unofficial Bridge:** Operates via local Playwright browser automation on `chatgpt.com`. Not affiliated with or endorsed by OpenAI.
|
|
122
|
+
2. **Single-Session Concurrency:** Runs within a single browser tab. Sequential queries and normal DSH agent chats work seamlessly; avoid launching parallel multi-subagent swarms against the same tab simultaneously.
|
|
123
|
+
3. **Pure Chat Only:** This provider generates pure conversational responses, explanations, reasoning, and code blocks. It does not execute local filesystem, terminal, or autonomous tool loops.
|
|
124
|
+
4. **Standard Free Tier Rate Limits:** Subject to standard OpenAI free-tier hourly usage limits.
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## Support & Community Perks
|
|
129
|
+
|
|
130
|
+
[](https://paypal.me/wlvzedd) If you find this plugin helpful, consider sponsoring.
|
|
131
|
+
|
|
132
|
+
[](https://agentrouter.org/register?aff=bIJf) Claim up to **$200 free API credits** on AgentRouter via GitHub.
|
|
133
|
+
|
|
134
|
+
[](https://vyceai.com/signup?ref=VYCE_BL6YAG) Claim **$50 free API credits** on Vyce AI for fast LLM inference.
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## License
|
|
139
|
+
|
|
140
|
+
MIT License © 2026 [WLV-ZEDD](https://github.com/WLV-ZEDD). DeepSeek Harness is an open-source project by DeepSeek AI.
|
package/assets/demo.gif
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/cordis.patch.yml
ADDED