PluginBench
Skill
Review
Audit score 70

humanize

humanizerai/agent-skills

Transform AI-generated text into natural, human-like content that bypasses AI detectors.

What is humanize?

Converts AI-generated writing into human-like text using the HumanizerAI API. Use this when you need to make AI content appear natural and pass detection tools like GPTZero, Turnitin, and Originality.ai. Credits are consumed based on word count.

  • Rewrites AI-generated text to appear human-written
  • Offers three intensity levels (light, medium, aggressive) for different detection bypass needs
  • Provides before/after detection scores to measure improvement
  • Tracks credit usage (1 credit per word processed)
  • Supports optional intensity flag to control rewrite aggressiveness

How to install humanize

npx skills add https://github.com/humanizerai/agent-skills --skill humanize
Prerequisites
  • HUMANIZERAI_API_KEY environment variable set with valid API key from humanizerai.com
  • Active HumanizerAI account with available credits
Claude Code
Cursor
Windsurf
Cline

How to use humanize

  1. 1.Invoke the skill with /humanize followed by your text
  2. 2.Optionally add --intensity flag (light, medium, or aggressive) before the text
  3. 3.Review the before/after detection scores and humanized output
  4. 4.Check remaining credits displayed in the response
  5. 5.Top up credits at humanizerai.com/dashboard if needed

Use cases

Good for
  • Making AI-generated essays or assignments pass plagiarism detection
  • Humanizing AI-drafted marketing copy or social media content
  • Converting AI-written technical documentation to sound more natural
  • Improving detection scores on already-edited AI text with light intensity
  • Bypassing strict AI detectors on high-scoring content with aggressive mode
Who it's for
  • Content creators using AI writing tools
  • Students working with AI-generated academic content
  • Marketing teams producing AI-assisted copy
  • Technical writers refining AI-generated documentation

humanize FAQ

How much does humanization cost?

1 credit per word processed. Detection scoring is free. Check your remaining credits at humanizerai.com/dashboard.

What do the intensity levels do?

Light makes subtle changes for already-edited text, medium provides balanced rewrites (default), and aggressive maximizes bypass potential for strict detectors.

What if I run out of credits?

The skill will show how many credits you need versus available. Visit humanizerai.com/dashboard to purchase more credits.

Which AI detectors does this bypass?

It targets GPTZero, Turnitin, and Originality.ai, though results depend on the original text and intensity level.

What if my API key is invalid?

Check that HUMANIZERAI_API_KEY is set correctly in your environment. Get a valid key from humanizerai.com.

Full instructions (SKILL.md)

Source of truth, from humanizerai/agent-skills.


name: humanize description: Transform AI-generated text into natural, human-like content that bypasses AI detectors like GPTZero, Turnitin, and Originality.ai. Uses credits based on word count. user-invocable: true argument-hint: "[text to humanize] [--intensity light|medium|aggressive]" allowed-tools: WebFetch

Humanize AI Text

Transform AI-generated content into natural, human-like writing using the HumanizerAI API.

How It Works

When the user invokes /humanize, you should:

  1. Parse $ARGUMENTS for text and optional --intensity flag
  2. Call the HumanizerAI API to humanize the text
  3. Present the humanized text with before/after scores
  4. Show remaining credits

Parsing Arguments

The user may provide:

  • Just text: /humanize [their text]
  • With intensity: /humanize --intensity aggressive [their text]

Default intensity is medium.

Intensity Levels

ValueNameDescriptionBest For
lightLightSubtle changes, preserves styleAlready-edited text, low AI scores
mediumMediumBalanced rewrites (default)Most use cases
aggressiveBypassMaximum bypass modeHigh AI scores, strict detectors

API Call

Make a POST request to https://humanizerai.com/api/v1/humanize:

Authorization: Bearer $HUMANIZERAI_API_KEY
Content-Type: application/json

{
  "text": "<user's text>",
  "intensity": "medium"
}

Response Format

Present results like this:

## Humanization Complete

**Score:** X → Y (improvement)
**Words Processed:** N
**Credits Remaining:** X

---
### Humanized Text

[The humanized text]

---

[Recommendation based on final score]

Credit Usage

Error Handling

Insufficient Credits

If the user doesn't have enough credits:

  1. Show how many credits are needed vs available
  2. Direct them to https://humanizerai.com/dashboard to top up

Invalid API Key

  1. Check HUMANIZERAI_API_KEY environment variable
  2. Direct to https://humanizerai.com to get a key

Rate Limit

If rate limited, suggest waiting or upgrading to Business plan.