by humanizerai
此技能可分析文本以检测其是否由AI编写,返回0-100的评分及详细指标。在发布或提交前使用此功能验证内容真实性。
1. 打开 Claude 聊天界面
2. 点击下方 "📋 复制" 按钮
3. 粘贴到 Claude 聊天框中并发送
4. 输入 "使用 detect-ai 技能" 开始使用
=== detect-ai 技能 === 作者: humanizerai 描述: 此技能可分析文本以检测其是否由AI编写,返回0-100的评分及详细指标。在发布或提交前使用此功能验证内容真实性。 使用方法: 1. 调用技能: "使用 detect-ai 技能" 2. 提供相关信息: 根据技能要求提供必要参数 3. 查看结果: 技能会返回处理结果 示例: "使用 detect-ai 技能,帮我分析一下这段代码"
这种方法适用于所有 Claude 用户,不需要安装额外工具。
writing
low
Analyze text to determine if it was written by AI using the HumanizerAI API.
When the user invokes /detect-ai, you should:
Make a POST request to https://humanizerai.com/api/v1/detect:
Authorization: Bearer $HUMANIZERAI_API_KEY
Content-Type: application/json
{
"text": "<user's text>"
}
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.
## 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]
If the API call fails:
View Count
0
Download Count
0
Favorite Count
0
Quality Score
69