{
  "schemaVersion": "1.0",
  "item": {
    "slug": "undetectable-ai",
    "name": "Undetectable AI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/artur-zhdan/undetectable-ai",
    "canonicalUrl": "https://clawhub.ai/artur-zhdan/undetectable-ai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/undetectable-ai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=undetectable-ai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package-lock.json",
      "package.json",
      "SKILL.md",
      "scripts/analyze.ts",
      "scripts/transform.ts",
      "scripts/patterns.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/undetectable-ai"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/undetectable-ai",
    "agentPageUrl": "https://openagent3.xyz/skills/undetectable-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/undetectable-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/undetectable-ai/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Undetectable AI",
        "body": "TypeScript CLI tools for bypassing AI content detectors by removing telltale patterns."
      },
      {
        "title": "Setup",
        "body": "cd scripts && npm install"
      },
      {
        "title": "analyze.ts — Scan for Detectable Patterns",
        "body": "Finds patterns that AI detectors look for: vocabulary, sentence structure, artifacts.\n\n# Analyze a file\nnpx ts-node scripts/analyze.ts input.txt\n\n# From stdin\necho \"This serves as a testament\" | npx ts-node scripts/analyze.ts\n\n# JSON output\nnpx ts-node scripts/analyze.ts input.txt --json\n\nOutput:\n\n==================================================\nAI DETECTION SCAN - 5 issues found\n==================================================\n\nAI VOCABULARY:\n  • testament: 1x\n  • crucial: 2x\n\nAUTO-FIXABLE:\n  • \"serves as\" → \"is\": 1x"
      },
      {
        "title": "transform.ts — Auto-Fix Patterns",
        "body": "Rewrites text to evade detection.\n\n# Transform and print\nnpx ts-node scripts/transform.ts input.txt\n\n# Write to file\nnpx ts-node scripts/transform.ts input.txt -o output.txt\n\n# Fix em dashes too\nnpx ts-node scripts/transform.ts input.txt --fix-dashes\n\n# Quiet mode\nnpx ts-node scripts/transform.ts input.txt -q\n\nWhat it fixes:\n\nFiller phrases: \"in order to\" → \"to\"\nAI vocabulary: \"utilize\" → \"use\", \"leverage\" → \"use\"\nSentence starters: removes \"Additionally,\", \"Furthermore,\"\nChatbot artifacts: removes entire sentences with \"I hope this helps\", etc.\nCurly quotes → straight quotes\nCapitalization after removals"
      },
      {
        "title": "Workflow",
        "body": "Scan to see detection risk:\nnpx ts-node scripts/analyze.ts essay.txt\n\n\n\nAuto-fix mechanical patterns:\nnpx ts-node scripts/transform.ts essay.txt -o essay_clean.txt\n\n\n\nManual pass for flagged AI vocabulary (requires judgment)\n\n\nRe-scan to verify:\nnpx ts-node scripts/analyze.ts essay_clean.txt"
      },
      {
        "title": "Customizing",
        "body": "Edit scripts/patterns.json:\n\nai_words — vocabulary to flag (manual fix needed)\npuffery — promotional language to flag\nreplacements — auto-replace mappings\nchatbot_artifacts — phrases that trigger full sentence removal"
      },
      {
        "title": "Batch Processing",
        "body": "# Scan all docs\nfor f in *.txt; do\n  echo \"=== $f ===\"\n  npx ts-node scripts/analyze.ts \"$f\"\ndone\n\n# Transform all\nfor f in *.md; do\n  npx ts-node scripts/transform.ts \"$f\" -o \"${f%.md}_clean.md\" -q\ndone"
      }
    ],
    "body": "Undetectable AI\n\nTypeScript CLI tools for bypassing AI content detectors by removing telltale patterns.\n\nSetup\ncd scripts && npm install\n\nScripts\nanalyze.ts — Scan for Detectable Patterns\n\nFinds patterns that AI detectors look for: vocabulary, sentence structure, artifacts.\n\n# Analyze a file\nnpx ts-node scripts/analyze.ts input.txt\n\n# From stdin\necho \"This serves as a testament\" | npx ts-node scripts/analyze.ts\n\n# JSON output\nnpx ts-node scripts/analyze.ts input.txt --json\n\n\nOutput:\n\n==================================================\nAI DETECTION SCAN - 5 issues found\n==================================================\n\nAI VOCABULARY:\n  • testament: 1x\n  • crucial: 2x\n\nAUTO-FIXABLE:\n  • \"serves as\" → \"is\": 1x\n\ntransform.ts — Auto-Fix Patterns\n\nRewrites text to evade detection.\n\n# Transform and print\nnpx ts-node scripts/transform.ts input.txt\n\n# Write to file\nnpx ts-node scripts/transform.ts input.txt -o output.txt\n\n# Fix em dashes too\nnpx ts-node scripts/transform.ts input.txt --fix-dashes\n\n# Quiet mode\nnpx ts-node scripts/transform.ts input.txt -q\n\n\nWhat it fixes:\n\nFiller phrases: \"in order to\" → \"to\"\nAI vocabulary: \"utilize\" → \"use\", \"leverage\" → \"use\"\nSentence starters: removes \"Additionally,\", \"Furthermore,\"\nChatbot artifacts: removes entire sentences with \"I hope this helps\", etc.\nCurly quotes → straight quotes\nCapitalization after removals\nWorkflow\n\nScan to see detection risk:\n\nnpx ts-node scripts/analyze.ts essay.txt\n\n\nAuto-fix mechanical patterns:\n\nnpx ts-node scripts/transform.ts essay.txt -o essay_clean.txt\n\n\nManual pass for flagged AI vocabulary (requires judgment)\n\nRe-scan to verify:\n\nnpx ts-node scripts/analyze.ts essay_clean.txt\n\nCustomizing\n\nEdit scripts/patterns.json:\n\nai_words — vocabulary to flag (manual fix needed)\npuffery — promotional language to flag\nreplacements — auto-replace mappings\nchatbot_artifacts — phrases that trigger full sentence removal\nBatch Processing\n# Scan all docs\nfor f in *.txt; do\n  echo \"=== $f ===\"\n  npx ts-node scripts/analyze.ts \"$f\"\ndone\n\n# Transform all\nfor f in *.md; do\n  npx ts-node scripts/transform.ts \"$f\" -o \"${f%.md}_clean.md\" -q\ndone"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/artur-zhdan/undetectable-ai",
    "publisherUrl": "https://clawhub.ai/artur-zhdan/undetectable-ai",
    "owner": "artur-zhdan",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/undetectable-ai",
    "downloadUrl": "https://openagent3.xyz/downloads/undetectable-ai",
    "agentUrl": "https://openagent3.xyz/skills/undetectable-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/undetectable-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/undetectable-ai/agent.md"
  }
}