
zevorn/dsh-humanize
30最近提交 2026年8月13日
dsh-humanize DSH 插件
Humanize 是 Claude Code 的插件,实现了 RLCR(Ralph-Loop with Codex Review)工作流。它让 Claude 负责实现,Codex 独立审查代码,通过反馈循环不断迭代,直到满足所有验收标准。
如何安装 dsh-humanize DSH 插件
dsh plugin --profile web add github:dsh-external/dsh-humanize#<commit-or-tag>来源命令需要人工核对。复制不会执行命令。
dsh-humanize DSH 插件数据来源
dsh-humanize DSH 插件快照日期:2026年8月16日
discovered
dsh-humanize DSH 插件能做什么
- 从模糊想法生成创意草案,并作为并行原型探索多个方向
- 生成带有能力映射和可选测试环节的结构化计划
- 运行 RLCR 循环,自动在实现与审查之间迭代
- 咨询 Gemini 进行深度网络研究(需要 Gemini CLI)
- 在独立终端中使用特定命令监控进度(rlcr、skill、codex、gemini)
dsh-humanize DSH 插件适合哪些场景
- 迭代开发新功能,通过持续审查尽早发现问题
- 重构现有代码,借助独立审查确保质量
- 通过隔离的 Git 工作树并行探索多个设计方案
- 在编写代码前生成并优化计划,确保设计一致性
dsh-humanize DSH 插件适合谁
- 使用 Claude Code 并希望借助 AI 审查提升代码质量的开发者
- 采用迭代开发工作流,并内置审查环节的团队
dsh-humanize DSH 插件的限制
- 审查步骤需要 OpenAI 的 codex CLI
- Gemini CLI 是可选的,但 ask-gemini 技能必须依赖它
- 插件仍处于早期开发阶段(版本 1.18.0)
- 监控需要独立于 Claude Code 的额外终端
dsh-humanize DSH 插件的仓库 README 摘录
以下文字摘自 dsh-humanize DSH 插件的上游仓库 zevorn/dsh-humanize 的 README,版权归原作者,仅作引用。
**Current Version: 1.18.0** > Derived from the [GAAC (GitHub-as-a-Context)](https://github.com/SihaoLiu/gaac) project. A Claude Code plugin that provides iterative development with independent AI review. Build with confidence through continuous feedback loops. ## What is RLCR? **RLCR** stands for **Ralph-Loop with Codex Review**, inspired by the official ralph-loop plugin and enhanced with independent Codex review. The name also reads as **Reinforcement Learning with Code Review** -- reflecting the iterative cycle where AI-generated code is continuously refined through external review feedback. ## Core Concepts - **Iteration over Perfection** -- Instead of expecting perfect output in one shot, Humanize leverages continuous feedback loops where issues are caught early and refined incrementally. - **One Build + One Review** -- Claude implements, Codex independently reviews. No blind spots. - **Ralph Loop with Swarm Mode** -- Iterative refinement continues until all acceptance criteria are met. Optionally parallelize with Agent Teams. - **Capability Anchors** -- Generated plans include a feature/capability map, and RLCR rounds keep Claude and Codex anchored to the relevant capab
阅读完整 README仓库未声明许可,使用前请先与作者确认。
dsh-humanize DSH 插件常见问题
如何为 DSH 安装 Humanize?
运行命令:`dsh plugin --profile web add github:dsh-external/dsh-humanize#<commit-or-tag>`。如果 pnpm 阻止构建,请将确切的包密钥添加到 `$DSH_HOME/profiles/web/pnpm-workspace.yaml` 的 `allowBuilds` 下,然后重新运行命令。在 DSH 模型设置中配置构建器模型(`deepseek-v4-flash-max`)。
Humanize 需要哪些依赖?
Humanize 需要 OpenAI 的 codex CLI 用于审查步骤。Gemini CLI 是可选的,但 ask-gemini 技能需要它。对于 DSH 安装,需要 pnpm 和已配置好的 DSH web 配置文件。
如何监控 RLCR 循环的进度?
在另一个终端(不在 Claude Code 内部)中,source humanize.sh 脚本,然后使用命令如 `humanize monitor rlcr` 监控 RLCR 循环,`humanize monitor skill` 监控所有技能调用,或 `humanize monitor codex` 仅监控 codex 调用。
RLCR 工作流是什么?
RLCR 代表 Ralph-Loop with Codex Review。这是一个迭代循环:Claude 实现代码,Codex 独立审查,反馈再次进入实现阶段,直到所有验收标准满足。过程包括两个阶段:实现和代码审查。
能否在没有 Claude Code 的情况下使用 Humanize?
Humanize 是专门为 Claude Code 设计的插件,需要 Claude Code 运行实现代理。不过,它也可以作为 DSH 配置文件包安装,在 DeepSeek Harness 会话中使用不同的构建器代理运行 RLCR 循环。