← 返回列表
未验证
GitHub Release Radar 是 DeepSeek Harnessdsh的一个插件,它通过公开的…
尚未跑自动兼容性验证,可查看页面内的依赖与入口分析。 · 最近上游提交 2026/8/15 · 已提供中文文档
DeepSeek Harness 的 GitHub Release Radar 插件:为 dsh 智能体提供发布、仓库统计和仓库搜索工具(无需 API 密钥)。
综合分
28.1
GitHub 分
28.1
用户评分
—
★ Stars
2
周下载量
—
安装插件(需先安装 dsh CLI 引擎:npm install -g @deepseek-ai/dsh)
dsh plugin --profile web add zoahdev/dsh-github-release-radar该插件未发布到 npm,走 GitHub 源安装(pnpm 若拦截 prepare 脚本,按其提示在 pnpm-workspace.yaml 的 allowBuilds 中放行后重跑)
数据截至 2026/9/18(元数据每日更新 · 实装验证按队列轮转,单条结论的验证时间见上方)
依赖的 DSH / Cordis 模块
@deepseek-ai/schemastery@deepseek-ai/cordis@deepseek-ai/dsh-scope@deepseek-ai/dsh-system-prompt@deepseek-ai/dsh-tools用户评分
还没有人投票,来当第一个
订阅周报,不错过优质插件更新
每周一封 · 高评分插件 + 新用户活动
README
dsh-github-release-radar English · 中文 Awesome DSH Plugin Release GitHub Release Radar 是 DeepSeek Harness(dsh)的一个插件,它通过公开的 GitHub REST API 为你的 agent 提供四个面向模型的工具——无需 API key。 主题:dsh-plugin · 已使用 dsh 0.1.0-rc.6 测试 工具 | 工具 | 功能 | |---|---| | github_releases | 列出某个公开仓库的最新发布(tag、日期、预发布标志、URL、正文预览)。 | | github_repo | 仓库概览:stars、forks、open issues、语言、许可证、最后更新时间。 | | github_search | 使用 GitHub 搜索语法搜索公开仓库,按 stars 或最后更新时间排序。 | | github_repo_tags | 列出某个公开仓库的最新 Git tags 及其 commit SHA。 | 示例 agent 提示词: - “deepseek-ai/deepseek-harness 的最新发布有哪些?” - “比较排名前 5 的 TypeScript agent 框架的 stars 和许可证。” - “ollama/ollama 最近发布过稳定版本吗?” 安装 前置条件:dsh CLI 0.1.0-rc.6+(安装指南)。 从 GitHub 安装 dsh plugin --profile web add github:zoahdev/dsh-github-release-radar 首次通过 git 安装需要一条 allow-build 条目;dsh 会打印出需要添加到你的 profile 的 pnpm-workspace.yaml 中的确切行(详情请参阅官方发布指南)。 从 npm / tarball 安装 dsh plugin --profile web add dsh-github-release-radar or dsh plugin --profile web add ./dsh-github-release-radar-0.2.0.tgz 然后重启 dsh web。 本地开发(patch overlay) cordis.patch.yml - insert: - id: github-release-radar name: dsh-github-release-radar config: defaultLimit: 5 dsh web --patch ./cordis.patch.yml 配置 所有值都是可选的,可以在 cordis.yml 中设置: | 键 | 类型 | 默认值 | 描述 | |---|---|---|---| | githubToken | string | (无) | 用于提高匿名 60 次请求/小时速率限制的 GitHub token。切勿提交它。 | | timeoutMs | number | 10000 | 请求超时时间,以毫秒为单位。 | | defaultLimit | number | 5 | 当模型省略 limit 时的默认结果数量。 | | bodyPreviewChars | number | 500 | 发布正文预览中保留的最大字符数。 | | userAgent | string | dsh-github-release-radar/0.2.0 | 发送给 GitHub API 的 User-Agent 请求头。 | 示例: - insert: - id: github-release-radar name: dsh-github-release-radar config: githubToken: ghp_xxx defaultLimit: 10 timeoutMs: 15000 设计说明 - 一切皆插件:该 bundle 提供一个 cordis.patch.yml 层,并通过 ctx.tools.register + defineTool 注册工具。 - 请求遵循 exec.signal 取消机制以及可配置的超时。 - 匿名速率限制会被检测到(403 + x-ratelimit-remaining: 0),并给出可操作的指引。 - 规范 JSON 输出经过 schema 校验;面向模型的文本位于 output.render,UI 卡片位于 presentCall。 开发 pnpm install pnpm run build # tsc → lib/ pnpm test # vitest pnpm pack # npm tarball for dsh plugin add 构建/测试/启动检查记录见 VERIFICATION.md。 许可证 MIT © 2026 zoahdev 中文 Awesome DSH Plugin Release dsh-github-release-radar(GitHub Release 雷达) 是 DeepSeek Harness 的社区插件,通过 GitHub 公开 REST API 给 agent 提供三个模型可直接调用的工具——无需任何 API Key。 话题标签:dsh-plugin · 已在 dsh 0.1.0-rc.6 实测 工具 | 工具 | 功能 | |---|---| | github_releases | 列出公开仓库最近的 Release(标签、日期、预发布标记、链接、正文预览)。 | | github_repo | 仓库概览:星标、fork、open issues、语言、许可证、最近更新时间。 | | github_search | 用 GitHub 搜索语法搜公开仓库,按星标或最近更新排序。 | | github_repo_tags | 列出公开仓库最近的 Git 标签及其提交 SHA。 | 示例提问: - “deepseek-ai/deepseek-harness 最近发布了什么版本?” - “对比排名前 5 的 TypeScript agent 框架的星标和许可证。” - “ollama/ollama 最近有稳定版发布吗?” 安装 前置:dsh CLI 0.1.0-rc.6+(安装教程)。 从 GitHub 安装 dsh plugin --profile web add github:zoahdev/dsh-github-release-radar 或从 npm / tarball 安装 dsh plugin --profile web add dsh-github-release-radar dsh plugin --profile web add ./dsh-github-release-radar-0.2.0.tgz 首次从 git 安装需要允许构建脚本(dsh 会提示你向 profile 的 pnpm-workspace.yaml 添加哪一行)。装完重启 dsh web。 配置 全部可选,写入 cordis.yml: | 配置项 | 类型 | 默认值 | 说明 | |---|---|---|---| | githubToken | string | 无 | GitHub token,可提高匿名 60 次/小时的限流;切勿提交到仓库。 | | timeoutMs | number | 10000 | 请求超时(毫秒)。 | | defaultLimit | number | 5 | 模型未传 limit 时的默认返回条数。 | | bodyPreviewChars | number | 500 | Release 正文预览最大字符数。 | | userAgent | string | dsh-github-release-radar/0.2.0 | 请求 GitHub API 的 User-Agent。 | 开发 pnpm install pnpm run build # tsc → lib/ pnpm test # vitest pnpm pack # 打包 tarball 供 dsh plugin add 安装 构建/测试/启动验证记录见 VERIFICATION.md。 许可证 MIT © 2026 zoahdev
扫码进群