PM Task Classification
Visibility
This is an internal analysis micro-skill.
Prefer invoking moonshot-orchestrator or moonshot-phase-runner, not this skill directly.
Inputs
analysisContext.request.userMessage
context.md (path: analysisContext.artifacts.contextDocPath, if exists)
Procedure
- Identify intent keywords from the user message.
- Select one taskType:
feature | modification | bugfix | refactor.
- Detect whether the request is still in product-definition mode.
- 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"
Product Definition Detection
Set signals.productDefinitionRequest: true when the request is primarily about:
- idea shaping
- product intent
- PRD
- solution modeling
- architecture definition before implementation
- execution planning before code changes
Example keywords:
- "idea", "intent", "prd", "solution", "spec", "scope", "out of scope", "plan", "task slice"
Technology Stack Detection
React/Next.js 키워드 감지 시 시그널 설정:
- Keywords: "react", "next", "next.js", "nextjs", "jsx", "tsx", "useState", "useEffect"
- Output:
signals.reactProject: true
Output (patch)
request.taskType: feature
request.keywords:
- implement
- react
signals:
productDefinitionRequest: false
reactProject: true # Set when React/Next.js keywords detected
notes:
- "taskType=feature, confidence=high"
- "product-definition-request=false"
- "tech-stack: react/next.js detected" # Add when reactProject=true
1---2name: moonshot-classify-task3description: Classifies a user request into task types (feature, modification, bugfix, refactor) and extracts intent keywords. Use at the start of PM analysis.4---56# PM Task Classification78## Visibility910This is an internal analysis micro-skill.11Prefer invoking `moonshot-orchestrator` or `moonshot-phase-runner`, not this skill directly.1213## Inputs14- `analysisContext.request.userMessage`15- `context.md` (path: `analysisContext.artifacts.contextDocPath`, if exists)1617## Procedure181. Identify intent keywords from the user message.192. Select one taskType: `feature | modification | bugfix | refactor`.203. Detect whether the request is still in product-definition mode.214. Set confidence: `high | medium | low`.2223## Heuristics24- feature: "new", "add", "implement", "create", "build"25- modification: "change", "modify", "improve", "adjust", "remove"26- bugfix: "bug", "error", "broken", "fails"27- refactor: "refactor", "clean up", "restructure", "remove duplication"2829## Product Definition Detection3031Set `signals.productDefinitionRequest: true` when the request is primarily about:32- idea shaping33- product intent34- PRD35- solution modeling36- architecture definition before implementation37- execution planning before code changes3839Example keywords:40- "idea", "intent", "prd", "solution", "spec", "scope", "out of scope", "plan", "task slice"4142## Technology Stack Detection4344React/Next.js 키워드 감지 시 시그널 설정:45- Keywords: "react", "next", "next.js", "nextjs", "jsx", "tsx", "useState", "useEffect"46- Output: `signals.reactProject: true`4748## Output (patch)49```yaml50request.taskType: feature51request.keywords:52 - implement53 - react54signals:55 productDefinitionRequest: false56 reactProject: true # Set when React/Next.js keywords detected57notes:58 - "taskType=feature, confidence=high"59 - "product-definition-request=false"60 - "tech-stack: react/next.js detected" # Add when reactProject=true61```