npx skills add smithery/alfredolopez80 --skill task-classifier
smithery/masharratt
task-classifier
Analyzes task descriptions and classifies them into categories for agent selection
Installation
npx skills add smithery/masharratt --skill task-classifier
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Helps users discover and install agent skills when they ask questions like "how do I do X", "fi…
3.3M installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsPrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Te…
568.3K installsAlso in this package
Other skills from smithery/masharratt · top by installs.
npx skills add smithery/masharratt
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,549 B -
docs
SUMMARY.md105 B
History
- First recorded snapshot · 0 installs
SKILL.md
Task Classifier Skill
Analyzes task descriptions using keyword matching to suggest appropriate agent specializations.
Usage
./.claude/skills/task-classifier/classify-task.sh "Task description"
Classification Categories
| Category | Keywords | Use Case |
|---|---|---|
| frontend | ui, ux, react, component, css, styling, layout, responsive, interface | UI/UX development |
| backend | api, endpoint, server, database, rest, graphql, service, authentication | Server-side development |
| devops | docker, kubernetes, ci/cd, deployment, infrastructure, container, pipeline | Infrastructure work |
| testing | test, qa, validation, coverage, integration, unit, e2e | Quality assurance |
| security | security, auth, encryption, vulnerability, audit, penetration | Security work |
| data | database, sql, migration, schema, data, model, entity | Data modeling |
| performance | performance, optimization, speed, cache, memory, cpu | Performance tuning |
| general | (default) | General development |
Output Format
Comma-separated list of classifications:
$ classify-task.sh "Create a React dashboard with API integration"
frontend,backend,testing
Integration with Agent Selector
This skill is typically used with cfn-agent-selector to determine which agents to spawn:
CLASSIFICATION=$(classify-task.sh "$TASK_DESCRIPTION")
AGENTS=$(select-agents.sh --classification "$CLASSIFICATION" --mode standard)
Examples
# Frontend task
$ classify-task.sh "Build responsive navigation component"
frontend
# Full-stack task
$ classify-task.sh "Create REST API with React admin panel"
frontend,backend
# DevOps task
$ classify-task.sh "Setup CI/CD pipeline with Docker"
devops
# Security audit
$ classify-task.sh "Perform security audit and fix vulnerabilities"
security
Implementation Details
- Uses
grep -Efor case-insensitive pattern matching - Returns multiple classifications if multiple keywords match
- Falls back to "general" if no specific keywords detected
- Stateless execution (no persistent state)
- Exit code 0 on success, 1 on error
Used By
cfn-v3-coordinator- For automatic agent selectioncfn-agent-selector- As input for agent mapping- CFN Loop orchestration - For task-specific agent spawning