smithery/alfredolopez80

task-classifier

Classifies task complexity (1-10) for model and agent routing

Installation

$ npx skills add smithery/alfredolopez80 --skill task-classifier

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/alfredolopez80.

npx skills add smithery/alfredolopez80

Browse all from smithery/alfredolopez80

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Skill metadata

Parsed from SKILL.md frontmatter.

Version3.1.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,700 B
  • docs SUMMARY.md 230 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Task Classifier

Classifies task complexity (1-10) to choose the right agents and the right amount of process. It never chooses a model: the model is whatever the session runs, and subagents inherit it.

Complexity Scale

Level Description Agent
1-2 Trivial (typos, renames, single-line fixes) Direct (no team)
3-4 Simple (single function, known pattern) ralph-coder
5-6 Moderate (multi-file, some unknowns) ralph-coder + ralph-tester
7-8 Complex (architecture, security-sensitive) ralph-coder + ralph-reviewer + ralph-security
9-10 Critical (system redesign, multi-agent coordination) Full team (6 agents)

Classification Criteria

Complexity 1-2 (Trivial)

  • Single file change
  • Known pattern with no unknowns
  • No tests needed
  • No security implications

Complexity 3-4 (Simple)

  • 1-2 files to modify
  • Standard patterns apply
  • Tests recommended but not required
  • No architectural decisions

Complexity 5-6 (Moderate)

  • 3+ files to modify
  • Some unknown patterns
  • Tests required
  • Minor architectural decisions
  • Frontend OR backend (not both)

Complexity 7-8 (Complex)

  • 5+ files across multiple domains
  • Significant unknowns
  • Security-sensitive code
  • Architectural decisions required
  • Frontend AND backend changes

Complexity 9-10 (Critical)

  • System-wide changes
  • Multi-agent coordination needed
  • Security architecture decisions
  • Breaking changes
  • Performance-critical paths

Agent Routing

Complexity Required Agents Optional
1-2 None (direct execution) -
3-4 ralph-coder ralph-tester
5-6 ralph-coder + ralph-tester ralph-reviewer
7-8 ralph-coder + ralph-tester + ralph-security ralph-frontend
9-10 All 6 agents (coder, reviewer, tester, researcher, frontend, security) -

Execution Mode

Complexity Plan Mode Agent Teams Aristotle
1-3 No No Quick
4-6 Recommended Yes Quick
7-10 Mandatory Mandatory Full 5-phase

Usage

Invoke this skill to classify a task before execution:

/task-classifier "Add user authentication to the API"

The skill will output:

  • Complexity level (1-10)
  • Recommended model
  • Required agents
  • Execution mode

Integration

This skill integrates with:

  • /orchestrator - Uses classification for routing
  • Agent Teams - Spawns appropriate teammates
  • Model routing - Selects correct model per complexity