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.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install undetectable-ai或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install undetectable-ai⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/undetectable-ai/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: undetectable-ai description: 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. allowed-tools: - Read - Write - StrReplace - Shell - Glob ---
TypeScript CLI tools for bypassing AI content detectors by removing telltale patterns.
cd scripts && npm install
Finds patterns that AI detectors look for: vocabulary, sentence structure, artifacts.
# Analyze a file
npx ts-node scripts/analyze.ts input.txt
# From stdin
echo "This serves as a testament" | npx ts-node scripts/analyze.ts
# JSON output
npx ts-node scripts/analyze.ts input.txt --json
Output:
==================================================
AI DETECTION SCAN - 5 issues found
==================================================
AI VOCABULARY:
• testament: 1x
• crucial: 2x
AUTO-FIXABLE:
• "serves as" → "is": 1x
---
Rewrites text to evade detection.
# Transform and print
npx ts-node scripts/transform.ts input.txt
# Write to file
npx ts-node scripts/transform.ts input.txt -o output.txt
# Fix em dashes too
npx ts-node scripts/transform.ts input.txt --fix-dashes
# Quiet mode
npx ts-node scripts/transform.ts input.txt -q
What it fixes:
---
```bash npx ts-node scripts/analyze.ts essay.txt ```
```bash npx ts-node scripts/transform.ts essay.txt -o essay_clean.txt ```
```bash npx ts-node scripts/analyze.ts essay_clean.txt ```
---
Edit scripts/patterns.json:
ai_words — vocabulary to flag (manual fix needed)puffery — promotional language to flagreplacements — auto-replace mappingschatbot_artifacts — phrases that trigger full sentence removal---
# Scan all docs
for f in *.txt; do
echo "=== $f ==="
npx ts-node scripts/analyze.ts "$f"
done
# Transform all
for f in *.md; do
npx ts-node scripts/transform.ts "$f" -o "${f%.md}_clean.md" -q
done安装 Undetectable AI 后,可以对 AI 说这些话来触发它
Help me get started with Undetectable AI
Explains what Undetectable AI does, walks through the setup, and runs a quick demo based on your current project
Use Undetectable AI to make AI text undetectable
Invokes Undetectable AI with the right parameters and returns the result directly in the conversation
What can I do with Undetectable AI in my developer & devops workflow?
Lists the top use cases for Undetectable AI, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/undetectable-ai/ 目录(个人级,所有项目可用),或 .claude/skills/undetectable-ai/(项目级)。重启 AI 客户端后,用 /undetectable-ai 主动调用,或让 AI 根据上下文自动发现并使用。
Undetectable AI 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Undetectable AI 可免费安装使用。请查阅仓库了解许可证信息。
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.
Undetectable AI 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Undetectable AI
Identifies repetitive steps in your workflow and sets up Undetectable AI to handle them automatically