Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计未展示

nlp-pipeline-builderNLP 管道构建器

Agent Skill

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

总安装

24,746

周安装

684

GitHub Stars

公开资料未说明

下载量

4,884
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:nlp-pipeline-builder(NLP 管道构建器)
来源仓库:https://github.com/eddiebe147/claude-settings
仓库路径:skills/nlp-pipeline-builder
安装命令:
npx skills add eddiebe147/claude-settings --skill "nlp-pipeline-builder"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add eddiebe147/claude-settings --skill "nlp-pipeline-builder"

简介

nlp-pipeline-builder 用于发现并安装 AI 代理的技能模块。

  • 适合在 Codex、Claude、Cursor 或 Gemini CLI 中扩展 Agent 能力。
  • 支持通过中心辐射式结构组合多个技能,提升任务处理效率。
  • 安装命令:npx skills add eddiebe147/claude-settings --skill "nlp-pipeline-builder"。
  • 需确认 GitHub 访问权限及子进程执行安全策略,防止未授权操作。

SKILL.md

name
NLP Pipeline Builder
slug
nlp-pipeline-builder
description
Build natural language processing pipelines for text analysis and understanding
category
ai-ml
complexity
intermediate
version
1.0.0
author
ID8Labs
triggers
tags

NLP Pipeline Builder

The NLP Pipeline Builder skill guides you through designing and implementing natural language processing pipelines that transform raw text into structured, actionable insights. From preprocessing to advanced analysis, this skill covers the full spectrum of NLP tasks and helps you choose the right approach for your specific needs.

Modern NLP offers multiple paradigms: rule-based approaches, classical ML, and deep learning/LLMs. This skill helps you navigate these options, building pipelines that balance accuracy, latency, cost, and maintainability. Whether you need real-time processing at scale or deep analysis of specific documents, this skill ensures your pipeline is fit for purpose.

From tokenization to semantic analysis, from single documents to streaming text, this skill helps you build robust NLP systems that handle real-world text with all its messiness and complexity.

Core Workflows

Workflow 1: Design NLP Pipeline Architecture

  1. Define requirements:

- Input: What text? What format? What volume? - Output: What information to extract? - Constraints: Latency, accuracy, cost

  1. Select pipeline stages:
   Standard NLP Pipeline:
   Text → Preprocessing → Tokenization → Feature Extraction → Task Model → Output

   Example stages:
   - Preprocessing: cleaning, normalization
   - Linguistic: tokenization, POS, NER, parsing
   - Semantic: embeddings, topic modeling
   - Task-specific: classification, extraction, generation
  1. Choose approach per stage:
StageClassicalDeep LearningLLM
TokenizationRegex, NLTKSentencePieceModel-specific
NERCRF, rulesBiLSTM-CRF, BERTPrompt-based
ClassificationSVM, NBCNN, BERTZero/few-shot
ExtractionRegex, patternsSeq2SeqPrompt-based
  1. Design error handling and fallbacks
  2. Document architecture

Workflow 2: Implement Text Preprocessing

  1. Clean text:
   def clean_text(text):
       # Normalize unicode
       text = unicodedata.normalize("NFKC", text)

       # Remove or replace problematic characters
       text = remove_control_characters(text)

       # Normalize whitespace
       text = " ".join(text.split())

       # Optionally: lowercase, remove punctuation, etc.
       # (depends on downstream tasks)

       return text
  1. Segment into units:

- Sentence splitting - Paragraph detection - Document structuring

  1. Tokenize appropriately:

- Word tokenization for analysis - Subword tokenization for models - Language-specific considerations

  1. Normalize for consistency:

- Case normalization - Lemmatization/stemming - Handling contractions, abbreviations

Workflow 3: Build Production NLP System

  1. Set up processing infrastructure:
   class NLPPipeline:
       def __init__(self, config):
           self.preprocessor = TextPreprocessor(config)
           self.tokenizer = load_tokenizer(config.tokenizer)
           self.models = {
               "ner": load_model(config.ner_model),
               "sentiment": load_model(config.sentiment_model),
               "classification": load_model(config.classifier)
           }
           self.cache = ResultCache() if config.use_cache else None

       def process(self, text, tasks=None):
           tasks = tasks or ["all"]

           # Preprocessing
           cleaned = self.preprocessor.clean(text)
           tokens = self.tokenizer.tokenize(cleaned)

           # Run requested analyses
           results = {"text": text, "tokens": tokens}
           for task, model in self.models.items():
               if task in tasks or "all" in tasks:
                   results[task] = model.predict(tokens)

           return results
  1. Implement batching for throughput
  2. Add caching for repeated inputs
  3. Set up monitoring and logging
  4. Test with diverse inputs

Quick Reference

