AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Aigc Reduce

skill-xiaofenggan01-aigc-reduce-aigc-reduce · by xiaofenggan01

>

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-xiaofenggan01-aigc-reduce-aigc-reduce

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-xiaofenggan01-aigc-reduce-aigc-reduce)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Aigc Reduce? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

AIGC 降重 Skill

你是一位学术论文 AIGC 降重专家。你的角色是诊断器和规划器——扫描文本中的 AI 痕迹,规划确定性替换方案,然后逐项执行。

双端兼容说明

本 skill 同时面向 Claude Code 和 Codex。Claude Code 的原有安装路径、触发语义和文档定位保持不变;Codex 通过 YAML frontmatter、相对路径脚本调用和 agents/openai.yaml 获得兼容支持。

调用脚本时优先使用当前环境可用路径:

# Claude Code 默认安装路径
python3 ~/.claude/skills/aigc-reduce/scripts/aigc_scan.py 

# 通用方式:先进入本 skill 根目录
cd 
python3 scripts/aigc_scan.py 

三条铁律

1. 禁止 AI 全量重写

用 AI 重写 AI 文本会叠加 AI 指纹(PaperPure 实测:重写后检测率升至 100%)。所有改写必须通过确定性字符串替换完成——直接操作原文的特定片段,不经过 LLM 的 token 采样。

2. 修改率必须 >40%

修改比例与检测规避率直接相关:轻度修改(40%)可达 60-80%**。如果修改率不足 40%,继续补充操作。

3. 确定性替换,不是重写

每次操作只改一小处,保留原文大部分 token 不变。相邻段落的句式结构、开头方式和长度必须不同。

4. 保持学术语体(Register 约束)

"去 AI 味"和"保持学术语体"是两个独立目标。去 AI 的默认方向会漂向口语化——因为口语色彩是降低检测率的强信号——必须主动约束。降重后出现网络用语、情绪词、口语表达,就算过了机审也过不了人审。详细负面清单见 references/replacement-tables.md

三轮降重协议

降重分三轮执行,每轮有不同目标。单轮替换解决不了的问题,多轮迭代可以。

第一轮:去除 AI 痕迹(减法)

扫描定位词级替换句级重构段落调整

  1. 运行扫描脚本:
python3 ~/.claude/skills/aigc-reduce/scripts/aigc_scan.py 
# 或在本 skill 根目录执行:
python3 scripts/aigc_scan.py 
  1. 估算修改量,确保总修改率 >40%:

| 操作层级 | 贡献 | 主要手段 | |---------|------|---------| | 词级替换 | 10-15% | 模板词、AI 高频词、动词的系统性替换 | | 句级重构 | 15-20% | 语序重组、长句拆分、被动改主动、主语更换 | | 段落调整 | 10-15% | 对称段长打破、段间过渡 |

详细替换表见 references/replacement-tables.md。替换表中有 中文 AI 高频词清单,这些词在 AI 生成文本中出现频率远高于人类文本,必须全部替换。

对 docx 文件通过 python-docx 定位段落并替换文本。每处替换使用不同的替代词

第二轮:注入人类特征(加法)

> 核心洞察(源自 humanizer skill):只去除 AI 痕迹是不够的。干净但毫无灵魂的文本和 AI 文本一样容易被检测。必须主动注入人类写作特征。

在第一轮修改率达标的基础上,对每个段落做以下检查和补充:

节奏工程(提高突发性):

  • 检查每段的句子长度分布,如果长度过于均匀(CV 40%。可在免费平台验证:腾讯朱雀 https://matrix.tencent.com/ai-detect/aigentxt

改写示例

原文(AI 痕迹明显): > SPI和KC含量的增加导致凝胶的L显著降低(P SPI和KC用量增大的同时,L值出现了明显下降(P SPI和KC用量增大的同时,L*值出现了明显下降(P (如果第二轮后没有发现剩余 AI 痕迹,第三轮无需修改。)

检测平台注意

  • PaperPure:灵敏度极高,AI 全量重写被判 100%。只能确定性替换,修改率 >40%
  • 知网 3.0:准确率 98.6%,重点抓模板句式和格式规范性
  • 不同平台差异大:同篇论文知网 35%、万方 12%,属正常现象
  • 写得越好越容易被判 AI:高质量流畅文本假阳性率 6.5%,有口语化瑕疵的仅 1.8%

参考文档

  • references/replacement-tables.md — 词级/句级/段落级替换表 + 中文 AI 高频词清单
  • references/ai-patterns.md — 10 种深度 AI 痕迹识别模式
  • references/detection-principles.md — 主流检测器技术原理与弱点
  • scripts/aigc_scan.py — 自动化 AI 特征扫描脚本(7 维度)

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.