Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 13 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,42 +1,26 @@
# Humanizer

A skill for Claude Code and OpenCode that removes signs of AI-generated writing from text, making it sound more natural and human.
A skill for coding agents (Claude Code, OpenCode, etc) that removes signs of AI-generated writing from text, making it sound more natural and human.

## Installation

### Claude Code

Clone directly into Claude Code's skills directory:

```bash
mkdir -p ~/.claude/skills
git clone https://github.com/blader/humanizer.git ~/.claude/skills/humanizer
```

Or copy the skill file manually if you already have this repo cloned:

```bash
mkdir -p ~/.claude/skills/humanizer
cp SKILL.md ~/.claude/skills/humanizer/
npx skills add blader/humanizer
```
> This will let you install for any coding agent.

### OpenCode
### Per-agent install

Clone directly into OpenCode's skills directory:

```bash
mkdir -p ~/.config/opencode/skills
git clone https://github.com/blader/humanizer.git ~/.config/opencode/skills/humanizer
```

Or copy the skill file manually if you already have this repo cloned:

```bash
mkdir -p ~/.config/opencode/skills/humanizer
cp SKILL.md ~/.config/opencode/skills/humanizer/
```
If you want to install for specific agent, use the table below.

> **Note:** OpenCode also scans `~/.claude/skills/` for compatibility, so if you use both tools, a single clone into `~/.claude/skills/humanizer/` is enough.
| Agent | Install command |
|---|---|
| **Claude Code** | `npx skills add blader/humanizer --agent claude-code` |
| **opencode** | `npx skills add blader/humanizer --agent opencode` |
| **Codex CLI** | `npx skills add blader/humanizer --agent codex` |

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Example of terminal output:

npx skills add blader/humanizer --agent codex

███████╗██╗  ██╗██╗██╗     ██╗     ███████╗
██╔════╝██║ ██╔╝██║██║     ██║     ██╔════╝
███████╗█████╔╝ ██║██║     ██║     ███████╗
╚════██║██╔═██╗ ██║██║     ██║     ╚════██║
███████║██║  ██╗██║███████╗███████╗███████║
╚══════╝╚═╝  ╚═╝╚═╝╚══════╝╚══════╝╚══════╝

┌   skills 
│
◇  Source: https://github.com/blader/humanizer.git
│
◇  Repository cloned
│
◇  Found 1 skill
│
●  Skill: humanizer
│
│  Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, passive voice, negative parallelisms, and filler phrases.

◇  Installation scope
│  Global


◇  Installation Summary ───────╮
│                              │
│  ~/.agents/skills/humanizer  │
│    copy → Codex              │
│                              │
├──────────────────────────────╯

◇  Security Risk Assessments ───────────────────────────────╮
│                                                           │
│             Gen               Socket            Snyk      │
│  humanizer  Safe              0 alerts          Low Risk  │
│                                                           │
│  Details: https://skills.sh/blader/humanizer              │
│                                                           │
├───────────────────────────────────────────────────────────╯

◇  Proceed with installation?
│  Yes

◇  Installation complete


◇  Installed 1 skill ──────────────╮
│                                  │
│  ✓ humanizer (copied)            │
│    → ~/.agents/skills/humanizer  │
│                                  │
├──────────────────────────────────╯


└  Done!  Review skills before use; they run with full agent permissions.

| **Cursor** | `npx skills add blader/humanizer --agent cursor` |

> **Note:** OpenCode also scans `~/.claude/skills/` for compatibility, so if you use both tools, setting it up for Claude Code is enough.

## Usage

Expand Down