# Moonshot Classify Task

> Classifies a user request into task types (feature, modification, bugfix, refactor) and extracts intent keywords. Use at the start of PM analysis.

- Skill: `majiayu000/moonshot-classify-task` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/moonshot-classify-task`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/moonshot-classify-task/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/moonshot-classify-task

---


# PM Task Classification

## Inputs
- `analysisContext.request.userMessage`

## Procedure
1. Identify intent keywords from the user message.
2. Select one taskType: `feature | modification | bugfix | refactor`.
3. Set confidence: `high | medium | low`.

## Heuristics
- feature: "new", "add", "implement", "create", "build"
- modification: "change", "modify", "improve", "adjust", "remove"
- bugfix: "bug", "error", "broken", "fails"
- refactor: "refactor", "clean up", "restructure", "remove duplication"

## Technology Stack Detection

React/Next.js 키워드 감지 시 시그널 설정:
- Keywords: "react", "next", "next.js", "nextjs", "jsx", "tsx", "useState", "useEffect"
- Output: `signals.reactProject: true`

## Output (patch)
```yaml
request.taskType: feature
request.keywords:
  - implement
  - react
signals:
  reactProject: true  # Set when React/Next.js keywords detected
notes:
  - "taskType=feature, confidence=high"
  - "tech-stack: react/next.js detected"  # Add when reactProject=true
```

