From humanize-rs
Iterative development with AI review. Provides RLCR (Ralph-Loop with Codex Review) for implementation planning and code review loops, plus PR review automation with bot monitoring.
How this skill is triggered — by the user, by Claude, or both
Slash command
/humanize-rs:humanizeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Humanize creates a feedback loop where AI implements your plan while another AI independently reviews the work, ensuring quality through continuous refinement.
Humanize creates a feedback loop where AI implements your plan while another AI independently reviews the work, ensuring quality through continuous refinement.
All command examples below use the humanize CLI available on PATH:
humanize
Iteration over Perfection: Instead of expecting perfect output in one shot, Humanize leverages an iterative feedback loop where:
The RLCR (Ralph-Loop with Codex Review) loop has two phases:
Phase 1: Implementation
Phase 2: Code Review
codex review --base <branch> checks code quality[P0-9] severity markershumanize gate rlcr to enforce hook-equivalent transitions and blockingAutomates handling of GitHub PR reviews from remote bots:
--claude and/or --codex)@botTransforms a rough draft document into a structured implementation plan with:
When running inside Claude Code, prefer the humanize-gen-plan flow/skill behavior:
humanize config merged --json --with-meta to read merged plan-generation defaultshumanize gen-plan --prepare-only for deterministic validation and scaffold preparationhumanize ask-codex for first-pass and convergence reviewsThe full humanize gen-plan command remains available for standalone terminal workflows.
# With a plan file
humanize setup rlcr path/to/plan.md
# Or without plan (review-only mode)
humanize setup rlcr --skip-impl
# For each round, run the RLCR gate (required)
humanize gate rlcr
Common Options:
--max or --max-iterations N - Maximum iterations before auto-stop (default: 42)--codex-model MODEL:EFFORT - Codex model and reasoning effort for codex exec (default: gpt-5.4:xhigh)codex review uses gpt-5.4:high--codex-timeout SECONDS - Timeout for each Codex review (default: 5400)--base-branch BRANCH - Base branch for code review (auto-detects if not specified)--full-review-round N - Interval for full alignment checks (default: 5)--skip-impl - Skip implementation phase, go directly to code review--track-plan-file - Enforce plan-file immutability when tracked in git--push-every-round - Require git push after each round--claude-answer-codex - Let Claude answer Codex Open Questions directly (default is AskUserQuestion behavior)--agent-teams - Enable Agent Teams modehumanize cancel rlcr
# or force cancel during finalize phase
humanize cancel rlcr --force
# Monitor claude[bot] reviews
humanize setup pr --claude
# Monitor chatgpt-codex-connector[bot] reviews
humanize setup pr --codex
# Monitor both
humanize setup pr --claude --codex
Common Options:
--max or --max-iterations N - Maximum iterations (default: 42)--codex-model MODEL:EFFORT - Codex model for validation (default: gpt-5.4:medium)--codex-timeout SECONDS - Timeout for Codex validation (default: 900)humanize cancel pr
humanize gen-plan --prepare-only --input path/to/draft.md --output path/to/plan.md
Then continue with host-driven Codex consultation, convergence, clarification, and plan authoring.
humanize ask-codex [--model MODEL] [--effort EFFORT] [--timeout SECONDS] "your question"
The RLCR loop uses a Goal Tracker to prevent goal drift:
humanize gate rlcr instead of manual phase controlhumanize - Humanize CLIcodex - OpenAI Codex CLI (for review)gh - GitHub CLI (for PR loop)npx claudepluginhub cupnfish/humanize-rs --plugin humanize-rsProvides RLCR loops for iterative AI implementation from plans, progress reviews, and Codex CLI code reviews until acceptance criteria met.
Generates feature specs, implementation plans with task checklists, and project loop infrastructure via interactive user interviews on scope, risk tolerance, and validation.