qing3a / dsh-repo-context

목록에 있음

DSH 插件:把 git 状态与仓库规范动态注入 system prompt(官方 system-prompt 缝隙插件)

main스킬 소스 보기

설치

npx -y @deepseek-ai/dsh plugin --profile web add github:qing3a/dsh-repo-context

이 설치 명령은 GitHub 저장소 주소에서 생성된 확인되지 않은 시작점입니다.

README

유지 관리자가 작성한 문서 스냅샷입니다.

GitHub에서 보기 ↗
커밋 94b4f0c동기화 2026. 8. 18.

dsh-repo-context

git 状态与仓库规范 动态注入 system prompt——DSH 的 system-prompt 缝隙插件 (官方 docs/subsystems/system-prompt.md 能力,生态真空位)。

模型每轮组装 prompt 时,自动带上当前仓库的分支/脏文件/最近提交,以及"遵循仓库规范"的指引——不用人肉重复,也不污染历史(走 durable context,变化才记录)。

安装 / 卸载

# 安装(web profile 示例)
dsh plugin --profile web add @qing3a/dsh-repo-context
# 卸载
dsh plugin --profile web remove @qing3a/dsh-repo-context

重启 DSH 后生效。源码安装:dsh plugin add link:<本仓库路径>

Quick start

默认配置即用:在任意 git 仓库内运行,插件自动注入分支/脏文件数/最近提交 + 仓库规范指引。

dsh web --profile web
# 会话中模型即可看到 "Git repository: branch `main`, working tree clean, last commit ..."

Configuration

配置默认说明
enabledtrue总开关
gitContexttrue注入 git 状态 context(分支/脏文件/最近提交)
repoRulestrue注入仓库规范指引 section
refreshSeconds0git 状态缓存刷新间隔(秒),0 = 仅启动时取一次
recentCommits1最近提交展示条数
# profile 的 cordis.patch.yml 覆盖
- update:
    - id: dsh-repo-context
      config:
        refreshSeconds: 60

Permissions & data

  • 只读:仅执行 git rev-parse / git status --porcelain / git log,不写文件、不改配置、无网络请求
  • git 信息只在进程内缓存,不持久化、不外发

Compatibility

  • DSH mainline 47f94385(rc.5 + npm-public 后)实测通过
  • 依赖 ctx.systemPrompt@deepseek-ai/dsh-system-prompt,base bundle 默认挂载)

Verification

dsh-plugin-verify 0.1.2(mock 平台感知修正后)实测:

✅ 通过 | 捕获事件: 13 | waterfall: 7/7 | tools/result: 是
R1-entry-shape ✓  R2-patch-yaml ✓  R3-tools-result ✓(工具真实执行成功,isError:false)

报告:https://github.com/qing3a/dsh-plugin-verify/blob/main/reports/repo-context-2026-08-14.json (判定站已收录 ✅ Verified:https://github.com/qing3a/dsh-plugin-verify)

Development

pnpm install        # 或 npm install
pnpm build          # tsc → lib/

源码要点:text/variable provider 是官方同步签名,git 状态在 apply 时预取缓存(refreshSeconds 定时刷新);变量名 git_branch 满足官方 ^[a-z][a-z0-9_]*$ 约束;namespace 入口无 export default(postmortem 0001)。

License

MIT

저장소 정보

언어
JavaScript
라이선스
보고되지 않음
마지막 업데이트
2026. 8. 14. 오전 7:28

신중하게 설치하기

소스 코드, 권한, 수명 주기 스크립트, 의존성 및 네트워크 접근을 검토하고 신뢰하지 않는 플러그인은 격리 환경에서 테스트하세요.