detect-ai▌
humanizerai/agent-skills · updated Apr 8, 2026
Analyze text to determine if it was written by AI using the HumanizerAI API.
Detect AI Content
Analyze text to determine if it was written by AI using the HumanizerAI API.
How It Works
When the user invokes /detect-ai, you should:
- Extract the text from $ARGUMENTS
- Call the HumanizerAI API to analyze the text
- Present the results in a clear, actionable format
API Call
Make a POST request to https://humanizerai.com/api/v1/detect:
Authorization: Bearer $HUMANIZERAI_API_KEY
Content-Type: application/json
{
"text": "<user's text>"
}
API Response Format
The API returns JSON like this:
{
"score": {
"overall": 82,
"perplexity": 96,
"burstiness": 15,
"readability": 23,
"satPercent": 3,
"simplicity": 35,
"ngramScore": 8,
"averageSentenceLength": 21
},
"wordCount": 82,
"sentenceCount": 4,
"verdict": "ai"
}
IMPORTANT: The main AI score is score.overall (not score directly). This is the score to display to the user.
Present Results Like This
## AI Detection Results
**Score:** [score.overall]/100 ([verdict])
**Words Analyzed:** [wordCount]
### Metrics
- Perplexity: [score.perplexity]
- Burstiness: [score.burstiness]
- Readability: [score.readability]
- N-gram Score: [score.ngramScore]
### Recommendation
[Based on score.overall, suggest whether to humanize]
Score Interpretation (use score.overall)
- 0-20: Human-written content
- 21-40: Likely human, minor AI patterns
- 41-60: Mixed signals, could be either
- 61-80: Likely AI-generated
- 81-100: Highly likely AI-generated
Error Handling
If the API call fails:
- Check if HUMANIZERAI_API_KEY is set
- Suggest the user get an API key at https://humanizerai.com
- Provide the error message for debugging
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★61 reviews- ★★★★★Evelyn Farah· Dec 28, 2024
detect-ai has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Liam Jackson· Dec 24, 2024
Solid pick for teams standardizing on skills: detect-ai is focused, and the summary matches what you get after install.
- ★★★★★Yusuf Smith· Dec 20, 2024
detect-ai fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Yusuf Gill· Dec 16, 2024
detect-ai fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Layla Ndlovu· Dec 12, 2024
detect-ai is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Pratham Ware· Dec 8, 2024
We added detect-ai from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Yash Thakker· Nov 27, 2024
detect-ai fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Omar Sanchez· Nov 27, 2024
Keeps context tight: detect-ai is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Kiara Thompson· Nov 15, 2024
Registry listing for detect-ai matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Yuki Park· Nov 15, 2024
Solid pick for teams standardizing on skills: detect-ai is focused, and the summary matches what you get after install.
showing 1-10 of 61