Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

text-detection文本检测

Agent Skill

text-detection 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

17,202

周安装

724

GitHub Stars

1

下载量

6,024
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:text-detection(文本检测)
来源仓库:https://github.com/raghulpasupathi/text-detection
安装命令:
openclaw skills install text-detection
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install text-detection

简介

使用 NLP、GPT 模式检测和正则表达式匹配分析文本,以可配置的准确性和速度识别 AI 生成的内容。

SKILL.md

Text Detection Skills

Skills for analyzing and detecting AI-generated text content.

Required Skills

1. NLP Toolkit

Skill ID: nlp-toolkit Purpose: Advanced natural language processing for text analysis

Features:

  • Perplexity calculation
  • Sentence structure analysis
  • Entity extraction
  • Language detection
  • Burstiness measurement

Installation:

npm install @clawhub/nlp-toolkit

Configuration:

{
  "skill": "nlp-toolkit",
  "settings": {
    "models": ["perplexity", "entity", "language"],
    "cacheResults": true,
    "timeout": 5000
  }
}

Usage:

import { analyzeText } from '@clawhub/nlp-toolkit';

const result = await analyzeText(content);
// {
//   perplexity: 45.2,
//   burstiness: 0.65,
//   entities: ['GPT', 'AI'],
//   language: 'en',
//   complexity: 'medium'
// }

Use Cases:

  • Measure text predictability
  • Detect AI writing patterns
  • Analyze sentence complexity
  • Identify language and entities

Troubleshooting:

  • If slow, enable caching
  • For long text, split into chunks
  • Language detection requires >100 chars

Related Skills: pattern-matcher, gpt-analyzer


2. GPT Pattern Analyzer

Skill ID: gpt-analyzer Purpose: Detect GPT-specific writing patterns

Features:

  • GPT-3.5/4 signature detection
  • Common phrase identification
  • Uniform structure detection
  • Model fingerprinting

Installation:

npm install @clawhub/gpt-analyzer

Configuration:

{
  "skill": "gpt-analyzer",
  "settings": {
    "models": ["gpt-3.5", "gpt-4"],
    "strictMode": false,
    "minConfidence": 0.7
  }
}

Usage:

import { detectGPT } from '@clawhub/gpt-analyzer';

const result = await detectGPT(text);
// {
//   isGPT: true,
//   confidence: 0.85,
//   modelVersion: 'gpt-3.5',
//   patterns: ['uniform-length', 'formal-tone']
// }

Use Cases:

  • Identify GPT-generated articles
  • Detect ChatGPT responses
  • Analyze essays and reports

Troubleshooting:

  • High false positives? Increase minConfidence
  • Missing detections? Disable strictMode
  • Check model version matches expected output

Related Skills: nlp-toolkit, pattern-matcher


3. Pattern Matcher

Skill ID: pattern-matcher Purpose: Fast pattern-based detection

Features:

  • Regex pattern library
  • Sentence structure matching
  • Repetitive phrase detection
  • Format consistency analysis

Installation:

npm install @clawhub/pattern-matcher

Configuration:

{
  "skill": "pattern-matcher",
  "settings": {
    "patterns": [
      "repetitive-starts",
      "uniform-length",
      "formal-markers"
    ],
    "threshold": 3
  }
}

Usage:

import { matchPatterns } from '@clawhub/pattern-matcher';

const result = matchPatterns(text);
// {
//   matched: 5,
//   patterns: ['repetitive-starts', 'uniform-length'],
//   confidence: 0.65
// }

Use Cases:

  • Quick pre-filtering
  • Supplement other methods
  • Real-time detection

Troubleshooting:

  • Too many matches? Increase threshold
  • Add custom patterns for specific use cases
  • Combine with perplexity for better accuracy

Related Skills: nlp-toolkit, gpt-analyzer


Recommended Skills

4. Text Classifier

Skill ID: text-classifier Purpose: ML-based text classification

Features:

  • BERT-based classification
  • Multi-class support (AI vs human vs mixed)
  • Fine-tuned on AI text datasets
  • Fast inference (<200ms)

Installation:

npm install @clawhub/text-classifier

Use Cases:

  • High-accuracy classification
  • Supplement rule-based methods
  • Handle edge cases

Related Skills: nlp-toolkit


5. Content Hashing

Skill ID: hash-toolkit Purpose: Fast content fingerprinting and deduplication

Features:

  • SHA-256, MD5, xxHash
  • Fuzzy matching
  • Content deduplication
  • Similarity scoring

Installation:

npm install @clawhub/hash-toolkit

Use Cases:

  • Cache content analysis results
  • Detect duplicate content
  • Fast similarity checks

Related Skills: All detection skills


Optional Skills

6. Sentiment Analyzer

Skill ID: sentiment-analyzer Purpose: Analyze text sentiment and tone

Features:

  • Positive/negative/neutral classification
  • Emotion detection
  • Tone analysis (formal, casual, technical)

Use Cases:

  • Detect AI's typically neutral tone
  • Identify emotional language (more human)
  • Supplement detection methods

7. Fact Checker Integration

Skill ID: fact-checker Purpose: Verify claims in text

Features:

  • API integration with fact-checking services
  • Claim extraction
  • Source verification

Use Cases:

  • Verify AI-generated facts
  • Cross-reference claims
  • Enhance trust scoring

Skill Combinations

Basic Detection Stack

{
  "skills": [
    "nlp-toolkit",
    "pattern-matcher",
    "hash-toolkit"
  ]
}

Use for: Quick, lightweight detection


Advanced Detection Stack

{
  "skills": [
    "nlp-toolkit",
    "gpt-analyzer",
    "text-classifier",
    "pattern-matcher",
    "hash-toolkit"
  ]
}

Use for: Maximum accuracy, research


Performance-Optimized Stack

{
  "skills": [
    "pattern-matcher",
    "hash-toolkit"
  ]
}

Use for: Real-time, high-volume detection


Skill Configuration Examples

High Accuracy Mode

{
  "nlp-toolkit": {
    "models": ["perplexity", "burstiness", "entity"],
    "minTextLength": 100
  },
  "gpt-analyzer": {
    "strictMode": true,
    "minConfidence": 0.8
  },
  "text-classifier": {
    "threshold": 0.9
  }
}

Fast Mode

{
  "pattern-matcher": {
    "patterns": ["basic"],
    "threshold": 2
  },
  "hash-toolkit": {
    "cacheEnabled": true,
    "algorithm": "xxhash"
  }
}

Performance Metrics

SkillSpeedAccuracyMemory
nlp-toolkitMedium (500ms)High (85%)50MB
gpt-analyzerFast (200ms)High (88%)20MB
pattern-matcherVery Fast (<50ms)Medium (65%)5MB
text-classifierMedium (300ms)Very High (92%)100MB
hash-toolkitVery Fast (<10ms)N/A1MB

Troubleshooting

Low Detection Accuracy

  1. Enable all recommended skills
  2. Use advanced detection stack
  3. Increase minTextLength (>100 chars)
  4. Combine multiple methods and average scores

High False Positives

  1. Increase confidence thresholds
  2. Enable strictMode
  3. Add custom pattern exclusions
  4. Test on known human text

Slow Performance

  1. Use hash-toolkit for caching
  2. Switch to fast mode configuration
  3. Reduce enabled models
  4. Process text in background

*For implementation examples and architecture details, see AGENT.SPEC.md and SKILLS_MANAGEMENT.md.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.64%
按下载量换算4,255

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills