Diagnoses and fixes common spaCy errors
/plugin marketplace add SpillwaveSolutions/spacy-nlp-agentic-skill/plugin install spacy-nlp@spacy-nlp-agentic-skillAutomatically detects and resolves spaCy errors.
python -m spacy download en_core_web_sm
Or use direct import:
import en_core_web_sm
nlp = en_core_web_sm.load()
# Disable unused components
nlp = spacy.load("en_core_web_sm", exclude=["parser"])
# Use smaller batches
for doc in nlp.pipe(texts, batch_size=10):
process(doc)
spacy.require_cpu() # Fall back to CPU
nlp = spacy.load("en_core_web_trf")
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences