Install
openclaw skills install tencentcloud-aigc-recog-text腾讯云 AI 生成文本识别 (TencentCloud Text AIGC Detection) 技能。适用于 AI 生成文本检测、文本真伪鉴别、AI 写作检测、AIGC 检测等场景。TencentCloud Text AIGC Detection is an AI-generated content detec...
openclaw skills install tencentcloud-aigc-recog-text本技能根据文本形式(如标点、特殊字符、 格式)和内容特征(如泛泛而谈、正确而无用的话),鉴别是否为 AI 工具生成,能较好地适配于新闻、百科、问答、评论、小说等场景的生成文本。
TencentCloud AI Text Recognition (also referred to as TencentCloud AIGC Detection for text or AI-generated text detection) is Tencent Cloud's text moderation capability for aigc detection and AI-generated text identification. It enables article screening, review moderation, news authenticity checks, and other TencentCloud text analysis scenarios.
Pass(人类撰写)、Review(存疑)、Block(AI 生成)三级建议| 方式 | 说明 |
|---|---|
| 直接文本 | 将文本字符串作为参数传入 |
| 文件路径 | 传入文本文件路径,自动读取内容 |
| 标准输入 | 通过 --stdin 从管道读取 |
本 Skill 需要腾讯云 API 密钥才能正常工作。
Linux / macOS:
export TENCENTCLOUD_SECRET_ID="你的SecretId"
export TENCENTCLOUD_SECRET_KEY="你的SecretKey"
export TENCENTCLOUD_AIGC_RECOG_TEXT_BIZ_TYPE="你的BizType"
如需持久化:
echo 'export TENCENTCLOUD_SECRET_ID="你的SecretId"' >> ~/.zshrc
echo 'export TENCENTCLOUD_SECRET_KEY="你的SecretKey"' >> ~/.zshrc
echo 'export TENCENTCLOUD_AIGC_RECOG_TEXT_BIZ_TYPE="你的BizType"' >> ~/.zshrc
source ~/.zshrc
Windows (PowerShell):
$env:TENCENTCLOUD_SECRET_ID = "你的SecretId"
$env:TENCENTCLOUD_SECRET_KEY = "你的SecretKey"
$env:TENCENTCLOUD_AIGC_RECOG_TEXT_BIZ_TYPE = "你的BizType"
⚠️ 安全提示:切勿将密钥硬编码在代码中。如使用临时凭证(STS Token),还需设置
TENCENTCLOUD_TOKEN环境变量。 ⚠️ 必需配置:TENCENTCLOUD_AIGC_RECOG_TEXT_BIZ_TYPE为必需环境变量,未配置时脚本将报错退出。
⚠️ 本节是 Agent(AI 模型)的核心执行规范。当用户请求检测文本是否为 AI 生成时,Agent 必须严格按照以下步骤自主执行,无需询问用户确认。
CREDENTIALS_NOT_CONFIGURED 或 BIZ_TYPE_NOT_CONFIGURED 错误,Agent 必须向用户展示完整的环境配置指引(包括开通服务、获取密钥、获取 BizType、设置环境变量的全部步骤),确保用户能一次性完成所有配置。# Option 1: Run TencentCloud AIGC detection with a text string
python3 <SKILL_DIR>/scripts/main.py "这是一段待检测的文本内容"
# Option 2: Provide a file path for AI-generated text detection
python3 <SKILL_DIR>/scripts/main.py /path/to/textfile.txt
# Option 3: Specify the input file explicitly for TencentCloud text analysis
python3 <SKILL_DIR>/scripts/main.py --file /path/to/textfile.txt
# Option 4: Pipe text content into the moderation workflow via standard input
cat textfile.txt | python3 <SKILL_DIR>/scripts/main.py --stdin
# Option 5: Attach optional metadata for the text authenticity review workflow
python3 <SKILL_DIR>/scripts/main.py --data-id "business_123" "待检测文本"
| 参数 | 说明 |
|---|---|
--stdin | 从标准输入读取文本 |
--file <path> | 指定文本文件路径 |
--data-id <id> | 业务数据标识,用于关联检测结果(最长 128 字符) |
| 环境变量 | 必需 | 说明 |
|---|---|---|
TENCENTCLOUD_SECRET_ID | ✅ | 腾讯云 API SecretId |
TENCENTCLOUD_SECRET_KEY | ✅ | 腾讯云 API SecretKey |
TENCENTCLOUD_AIGC_RECOG_TEXT_BIZ_TYPE | ✅ | 自定义审核策略编号(在腾讯云控制台创建,每个用户需使用自己的 BizType) |
TENCENTCLOUD_TOKEN | ❌ | 临时凭证 STS Token(可选) |
正常检测结果:
{
"suggestion": "Block",
"label": "GeneratedContentRisk",
"score": 99,
"keywords": [],
"detail_results": [
{
"label": "GeneratedContentRisk",
"suggestion": "Block",
"score": 99,
"sub_label": "AITextGenerated"
}
],
"sub_label": "AITextGenerated",
"request_id": "07e8c425-f77d-4989-b0ad-c94da7757bb3"
}
凭证未配置时的错误输出:
{
"error": "CREDENTIALS_NOT_CONFIGURED",
"message": "缺少环境变量: TENCENTCLOUD_SECRET_ID, TENCENTCLOUD_SECRET_KEY",
"guide": {
"step1": "开通AI生成文本检测服务: https://console.cloud.tencent.com/cms/clouds/LLM",
"step2": "获取 API 密钥: https://console.cloud.tencent.com/cam/capi",
"step3_linux": "export TENCENTCLOUD_SECRET_ID=\"your_secret_id\"\nexport TENCENTCLOUD_SECRET_KEY=\"your_secret_key\"",
"step3_windows": "$env:TENCENTCLOUD_SECRET_ID = \"your_secret_id\"\n$env:TENCENTCLOUD_SECRET_KEY = \"your_secret_key\""
}
}
BizType 未配置时的错误输出:
{
"error": "BIZ_TYPE_NOT_CONFIGURED",
"message": "缺少环境变量: TENCENTCLOUD_AIGC_RECOG_TEXT_BIZ_TYPE",
"guide": {
"step1": "在腾讯云控制台获取文本AI生成检测配套策略: https://console.cloud.tencent.com/cms/clouds/manage",
"step2_linux": "export TENCENTCLOUD_AIGC_RECOG_TEXT_BIZ_TYPE=\"your_biz_type\"",
"step2_windows": "$env:TENCENTCLOUD_AIGC_RECOG_TEXT_BIZ_TYPE = \"your_biz_type\""
}
}
Agent 收到脚本输出后,按以下方式向用户简单解读结果即可,不要长篇大论、甚至加入自己的解读:
| 字段 | 含义 | 向用户呈现方式 |
|---|---|---|
suggestion | 处置建议 | Pass → "该文本大概率为人类撰写"<br>Review → "该文本存疑,建议人工复审"<br>Block → "该文本大概率为 AI 生成" |
label | 风险标签 | 当为 Normal 时表示无其他内容风险, GeneratedContentRisk 表示为aigc生成内容 |
score | 置信度(0-100) | 分数越高越可能是 AI 生成。0-60 低风险、60-80 中风险、80-100 高风险 |
keywords | 命中关键词 | 如有则向用户展示 |
detail_results | 详细检测结果 | 如有多个维度,逐一说明 |
详细的接口参数、输出说明、错误码等信息请参阅:
scripts/main.py — AI 生成文本识别,调用 TextModeration 接口(Type=TEXT_AIGC)。tencentcloud-sdk-python(腾讯云 SDK)安装依赖(Agent 需手动安装):
pip install tencentcloud-sdk-python