원클릭으로
discover-expand
Expand a ticket by linking or creating children for subsystems found in findings
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Expand a ticket by linking or creating children for subsystems found in findings
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
This skill should be used when the user asks to "implement X", "add X feature", "create X", "refactor X", "fix X bug", "develop this story", "work on story", or needs guidance on development work - both ad-hoc tasks and story-based workflows with style guide compliance.
Initialize project discovery — scan repo, gather intent, create initial tickets
Loop through open discovery tickets until queue is empty
Scan repository for structure and code ownership signals
Intent-driven discovery — recall existing knowledge or create new investigation tickets
Extract learnings from Claude Code session history.
SOC 직업 분류 기준
| name | discover-expand |
| description | Expand a ticket by linking or creating children for subsystems found in findings |
| user-invocable | true |
| allowed-tools | ["Bash","Read","Write"] |
| argument-hint | <ticket-id> |
Analyze a ticket's findings, extract candidates, and either link to existing tickets or create new children.
DISCOVER="${CLAUDE_PLUGIN_ROOT}/scripts/discover.sh"
bash "$DISCOVER" ticket get <ticket-id>
If not found, report error and stop.
Read the ticket's ## Findings section. List candidates for child tickets:
Be specific. "Authentication" is too broad. "JWT validation in auth middleware" is a candidate.
bash "$DISCOVER" ticket children <ticket-id>
Remove candidates already covered by children.
bash "$DISCOVER" ticket list
Keep this list for matching.
Score with recall:
bash "$DISCOVER" ticket recall "<candidate topic>"
Decide — prefer linking over creating:
Match found (same scope, or high relevance, or similar title):
Link to existing ticket — this is the preferred outcome:
<ticket-id> to its parents: frontmatter array[[t-0002-nvme-of-target-zfs-of]] (without .md)Linking builds graph edges without duplication. Always prefer linking when a relevant ticket exists.
No match — only then create:
bash "$DISCOVER" ticket new --title "<candidate>" --intention "<what to investigate>" --parent <ticket-id>
Note: "Created t-XXXX"
List all actions taken:
open/discover-loop to process new children