Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Analyzes task descriptions and classifies them into categories for agent selection
.claude/skills/majiayu000-task-classifier/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | 240% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 206% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 5% | 0% |
| case-16 | ✗→✓ | ▲ Improved | 97% | 0% |
| case-20 | ✗→✓ | ▲ Improved | 10% | 0% |
Analyzes task descriptions using keyword matching to suggest appropriate agent specializations.
bash./.claude/skills/task-classifier/classify-task.sh "Task description"
| 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 |
Comma-separated list of classifications:
bash$ classify-task.sh "Create a React dashboard with API integration" frontend,backend,testing
This skill is typically used with cfn-agent-selector to determine which agents to spawn:
bashCLASSIFICATION=$(classify-task.sh "$TASK_DESCRIPTION") AGENTS=$(select-agents.sh --classification "$CLASSIFICATION" --mode standard)
bash# 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
grep -E for case-insensitive pattern matchingcfn-v3-coordinator - For automatic agent selectioncfn-agent-selector - As input for agent mappingOther measured skills in the registry, with their headline benchmark lift.