liuyun847/dsh-client-ui-peak-valley

插件Plugin 原生Native ⭐ 2 MIT

DSH Web 客户端插件:模型选择按钮左侧显示 DeepSeek API 峰/谷价状态(绿=谷,橙=峰)

项目介绍Project Overview

这是一个 DSH Web 客户端插件,在对话框模型选择按钮左侧显示 DeepSeek API 峰/谷价状态:绿色为谷价、橙色为峰价。它按北京时间 09:00–12:00、14:00–18:00 判定高峰,每 30 秒刷新。适用于使用 DeepSeek 官方 API 或 opencode-go 网关且模型 id 以 deepseek- 开头的会话。注意:其他第三方 provider 或自定义非官方 baseURL 下不显示。

This is a DSH web client plugin that shows DeepSeek API peak/off-peak pricing status left of the model selector: green for off-peak and orange for peak. It treats 09:00–12:00 and 14:00–18:00 Beijing time as peak, refreshes every 30 seconds, and appears only for deepseek-* models via the official API or opencode-go gateway. It stays hidden for other third-party providers or custom non-official base URLs.

或使用命令行安装(适合开发者)Or use CLI install (for developers)

命令行安装CLI Install

dsh plugin --profile web add github:liuyun847/dsh-client-ui-peak-valley

liuyun847/dsh-client-ui-peak-valley 加入你的 DSH 配置(web profile)即可启用。

READMEREADME

dsh-client-ui-peak-valley

License: MIT Version DSH Plugin

DSH(DeepSeek Harness)Web 客户端插件:在对话框模型选择按钮左侧显示当前 DeepSeek API 的峰/谷价状态。

  • 🟢 绿色方块 + 「谷价」:空闲时段
  • 🟠 橙色方块 + 「峰价」:高峰时段

判定规则(与官方定价一致):高峰时段为北京时间 09:00–12:00、14:00–18:00,其余为空闲(谷)时段。按 Asia/Shanghai 时区计算,不依赖浏览器本地时区;每 30 秒自动刷新,跨时段自动切换。

显示条件:仅当当前会话使用 DeepSeek 系列模型且来源为 官方 API 或 opencode-go 网关时才显示。判断依据:

  • 模型 id 以 deepseek- 开头(经 session.models 查询);
  • 来源为以下任一:
    • 官方适配器 deepseek-official,且未将 llm-deepseek 配置的 baseURL 显式改为非官方地址(经 settings.describe 查询)——不查 baseURL 时视为官方;
    • 自定义网关 provider opencode-go(视为官方 DeepSeek 中转,直接显示)。

使用其他第三方 provider(如 ww)或自定义 baseURL 时,除非模型为 deepseek-* 且来源满足上述条件,否则不显示。

安装

在 DSH profile 目录(例如 ~/.dsh/profiles/web/)下:

  1. 添加依赖:

    // package.json
    {
      "dependencies": {
        "dsh-client-ui-peak-valley": "github:liuyun847/dsh-client-ui-peak-valley"
      }
    }
    

    然后 pnpm install(或 npm install)。

  2. cordis.patch.yml 中注册插件行:

    - insert:
        - id: peak-valley
          name: 'dsh-client-ui-peak-valley'
    
  3. 重启 dsh web,刷新页面后生效。

也可以先 npm publish 发布到 npm registry,再把依赖改为 "dsh-client-ui-peak-valley": "^0.1.1"

工作原理

  • 通过 dsh.client 声明(见 package.json)注册为浏览器端插件。
  • conversation.input.right 座位注册 UI——该座位恰好渲染在模型选择按钮(conversation.input.model)的左侧,不替换任何原生 UI。
  • 颜色使用主题 token(--dsw-alias-state-success-primary / --dsw-alias-state-warn-primary),自动适配浅色/深色主题。

开发

# 本地直接安装依赖后即可开发
pnpm install
# 修改 lib/client.js 后,按上述安装方式重新安装/重启生效

License

MIT

上一个 Prev dsh-plugin-token-billing 下一个 Next dsh-pdb