By chrisliu298
Humanize (fork) - Iterative development plugin: Claude implements, Codex independently reviews. Replaces upstream's optional Gemini consult with ask-gpt-pro, which routes deep-reasoning questions to ChatGPT Pro Extended via gpt-pro-relay.
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.
GPT-Pro consult for the humanize RLCR workflow. Do not use independently — only invoke as part of a humanize command, agent, or workflow.
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
Fork of PolyArch/humanize that replaces the optional Gemini research consult with
ask-gpt-pro, which routes deep-reasoning questions to ChatGPT Pro Extended (GPT-5 Pro) via gpt-pro-relay on a designated host. The RLCR loop (Claude implements, Codex reviews) is unchanged.Derived upstream 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 this fork's marketplace
/plugin marketplace add chrisliu298/humanize
# Then install humanize plugin
/plugin install humanize@chrisliu298
Requires:
macmini
(or override with HUMANIZE_GPT_PRO_HOST) if you want to use ask-gpt-pro.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 ChatGPT Pro Extended for deep reasoning + web research (requires gpt-pro-relay):
/humanize:ask-gpt-pro What are the latest best practices for X?
Each call typically takes 5-20 minutes. The wrapper auto-detects whether to invoke gpt-pro-relay directly (when running on macmini) or via the resilient SSH polling pattern.
Monitor progress (in another terminal, not inside Claude Code):
source <path/to/humanize>/scripts/humanize.sh # Or just add it into your .bashrc or .zshrc
humanize monitor rlcr # RLCR loop
humanize monitor skill # All skill invocations (codex + gpt-pro)
humanize monitor codex # Codex invocations only
humanize monitor gpt-pro # gpt-pro invocations only
MIT
Minimal autonomous ML research: scout ideas, run experiments, write papers.
npx claudepluginhub chrisliu298/humanizeComprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Intelligent draw.io diagramming plugin with AI-powered diagram generation, multi-platform embedding (GitHub, Confluence, Azure DevOps, Notion, Teams, Harness), conditional formatting, live data binding, and MCP server integration for programmatic diagram creation and management.
Evidence-gated AI coding workflow: scan → analyze → plan → TDD → execute → fix → verify → review, powered by Codebase Memory MCP >= 0.9.0 with optional Serena LSP intelligence. Includes blast-radius planning, test/cycle gates, independent review, and Windows Git Bash hook auto-resolution.
Consult multiple AI coding agents (Gemini, OpenAI, Grok, Perplexity, plus codex, antigravity, and grok CLIs when installed) to get diverse perspectives on coding problems
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
Lazy senior dev mode. Forces the simplest, shortest solution that actually works: YAGNI, stdlib first, no unrequested abstractions.