ActionCommand/Trigger
Design pipeline"Design NLP pipeline for [task]"
Preprocess text"How to preprocess [text type]"
Choose tokenizer"Best tokenizer for [use case]"
Extract entities"Extract entities from text"
Classify text"Build text classifier"
Scale pipeline"Scale NLP to [volume]"

Best Practices

  • Understand Your Text: Different text requires different treatment

- Social media: informal, abbreviations, emoji - Legal/medical: domain terms, structure - Multilingual: language detection, appropriate tools

  • Preserve What Matters: Preprocessing shouldn't destroy information

- Don't lowercase if case is meaningful - Keep punctuation if it affects meaning - Document all transformations

  • Handle Encoding Correctly: Unicode is tricky

- Always normalize (NFKC recommended) - Handle encoding errors gracefully - Test with diverse scripts and characters

  • Batch for Efficiency: Model inference is expensive

- Batch inputs for GPU utilization - Balance batch size vs latency - Use async processing where appropriate

  • Fail Gracefully: Text is messy and unpredictable

- Handle empty, too-long, or malformed inputs - Provide sensible defaults for edge cases - Log failures for analysis

  • Version Your Pipeline: Reproducibility matters

- Pin model versions - Document preprocessing steps - Track configuration changes

Advanced Techniques

Multi-Stage Extraction Pipeline

Chain extractors for complex information:

class ExtractionPipeline:
    def __init__(self):
        self.ner = NERModel()
        self.relation = RelationExtractor()
        self.coreference = CoreferenceResolver()

    def extract(self, text):
        # Stage 1: Named Entity Recognition
        entities = self.ner.extract(text)

        # Stage 2: Coreference Resolution
        resolved = self.coreference.resolve(text, entities)

        # Stage 3: Relation Extraction
        relations = self.relation.extract(text, resolved)

        # Stage 4: Build knowledge graph
        graph = build_graph(resolved, relations)

        return {
            "entities": resolved,
            "relations": relations,
            "graph": graph
        }

Hybrid Classical + LLM Pipeline

Use LLMs where they add value, classical where they don't:

class HybridPipeline:
    def process(self, text):
        # Fast classical preprocessing
        cleaned = classical_clean(text)
        sentences = classical_sentence_split(cleaned)

        # Classical NER (fast, predictable)
        entities = classical_ner(sentences)

        # LLM for complex tasks (slower, more capable)
        sentiment = llm_sentiment(text)  # Nuanced sentiment
        summary = llm_summarize(text)    # Abstractive summary

        return {
            "sentences": sentences,
            "entities": entities,  # Classical
            "sentiment": sentiment,  # LLM
            "summary": summary  # LLM
        }

Streaming Text Processing

Handle continuous text streams:

class StreamingNLP:
    def __init__(self, batch_size=32, timeout_ms=100):
        self.batch_size = batch_size
        self.timeout_ms = timeout_ms
        self.buffer = []
        self.last_process_time = time.time()

    async def add(self, text):
        self.buffer.append(text)

        # Process if batch full or timeout
        if len(self.buffer) >= self.batch_size:
            return await self.flush()
        elif (time.time() - self.last_process_time) * 1000 > self.timeout_ms:
            return await self.flush()

    async def flush(self):
        if not self.buffer:
            return []

        batch = self.buffer
        self.buffer = []
        self.last_process_time = time.time()

        # Batch process
        results = await self.pipeline.process_batch(batch)
        return results

Language Detection and Routing

Handle multilingual text:

class MultilingualPipeline:
    def __init__(self):
        self.detector = LanguageDetector()
        self.pipelines = {
            "en": EnglishPipeline(),
            "es": SpanishPipeline(),
            "zh": ChinesePipeline(),
            "default": UniversalPipeline()
        }

    def process(self, text):
        lang = self.detector.detect(text)
        pipeline = self.pipelines.get(lang, self.pipelines["default"])

        return {
            "language": lang,
            "results": pipeline.process(text)
        }

Common Pitfalls to Avoid

  • Over-preprocessing and destroying meaningful information
  • Ignoring Unicode normalization and encoding issues
  • Using word tokenizers for languages without spaces
  • Not handling edge cases (empty text, very long text)
  • Assuming English-only when users may send other languages
  • Running expensive models on every input when caching would help
  • Not batching model inference for throughput
  • Ignoring the latency impact of pipeline stages

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

30.35%
按下载量换算1,482

OpenCode

25.79%
按下载量换算1,260

Gemini CLI

15.86%
按下载量换算775

Antigravity

13.85%
按下载量换算676

Cursor

7.75%
按下载量换算379

windsurf

3.15%
按下载量换算154

安全审计

暂无安全审计结果可展示。

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills