بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف 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 childrenThis 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.