Agent skill
spacy
spaCy NLP library with pipelines. Use for text processing.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/spacy
SKILL.md
spaCy
spaCy is "Industrial Strength" NLP. Unlike NLTK (academic), spaCy focuses on providing the best single algorithm for a task. v3.8 supports Python 3.13.
When to Use
- NER (Named Entity Recognition): Extracting person names, dates, orgs.
- Parsing: Dependency parsing to understand sentence structure.
- Speed: Cython-optimized pipelines.
Core Concepts
Pipeline
Tokenizer -> Tagger -> Parser -> NER.
Doc / Token / Span
The core data structures. Efficient memory usage.
Prodigy
The annotation tool (paid) from the same creators, tightly integrated.
Best Practices (2025)
Do:
- Use Transformer pipelines:
en_core_web_trf(Roberta-based) for high accuracy. - Use
nlp.pipe(): For batch processing huge texts.
Don't:
- Don't use for GenAI: spaCy is for structure extraction, not text generation (LLMs).
References
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?