# Classify Request

> Use esta skill quando precisar classificar uma solicitação de engenharia de software em debug, refactor, tests ou general, especialmente antes de planejar subtarefas ou escolher o melhor fluxo.

- Skill: `matheus-ndc/classify-request` (Agent Skill)
- Install (CLI): `npx skillmds@latest add matheus-ndc/classify-request`
- Raw SKILL.md: https://api.skillmd.com/api/skills/matheus-ndc/classify-request/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: matheus-ndc (https://skillmd.com/u/matheus-ndc)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/matheus-ndc/classify-request

---


# Objective

Classifique a solicitação do usuário em uma destas categorias:

- `debug`
- `refactor`
- `tests`
- `general`

# Instructions

1. Leia a solicitação inteira.
2. Priorize a intenção do usuário, não palavras isoladas.
3. Se houver mistura, escolha a categoria dominante.
4. Retorne JSON textual no formato:

```json
{ "label": "debug" }
```

# Heuristics

- debug: bug, erro, stacktrace, falha, exceção, comportamento inesperado
- refactor: reorganizar, simplificar, limpar, melhorar design, reduzir duplicação
- tests: pytest, unit test, cobertura, cenário de teste, mock
- general: análise, explicação, exploração, perguntas abertas

