By PolyArch
Run iterative development loops where Claude implements plans from structured Markdown and Codex independently reviews progress, with web research and second opinions from Gemini or Codex, enforcing acceptance criteria and git workflow until quality goals are met.
Cancel active RLCR loop
Generate a repo-grounded idea draft via directed-swarm exploration
Generate implementation plan from draft document
Refine an annotated implementation plan and generate a QA ledger
Start iterative loop with Codex review
Selects required BitLesson entries for a specific sub-task. Use before execution for every task or sub-task.
Checks if a draft document is relevant to the current repository. Use when validating draft content for gen-plan command.
Checks plan relevance and compliance before RLCR loop. Use when validating plan files for start-rlcr-loop command.
Analyzes a plan and generates multiple-choice technical comprehension questions to verify user understanding before RLCR loop. Use when validating user readiness for start-rlcr-loop command.
Consult Codex as an independent expert. Sends a question or task to codex exec and returns the response.
Consult Gemini as an independent expert with deep web research. Sends a question or task to Gemini CLI and returns a research-backed response.
Generate a structured implementation plan from a draft document. Validates input, checks relevance, analyzes for issues, and generates a complete plan.md with acceptance criteria.
Refine an annotated implementation plan into a comment-free plan and a QA ledger while preserving the gen-plan schema.
Start RLCR (Ralph-Loop with Codex Review) on Codex using the native Stop hook.
Executes bash commands
Hook triggers when Bash tool is used
Modifies files
Hook triggers on file write and edit operations
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
No model invocation
Executes directly as bash, bypassing the AI model
No model invocation
Executes directly as bash, bypassing the AI model
Current Version: 1.16.0
Derived from the GAAC (GitHub-as-a-Context) project.
A Claude Code plugin that provides iterative development with independent AI review. Build with confidence through continuous feedback loops.
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.
The loop has two phases: Implementation (Claude works, Codex reviews summaries) and Code Review (Codex checks code quality with severity markers). Issues feed back into implementation until resolved.
# Add PolyArch marketplace
/plugin marketplace add PolyArch/humanize
# If you want to use development branch for experimental features
/plugin marketplace add PolyArch/humanize#dev
# Then install humanize plugin
/plugin install humanize@PolyArch
Requires codex CLI for review. See the full Installation Guide for prerequisites and alternative setup options.
Generate an idea draft from a loose thought (optional — skip if you already have a draft):
/humanize:gen-idea "add undo/redo to the editor"
Output goes to .humanize/ideas/<slug>-<timestamp>.md by default. Pass a .md path to expand existing rough notes. --n controls how many parallel directions explore the idea (default 6).
Generate a plan from your draft:
/humanize:gen-plan --input draft.md --output docs/plan.md
Refine an annotated plan before implementation when reviewers add comments (CMT: ... ENDCMT, <cmt> ... </cmt>, or <comment> ... </comment>):
/humanize:refine-plan --input docs/plan.md
Run the loop:
/humanize:start-rlcr-loop docs/plan.md
Consult Gemini for deep web research (requires Gemini CLI):
/humanize:ask-gemini What are the latest best practices for X?
Monitor progress (in another terminal, not inside Claude Code):
source <path/to/humanize>/scripts/humanize.sh # Or just add it into your .bashec or .zshrc
humanize monitor rlcr # RLCR loop
humanize monitor skill # All skill invocations (codex + gemini)
humanize monitor codex # Codex invocations only
humanize monitor gemini # Gemini invocations only
MIT
npx claudepluginhub polyarch/humanize --plugin humanizeDescribe your goal, approve the spec, then step away — Claude and Codex loop together until it's right.
Autonomous Claude + Codex review loop. Plan a feature with adversarial pushback, or audit code, all in one window.
Meta-cognition: refine input through brainstorming, refine output through challenge and condensed communication mode.
End-to-end development workflow: design → draft-plan → orchestrate → review → pr-create → pr-review → pr-merge
Iterative plan review and execution workflow for Claude Code
Plan and autonomously build a software task end-to-end. Recons the codebase, applies preloaded memory, decomposes into the right number of phases, gets one confirmation, then prepares a single ready-to-paste /goal command — one paste between you and done — that drives execution to completion with built-in retry, fix-spec recovery, and per-phase memory writeback. Works on Claude Code and Codex.