Agent skill

nlp-pipeline-builder

Natural language processing ML pipelines for text classification, NER, sentiment analysis, text generation, and embeddings. Activates for "nlp", "text classification", "sentiment analysis", "named entity recognition", "BERT", "transformers", "text preprocessing", "tokenization", "word embeddings". Builds NLP pipelines with transformers, integrated with SpecWeave increments.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill nlp-pipeline-builder-anton-abyzov-specweave --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/ai-ml/nlp-pipeline-builder-anton-abyzov-specweave/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# NLP Pipeline Builder ## Overview Specialized ML pipelines for natural language processing. Handles text preprocessing, tokenization, transformer models (BERT, RoBERTa, GPT), fine-tuning, and deployment for production NLP systems. ## NLP Tasks Supported ### 1. Text Classification ```python from specweave import NLPPipeline # Binary or multi-class text classification pipeline = NLPPipeline( task="classification", classes=["positive", "negative", "neutral"], increment="0042" ) # Automatically configures: # - Text preprocessing (lowercase, clean) # - Tokenization (BERT tokenizer) # - Model (BERT, RoBERTa, DistilBERT) # - Fine-tuning on your data # - Inference pipeline pipeline.fit(train_texts, train_labels) ``` ### 2. Named Entity Recognition (NER) ```python # Extract entities from text pipeline = NLPPipeline( task="ner", entities=["PERSON", "ORG", "LOC", "DATE"], increment="0042" ) # Returns: [(entity_text, entity_type, start_pos, end_pos), ...] ``` ### 3. Sentiment Analysis ```python # Sentiment classification (specialized) pipeline = NLPPipeline( task="sentiment", increment="0042" ) # Fine-tuned for sentiment (positive/negative/neutral) ``` ### 4. Text Generation ```python # Gener

What's inside
Steps it walks through
  1. Overview
  2. NLP Tasks Supported
  3. 1. Text Classification
  4. 2. Named Entity Recognition (NER)
  5. 3. Sentiment Analysis
  6. 4. Text Generation
  7. Best Practices for NLP
  8. Text Preprocessing
  9. Model Selection
  10. Transfer Learning
  11. Handling Long Text
  12. Integration with SpecWeave
  13. Commands
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the nlp-pipeline-builder skill do?

Natural language processing ML pipelines for text classification, NER, sentiment analysis, text generation, and embeddings. Activates for "nlp", "text classification", "sentiment analysis", "named entity recognition", "BERT", "transformers", "text preprocessing", "tokenization", "word embeddings". Builds NLP pipelines with transformers, integrated with SpecWeave increments.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill nlp-pipeline-builder-anton-abyzov-specweave --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going