返回顶部
u

undetectable-aiAI文本伪装

Make AI text undetectable. TypeScript CLI that scans ChatGPT, Claude, OpenClaw output for patterns flagged by GPTZero, Turnitin, Originality.ai, then auto-fixes them to pass as human-written. Use to bypass AI detection, evade checkers, or humanize text before submission.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
1,940
下载量
免费
免费
5
收藏
概述
安装方式
版本历史

undetectable-ai

不可检测AI

用于绕过AI内容检测器、移除明显模式特征的TypeScript命令行工具。

环境配置

bash
cd scripts && npm install

脚本

analyze.ts — 扫描可检测模式

查找AI检测器关注的特征:词汇、句子结构、人工痕迹。

bash

分析文件


npx ts-node scripts/analyze.ts input.txt

从标准输入读取

echo 这堪称一个明证 | npx ts-node scripts/analyze.ts

JSON格式输出

npx ts-node scripts/analyze.ts input.txt --json

输出结果:

==================================================
AI检测扫描 - 发现5个问题
==================================================

AI词汇:
• 明证:1次
• 关键:2次

可自动修复:
• 堪称 → 是:1次



transform.ts — 自动修复模式

重写文本以规避检测。

bash

转换并打印


npx ts-node scripts/transform.ts input.txt

写入文件

npx ts-node scripts/transform.ts input.txt -o output.txt

同时修复长破折号

npx ts-node scripts/transform.ts input.txt --fix-dashes

静默模式

npx ts-node scripts/transform.ts input.txt -q

修复内容:

  • - 填充短语:为了 → 以
  • AI词汇:利用 → 使用,借助 → 使用
  • 句子开头:移除此外,、而且,
  • 聊天机器人痕迹:移除包含希望这能帮到您等完整句子
  • 弯引号 → 直引号
  • 移除后的首字母大写修正



工作流程

  1. 1. 扫描以查看检测风险:
bash npx ts-node scripts/analyze.ts essay.txt
  1. 2. 自动修复机械模式:
bash npx ts-node scripts/transform.ts essay.txt -o essay_clean.txt
  1. 3. 手动处理标记的AI词汇(需要判断)
  1. 4. 重新扫描以验证:
bash npx ts-node scripts/analyze.ts essay_clean.txt

自定义配置

编辑 scripts/patterns.json:

  • - aiwords — 需要标记的词汇(需手动修复)
  • puffery — 需要标记的宣传性语言
  • replacements — 自动替换映射
  • chatbotartifacts — 触发整句删除的短语



批量处理

bash

扫描所有文档


for f in *.txt; do
echo === $f ===
npx ts-node scripts/analyze.ts $f
done

转换所有文件

for f in *.md; do npx ts-node scripts/transform.ts $f -o ${f%.md}_clean.md -q done

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 undetectable-ai-1776372429 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 undetectable-ai-1776372429 技能

通过命令行安装

skillhub install undetectable-ai-1776372429

下载

⬇ 下载 undetectable-ai v1.0.0(免费)

文件大小: 8.7 KB | 发布时间: 2026-4-17 14:50

v1.0.0 最新 2026-4-17 14:50
Initial release of Undetectable AI CLI.

- Scan text files for patterns commonly flagged by AI detectors (GPTZero, Turnitin, Originality.ai).
- Auto-fix typical AI signatures, including filler phrases, AI-preferred vocabulary, standard sentence starters, and chatbot artifacts.
- Outputs issues and fixes with CLI commands (`analyze.ts`, `transform.ts`).
- Customizable detection patterns and replacements via `patterns.json`.
- Supports batch processing and various output modes.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部