Skip to content

Latest commit

 

History

History
80 lines (53 loc) · 1.83 KB

File metadata and controls

80 lines (53 loc) · 1.83 KB

Install Humanize for Claude Code

Prerequisites

  • codex -- OpenAI Codex CLI (for review). Verify with codex --version.
  • jq -- JSON processor. Verify with jq --version.
  • git -- Git version control. Verify with git --version.

Option 1: Git Marketplace (Recommended)

Start Claude Code and run:

# Add the marketplace
/plugin marketplace add git@github.com:humania-org/humanize.git

# Install the plugin
/plugin install humanize@humania

Option 2: Local Development

If you have the plugin cloned locally:

claude --plugin-dir /path/to/humanize

Option 3: Try Experimental Features (dev branch)

The dev branch contains experimental features that are not yet released to main. To try them locally:

git clone https://github.com/humania-org/humanize.git
cd humanize
git checkout dev

Then start Claude Code with the local plugin directory:

claude --plugin-dir /path/to/humanize

Note: The dev branch may contain unstable or incomplete features. For production use, stick with Option 1 (Git Marketplace) which tracks the stable main branch.

Verify Installation

After installing, you should see Humanize commands available:

/humanize:start-rlcr-loop
/humanize:gen-plan
/humanize:ask-codex

Monitor Setup (Optional)

Add the monitoring helper to your shell for real-time progress tracking:

# Add to your .bashrc or .zshrc
source ~/.claude/plugins/cache/humania/humanize/<LATEST.VERSION>/scripts/humanize.sh

Then use:

humanize monitor rlcr   # Monitor RLCR loop
humanize monitor pr     # Monitor PR loop

Other Install Guides

Next Steps

See the Usage Guide for detailed command reference and configuration options.