DeepSeek Harness 插件

dsh-ci-co-pilot

让 DeepSeek Harness Agent 化身 GitHub 副驾:PR 审查、CI 失败修复、Issue 分类与自动发版说明。

跳到安装方式

来源信息

GitHub 仓库
temotee2103/dsh-ci-co-pilot
最近更新
2026年8月19日
分类
Git 与代码审查
GitHub stars
0

安装

默认先复制一段 Prompt,让 Agent 读页面和仓库;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读页面和仓库。

请先不要安装。阅读这个 DeepSeek Harness 插件,说明它解决什么问题、会访问哪些文件、网络或密钥,以及如何安装和卸载。

插件页面:https://deepseekplugins.org/zh/plugins/temotee2103/dsh-ci-co-pilot
GitHub:https://github.com/temotee2103/dsh-ci-co-pilot
插件名:dsh-ci-co-pilot
作者:temotee2103
安装命令:dsh plugin --profile web add github:temotee2103/dsh-ci-co-pilot

确认前不要执行安装命令。

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-ci-co-pilot

> GitHub CI co-pilot for DeepSeek Harness. > Everything is a plugin: PR review, CI failure fixing, issue triage, and release notes.

![License: MIT](LICENSE) ![Node](package.json) ![dsh-plugin](https://github.com/topics/dsh-plugin)

dsh-ci-co-pilot turns your DeepSeek Harness agent into a GitHub co-pilot that can review pull requests, debug failing CI, triage issues and draft release notes — all with structured data from the GitHub REST API, and zero extra runtime dependencies.

✨ Features

ToolWhat it does
gh_review_prPull a PR with its changed files, unified diff, existing reviews and CI status — the agent then writes the review.
gh_submit_reviewApprove, request changes, comment — with optional inline comments anchored to the diff.
gh_fix_ciInspect failing checks/annotations/log tails for a commit, branch or workflow run.
gh_triage_issuesList issues with triage signals: age, staleness, comments, labels.
gh_update_issueSet labels, assign, comment, set milestone, close/reopen.
gh_release_notesGenerate grouped release notes from PRs merged since the last release, a tag, or a date.
gh_rerun_ciRerun a workflow run — failed jobs only, or everything (verify a fix).
gh_create_releasePublish release notes as a GitHub release (creates the tag too).
gh_list_pullsList PRs by state / base / head branch with age, label and draft signals — find PRs to review or track a release train.
gh_repo_statusOne-call repo health snapshot: stars, open PR / issue counts, recent workflow runs.

🚀 Install

# from npm (recommended)
dsh plugin --profile web add @temotee2103/dsh-ci-co-pilot

# from GitHub (zero build step — works immediately)
dsh plugin --profile web add github:temotee2103/dsh-ci-co-pilot

# or via the community index (CN mirror + sha256 check)
xlings install dsh:dsh-ci-co-pilot -y

Then restart your Harness session (or start dsh web).

> Tip: pin a commit for reproducible installs: > dsh plugin --profile web add github:temotee2103/dsh-ci-co-pilot#<40-hex-sha>

🔑 Authentication

Public repos work without a token (GitHub's unauthenticated rate limit applies). For private repos and heavier usage:

# any of these is read by the plugin at startup
export GITHUB_TOKEN=github_pat_...
export GH_TOKEN=...            # gh CLI style

You can also set a default repo and API base in your profile's cordis.patch.yml:

- id: ci-co-pilot
  name: '@dsh-external/dsh-ci-co-pilot'
  config:
    repo: myorg/myrepo
    apiBase: https://github.example.com/api/v3   # GitHub Enterprise Server

💬 Usage examples

Ask your agent things like:

  • Review a PR

> Review PR #42 in deepseek-ai/deepseek-harness. Focus on race conditions and suggest concrete fixes, then submit a review.

  • Fix failing CI

> CI is red on main. Find the failures and fix them, then push.

  • Triage issues

> Triage the open issues in this repo: label the unlabeled ones, close stale duplicates, and leave a comment on the top 3 by comments.

  • Release notes

> Draft release notes since the last release and save them to CHANGELOG.md.

  • Find PRs to review

> List the open PRs in o/r sorted by update time, and review the riskiest one.

  • Repo health check

> Give me a snapshot of o/r: open PR/issue counts and the latest CI results.

⚙️ Configuration

All knobs are validated config values you can override from your profile's cordis.patch.yml (see the defaults in [cordis.patch.yml](cordis.patch.yml)): review.maxFiles, review.maxDiffChars, ci.maxLogLines, ci.maxFailedChecks, triage.perPage, triage.staleDays, release.perPage, pulls.limit, status.runs. The API client also retries rate-limited responses (403 / 429) automatically, honoring Retry-After and x-ratelimit-reset.

🧑‍💻 Development

pnpm install
pnpm test        # vitest, mocked fetch — no network, no API key
pnpm check       # syntax checks + tests

🧩 How it works

dsh-ci-co-pilot is a standard Cordis bundle for DeepSeek Harness:

  • cordis.patch.yml — the bundle layer that mounts the plugin row.
  • index.js — plugin entry: registers the ten tools on the tools service.
  • src/github.js — a tiny fetch-based GitHub REST client (auth header, pagination, rate-limit retry, error mapping, AbortSignal).
  • src/tools/* — one module per tool, returning structured canonical values; src/format.js renders them to model-facing markdown.

The plugin ships plain ESM JavaScript — no build step, so dsh plugin add github:... installs and runs immediately.

📄 License

MIT © temotee2103