DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Gitee Ai Employee — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

gitee-ai-employee

Gitee Ai Employee

Gitee/GitHub AI 员工:在 issue 中 @ 机器人即可自动开发并提交 PR;v1.2 新增代码安全扫描——配置仓库地址后,按内置或自定义提示词扫描漏洞,去重后提交 issue。由 issue 驱动的 DeepSeek Harness AI 开发者(支持 Gitee 和 GitHub),可选静态安全扫描(去重 + issue 报告)。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:wangbobo-coder/gitee-ai-employee#b55338710dc73df11e78bc89f136c1d41e73c120
README兼容性版本

兼容性与来源证明

Gitee Ai Employee 以 gitee-ai-employee 发布,当前版本为 1.2.8。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/20

版本

1.2.8stable
2026/9/4
1.2.7stable
2026/9/4
1.2.6stable
2026/9/4
查看其余 10 个版本收起版本
1.2.5stable
2026/9/2
1.2.4stable
2026/9/1
1.2.3stable
2026/9/1
1.2.2stable
2026/9/1
1.2.1stable
2026/9/1
1.2.0stable
2026/9/1
1.1.2stable
2026/8/24
1.1.1stable
2026/8/24
1.1.0stable
2026/8/24
1.0.0stable
2026/8/24
最新版
1.2.8
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 3
周下载
90
最近提交
2026/9/4
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

README

Gitee AI 员工 (gitee-ai-employee)

An issue-driven AI developer for DeepSeek Harness, working against Gitee (码云) and GitHub.

Mention your bot in an issue, and the plugin clones the repository, dispatches an AI worker agent to implement the change, pushes a branch, opens a Pull Request to the branch you ask for, and can auto-merge and auto-close the issue. You can watch Gitee and GitHub repositories at the same time.

中文说明见 README.zh.md。

What it does

  • Polling: periodically scans the issues of the repositories you watch for a new mention of your bot (@botName). Dual platform: each watch row can be prefixed gitee: or github: (unprefixed rows use defaultPlatform, default gitee), so you can watch both platforms at once.
  • AI development: creates a worker agent in a profile that clones the repo (via PowerShell + curl on Windows), explores it, implements the issue, runs checks, and commits on a ai-fix/issue-<number> branch.
  • Branch-aware: it reads branch instructions written in natural language and uses that branch as both the development base and the PR target:
    • 需要修改 release-v1.2 分支 / 修改 X 分支 / 改 X 分支
    • 基于 X 分支 / 在 X 分支上 / 以 X 分支为基础
    • 合并到 X / 合到 X / 目标分支 X / base: X The requested branch is validated against the remote with git ls-remote; if it does not exist, the plugin falls back to the repository default branch and says so in a comment.
  • PR & close: pushes the branch, creates a PR (base = the chosen branch), optionally auto-merges it (autoMerge), and optionally closes the issue on success (autoCloseIssue).
  • Webhook / manual trigger: optional webhook endpoint and a manual trigger URL for instant processing without waiting for the poll.
  • Security scanning (v1.2): configure scan repositories (scanRepos) and the plugin drives a scan worker (reusing the DSH model) through built-in/custom security prompts to statically audit the cloned code. Findings are deduplicated — the same spot (file:line + vulnerability type) is only reported once (dedup state persists at workRoot/scan-state.json) — and new findings are submitted as issues automatically. Supports scheduled scanning (scanEnabled + scanIntervalMs) and manual triggering (the "立即扫描" button in the settings card or POST /gitee-ai/scan).

Requirements

  • DeepSeek Harness (dsh) 0.1.x, Windows (the plugin drives git and the Gitee API through PowerShell + C:\Windows\System32\curl.exe), a Gitee account with a personal access token.
  • The worker and scanner presets are bundled and auto-installed into $DSH_HOME/.agent-presets/gitee-worker (gitee-scanner likewise) on first load — no manual setup.

Install

dsh plugin --profile <your-profile> add gitee-ai-employee

(or if you prefer installing straight from GitHub: dsh plugin --profile <p> add github:wangbobo-coder/gitee-ai-employee)

Restart dsh, then open Settings → Plugins → Plugin configuration, find the Gitee AI 员工 card and configure:

