Plugin directory / Developer / dsh-github-login
dsh-github-login
Unverified Noob-stupid
What it does
Visual GitHub login for the DSH ecosystem - no terminal needed: device code flow, token sync gh CLI
Unverified — not yet verified
Visual GitHub login for the DSH ecosystem - no terminal needed: device code flow, token sync gh CLI Not yet verified — install and test it yourself.
“Unverified” means our automated CI has not yet installed this plugin. Feature descriptions and version compatibility are the author’s claims. This is not a security audit and not an endorsement of third-party code.
README
DSH GitHub Login —— 独立的 GitHub 可视化登录插件
一个零终端的 GitHub 登录小工具:打开窗口 → 生成设备码 → 授权 → 完成。
设备码流程在窗口内(Chromium 网络栈)执行,与你的浏览器共用同一网络通道——
浏览器能打开 GitHub,这里就能完成登录,不受终端/代理配置差异影响。
安装(DSH 插件模式)
一条命令装进 DSH,并自动启用宿主端插件(提供登录状态接口 + 一键唤起登录窗口):
dsh plugin --profile web add github:Noob-stupid/dsh-github-login
宿主端环回接口:
GET /github-auth/status→{ok, loggedIn, login}(只含账号名,绝不下发令牌)POST /github-auth/open→ 唤起登录工具窗口(本机存在 exe 时直接启动)
独立工具用法(不带 DSH 也行):
功能
- 窗口内授权:授权页直接内嵌在窗口里(
<webview>),带 前进 / 后退 / 刷新 按钮,
也可以一键改用外部浏览器打开; - 登录成功后令牌保存在
~/.dsh/github-auth.json; - 同时同步进 gh CLI 的
~/.config/gh/hosts.yml,gh 命令行立即可用(keyring 存在时 gh 以 keyring 优先); - 托盘常驻:随时查看账号状态 / 一键退出登录;
- 复用 GitHub CLI 的公开 OAuth client_id(
178c6fc778ccc68e1d6a),权限范围repo workflow gist read:org。
用法
npm install # 安装 electron(已配置国内镜像)
npm start # 直接运行
npm run dist # 打包为便携版单文件 exe(dist/DSH-GitHub-Login.exe)
与 dsh-plugin-hub 配套
dsh-plugin-hub(插件管理面板)会读取
本工具写入的同一份令牌文件:登录后面板的 GitHub 市场显示"已登录 GitHub:<账号>",
且服务端回退通道自动带认证(搜索配额 10 → 30 次/分钟)。
集成到其他应用(如桌面客户端)
把它当作一个独立进程调用即可:登录状态通过同一份文件(~/.dsh/github-auth.json)
共享,任何 DSH 生态工具都能读取:
spawn('<path>/DSH-GitHub-Login.exe', [], { windowsHide: false })
之后用 gh auth status 或直接读取 ~/.dsh/github-auth.json 验证登录状态。
原理
GitHub Device Flow:
POST https://github.com/login/device/code→user_code+device_code- 在窗口内嵌浏览器(或外部浏览器)打开
https://github.com/login/device,输入user_code授权 - 按 GitHub 给出的
interval轮询POST https://github.com/login/oauth/access_token - 拿到
access_token→ 主进程落盘 + 写入 gh 配置
轮询严格遵循服务器间隔;网络抖动不中断(验证码 15 分钟有效期);授权成功
即完成,用户名查询是尽力而为的补充。
与桌面端的关系
本仓库只包含登录插件本身,不包含任何桌面客户端代码。桌面客户端可在本地
集成它(见上);两者通过令牌文件共享登录状态。
帮助 / Help
遇到问题先看这里;仍有疑问请到 议题 提问。
- 一直"等待授权":轮询与浏览器共用同一网络通道,浏览器能打开 GitHub 就一定能完成;
提示行会显示轮询次数,卡住时把提示文字发到 Issue。 - 显示 unknown:授权已成功、令牌已保存,只是用户名查询失败;重启程序后状态页会重试。
- gh 仍显示未登录:本工具写入
~/.config/gh/hosts.yml;若系统 keyring 里有旧凭证,
gh 会优先用 keyring——先gh auth logout清掉旧凭证即可。 - 浏览器打开 GitHub 显示未登录:gh/DSH 令牌登录与浏览器网页登录是两套独立会话——
本工具认证的是 gh 命令行层(令牌写进github-auth.json与hosts.yml),并不会登录你的浏览器;
浏览器需单独登录一次 github.com(或在授权时选"改用外部浏览器打开",完成授权会顺带登录该浏览器)。 - 如何退出登录:托盘菜单
GitHub: <账号> (click to log out),或窗口中点"退出登录"。
License
MIT
Install
Install the catalog once, then DeepSeek Harness can find and install any plugin from this site automatically:
dsh plugin add dshbase-catalog Then say "install dsh-github-login for me" — your agent finds it in the directory and installs it. Docs: dshbase-catalog · verified packs.
This plugin is GitHub source (not published to npm) — install it straight from the repo:
Web profile:
dsh plugin --profile web add github:Noob-stupid/dsh-github-login Headless (CLI) profile:
dsh plugin --profile headless add github:Noob-stupid/dsh-github-login Test report
Not yet L3-verified — see failure note below if we already ran it.
Note: 验证: runtime-fail (0.1.0-rc.6) Browse all pending failures →
When to use it
Extend the agent's coding surface — give it a new tool, workflow, or integration so it handles a dev task it couldn't before.
Who it's for
Developers who want dsh to behave like a teammate on real codebases — editing, running, and verifying changes rather than just answering.
For developers — extending it
The tool/command surface is the seam: expose more of the SDK, add smarter context wiring, or tighten the loop between code changes and verification.