Humanizer is a skill, not a server. There is no MCP server, no daemon, and no API key. Installing
it means putting one Markdown file (skills/humanizer/SKILL.md) where your agent looks for skills.
claude plugin marketplace add Aboudjem/10x
claude plugin install humanizer@10xThe skills CLI from vercel-labs links the skill into
the right directory for the agent you name, or copies it with --copy. Version 1.5.23 lists 77 agent codes; the nine below are
the ones this table covers.
npx skills add Aboudjem/humanizer-skill -a <agent>| Agent | -a code |
Project path | Global path |
|---|---|---|---|
| Claude Code | claude-code |
.claude/skills/ |
~/.claude/skills/ |
| Cursor | cursor |
.agents/skills/ |
~/.cursor/skills/ |
| Codex | codex |
.agents/skills/ |
~/.codex/skills/ |
| GitHub Copilot | github-copilot |
.agents/skills/ |
~/.copilot/skills/ |
| Gemini CLI | gemini-cli |
.agents/skills/ |
~/.gemini/skills/ |
| OpenCode | opencode |
.agents/skills/ |
~/.config/opencode/skills/ |
| Windsurf | windsurf |
.windsurf/skills/ |
~/.codeium/windsurf/skills/ |
| Zed | zed |
.agents/skills/ |
~/.agents/skills/ |
| Kimi Code CLI | kimi-code-cli |
.agents/skills/ |
~/.agents/skills/ |
Paths and codes come from the Supported Agents table in the
vercel-labs/skills README, read
2026-09-02.
Useful flags: -g installs globally instead of into the current project, -y skips the
confirmation prompt, -l lists what the repo offers without installing, and --copy copies files
instead of symlinking.
npx skills add Aboudjem/humanizer-skill -a cursor -g -y
npx skills add Aboudjem/humanizer-skill --listThere is a ClawHub listing at clawhub.ai/Aboudjem/humanizer-skill,
installable with clawhub install humanizer-skill. Checked 2026-09-02, that listing is a stale
0.1.0-era copy that still advertises 43 patterns, so it does not carry the current catalog. Until it
is republished, use npx skills add or the manual copy below.
Any agent that reads SKILL.md files works without the CLI. Clone the repo and copy the one skill
directory into whichever path the table above lists for your agent.
git clone https://github.com/Aboudjem/humanizer-skill.git
mkdir -p ~/.agents/skills
cp -r humanizer-skill/skills/humanizer ~/.agents/skills/~/.agents/skills/ is the shared convention that Cursor, Codex, Copilot, Gemini CLI, OpenCode, Zed
and Kimi Code CLI all read, so one copy usually covers several agents at once.
.claude-plugin/plugin.json, .cursor-plugin/plugin.json and .copilot-plugin/plugin.json all
declare the same single skill and the same version. Claude Code reads its manifest at install time.
Cursor and Copilot discover skills by walking their skills directories rather than by reading a
manifest, so those two files are there for tooling that wants a machine-readable description, not
because either editor requires them.
The skill never calls it and does not need it. If you want a reproducible number instead of a
model's estimate, cli/ is a separate zero-dependency Node package:
node cli/index.js score README.md
node cli/index.js scan docs --fail-above 40See pre-commit.md for gating commits on the score.