技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 5 · 1.7k · 4 current installs · 4 all-time installs
⭐ 5
安装量(当前) 4
🛡 VirusTotal :良性 · OpenClaw :良性
Package:artur-zhdan/undetectable-ai
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's files, instructions, and runtime behavior are internally consistent with its stated purpose (pattern-based scanning and local text transformations) — but it enables ethically/misuse-sensitive behavior and has a small setup/instruction mismatch you should fix before running.
目的
Name/description (evade AI detectors) match the included code: analyze.ts, transform.ts, and patterns.json implement local regex-based detection and replacement. The skill does not contact external detectors (GPTZero/Turnitin/etc.) or require credentials; it just applies locally-stored patterns. The claim of scanning those third-party services is therefore an overstatement — it scans for patterns those services may flag, not the services thems…
说明范围
SKILL.md instructs the agent to run the included TypeScript scripts (npx ts-node ...) and to read/write local files; the scripts only read patterns.json and input files and write transformed output. There is no evidence in the instructions to read unrelated system files, environment variables, or to transmit data externally.
安装机制
This is an instruction-only skill (no install spec), but SKILL.md tells users to run 'cd scripts && npm install'. The package.json is at the repository root, not inside scripts/, so the setup instruction is incorrect and could confuse users. The dependencies are standard devDeps (ts-node/typescript) from npm — expected for running the TypeScript scripts and not inherently suspicious.
证书
The skill requests no environment variables, credentials, or config paths and the code does not access any. This is proportionate for a local text-processing tool.
持久
The skill does not request persistent/system-wide presence (always:false), does not modify other skills, and has no privileged operations. It runs only when invoked.
综合结论
This package is internally consistent: it performs local pattern matching and replacements to make text look less like typical LLM output. Before installing or running it, consider the following: (1) Ethical/legal risk — using tools to evade plagiarism or integrity checks can violate policies or laws; avoid using it to cheat or deceive. (2) Fix the setup instruction — run npm install at the repository root (where package.json lives) or move pa…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Undetectable AI」。简介:Make AI text undetectable. TypeScript CLI that scans ChatGPT, Claude, OpenClaw …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/artur-zhdan/undetectable-ai/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
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
---
# Undetectable AI
TypeScript CLI tools for bypassing AI content detectors by removing telltale patterns.
## Setup
```bash
cd scripts && npm install
```
## Scripts
### analyze.ts — Scan for Detectable Patterns
Finds patterns that AI detectors look for: vocabulary, sentence structure, artifacts.
```bash
# 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
```
---
### transform.ts — Auto-Fix Patterns
Rewrites text to evade detection.
```bash
# 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:**
- Filler phrases: "in order to" → "to"
- AI vocabulary: "utilize" → "use", "leverage" → "use"
- Sentence starters: removes "Additionally,", "Furthermore,"
- Chatbot artifacts: removes entire sentences with "I hope this helps", etc.
- Curly quotes → straight quotes
- Capitalization after removals
---
## Workflow
1. **Scan** to see detection risk:
```bash
npx ts-node scripts/analyze.ts essay.txt
```
2. **Auto-fix** mechanical patterns:
```bash
npx ts-node scripts/transform.ts essay.txt -o essay_clean.txt
```
3. **Manual pass** for flagged AI vocabulary (requires judgment)
4. **Re-scan** to verify:
```bash
npx ts-node scripts/analyze.ts essay_clean.txt
```
---
## Customizing
Edit `scripts/patterns.json`:
- `ai_words` — vocabulary to flag (manual fix needed)
- `puffery` — promotional language to flag
- `replacements` — auto-replace mappings
- `chatbot_artifacts` — phrases that trigger full sentence removal
---
## Batch Processing
```bash
# 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
```