SettingMeaning
giteeTokenGitee personal access token (kept secret; never returned by the status API)
githubTokenGitHub personal access token, optional (kept secret; only needed for github: repos)
defaultPlatformPlatform for unprefixed watchRepos rows: gitee (default) or github
botNameThe account/issues mention that triggers the bot, e.g. gitee-ai. ASCII is recommended.
workRootWhere repositories are cloned; empty = $DSH_HOME/gitee-workers
watchReposRepos to poll, one per line: owner/repo (uses defaultPlatform) or gitee:owner/repo / github:owner/repo
pollEnabled / pollIntervalMsPoll on/off and interval (milliseconds)
autoMergeAuto-merge the created PR
autoCloseIssueClose the issue once the task succeeds
workerPresetAgent preset id used for the worker (default gitee-worker)
scanEnabledEnable scheduled security scanning of scanRepos
scanReposRepos to scan, one per line: owner/repo with optional gitee:/github: prefix
scanMinSeverityMinimum severity to report: critical/high/medium/low/none (default medium)
scanOneIssuePerRuntrue = one consolidated issue per run (default); false = one issue per finding
scanPromptsCustom/override prompts {id:{name,prompt}} (same id overrides a built-in)
scanIntervalMsScheduled scan interval (default 21600000 = 6 h)

Usage

  1. Make sure pollEnabled is on (or use the manual trigger URL shown in the status API).
  2. Open (or edit) an issue in a watched repo and mention your bot:
    @gitee-ai
    需要修改 release-v1.2 分支
    参会人员选择增加学生选项,注意回显处理。
    
  3. The plugin picks it up (usually within one poll interval), comments "已接单", runs the worker, and later posts the result with the PR link. With autoCloseIssue on, the issue is closed on success.

For GitHub repos the same flow applies — just configure githubToken and add the repo as github:owner/repo in watchRepos (or set defaultPlatform to github). For one-off runs you can also trigger directly:

http://<dsh-host>:<port>/gitee-ai/go?platform=github&owner=octo&repo=hello&number=5

The bot name match uses a lookahead ((?![A-Za-z0-9_])) so both ASCII and CJK bot names trigger correctly.

Security scanning (v1.2)

  1. In the plugin config card (or /gitee-ai/settings), fill 扫描仓库 with one [gitee:|github:]owner/repo per line, enable 启用定时扫描, or click 立即扫描全部仓库. Click 一键获取我的仓库 to auto-fill every repo you can access (own + org memberships) so you can keep/remove entries before saving (equivalent API: GET /gitee-ai/my-repos).
  2. The plugin clones the repo → runs the scan worker with the selected security prompts → results land at <repo>/.gitee-scan/result.json → findings are diffed against scan-state.json → new findings are submitted as an issue.

Built-in prompt ids: general / sqli / xss / command-injection / path-traversal / ssrf / hardcoded-secret / insecure-deserialization / authz / dos / dependency.

  • Override a built-in by using the same id in scanPrompts; add custom ids for new checks.
  • Dedup signature is file:line:vulnType; already-reported signatures are skipped.
  • POST /gitee-ai/scan accepts dryRun=true (preview, no issue) and force=true (re-report).
  • GET /gitee-ai/scan returns the prompt catalog, scan jobs and dedup stats.
  • Scan issues are titled with a [安全扫描] prefix.

Security notes

  • User configuration is persisted to the user's own profile patch layer; the shipped cordis.patch.yml contains only an empty default and never a token.
  • The token is marked secret in the schema and is never echoed by the status/config API (only a tokenConfigured boolean).
  • The plugin runs with the same privileges as your dsh process; its worker agent gets danger-full-access inside the cloned workspace only.
  • The scan worker is read-only static analysis; hardcoded-secret findings report type and location only, never the secret value.

Development

  • dsh/index.js — host plugin (Cordis object plugin with dsh.bundle manifest).
  • dsh/client.js — web client half (settings card hover/status).
  • preset/gitee-worker/ — the bundled worker agent preset, auto-copied to $DSH_HOME/.agent-presets/gitee-worker on load if missing.

License

MIT

scanConcurrencyMax repos scanned in parallel (1–8, default 3); a long scanRepos list queues up and keeps scanning until every repo is done