skills/classifier/SKILL.md
# Text Classification with Classifier Use when: User asks to classify text, detect spam, analyze sentiment, detect emotions, or use pre-trained ML models. ## Pre-trained Models Run `classifier models` to see all available models. Common ones: | Model | Command | Use Case | |-------|---------|----------| | `sms-spam-filter` | `classifier -r sms-spam-filter "text"` | Spam detection | | `imdb-sentiment` | `classifier -r imdb-sentiment "text"` | Sentiment analysis | | `emotion-detection` | `clas
npx skillsauth add cardmagic/classifier skills/classifierInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use when: User asks to classify text, detect spam, analyze sentiment, detect emotions, or use pre-trained ML models.
Run classifier models to see all available models. Common ones:
| Model | Command | Use Case |
|-------|---------|----------|
| sms-spam-filter | classifier -r sms-spam-filter "text" | Spam detection |
| imdb-sentiment | classifier -r imdb-sentiment "text" | Sentiment analysis |
| emotion-detection | classifier -r emotion-detection "text" | Emotion classification |
# Classify with a pre-trained model
classifier -r <model-name> "text to classify"
# Example: detect spam
classifier -r sms-spam-filter "You won a free iPhone! Click here now!"
# Example: sentiment analysis
classifier -r imdb-sentiment "This movie was absolutely terrible"
# Example: emotion detection
classifier -r emotion-detection "I am so happy today"
# Train from text
classifier train positive "Great product, love it"
classifier train negative "Terrible quality, waste of money"
# Train from files
classifier train positive reviews/good/*.txt
classifier train negative reviews/bad/*.txt
# Classify after training
classifier "This product exceeded my expectations"
# List all available models
classifier models
# Show model details
classifier info <model-name>
# Save trained model
classifier save my-model.json
# Load saved model
classifier load my-model.json
classifier models to discover available pre-trained modelsdata-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.
data-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.
data-ai
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.
data-ai
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.