Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By PolyArch
Run iterative AI development loops where Claude implements plans from structured drafts and Codex independently reviews each iteration, with goal tracking, plan validation, and automated git commits until acceptance criteria are met.
npx claudepluginhub polyarch/humanize --plugin humanizeCancel 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
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Describe 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.
Plugin for effective agentic development
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.
Iterative plan review and execution workflow for Claude Code
A curated set of skills for each stage of development — propose, spec, design, plan, implement, ship.
No model invocation
Executes directly as bash, bypassing the AI model
No model invocation
Executes directly as bash, bypassing the AI model
Share bugs, ideas, or general feedback.
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