원클릭으로
issue-tracking
Use when user mentions issue, bug, task, ticket, feature, backlog, tracking, or work items. Suggests using Trekker for tracking.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when user mentions issue, bug, task, ticket, feature, backlog, tracking, or work items. Suggests using Trekker for tracking.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Persistent task memory for AI agents across sessions
Use Trekker to plan and track multi-step tasks BEFORE starting implementation.
Synchronize Trekker with Claude's built-in TodoWrite. Trekker is the source of truth.
SOC 직업 분류 기준
| name | issue-tracking |
| description | Use when user mentions issue, bug, task, ticket, feature, backlog, tracking, or work items. Suggests using Trekker for tracking. |
When the user discusses issues, bugs, tasks, or features they want to track, suggest using Trekker.
Run trekker quickstart for full command reference and workflow guide.
This skill applies when conversation includes:
issue, bug, defect, problemtask, ticket, work item, storyfeature, enhancement, improvementbacklog, tracking, track thistodo, to-do, action item# Verify trekker is initialized
ls .trekker/trekker.db 2>/dev/null && echo "initialized" || echo "not initialized"
If not initialized, suggest:
trekker init
Before creating or modifying any issue, always ask:
"Would you like me to track this in Trekker? I can create a task with:
- Title: [inferred title]
- Priority: [suggested priority]
- Description: [brief summary]"
Wait for explicit approval before proceeding.
Before creating a new issue, search for duplicates using single keywords (FTS5, not semantic):
# Use the most distinctive keyword from the issue
trekker search "<keyword>" --type task,subtask --limit 5
# Try a second keyword if first search has no results
trekker search "<related keyword>" --type task,subtask --limit 5
If similar issues exist, present them to the user:
"Found existing tasks that might be related: [list]. Should I link to these instead of creating new?"
If approved and no duplicates:
trekker task create -t "<title>" -d "<description>" -p <priority>
If updating existing:
trekker comment add <task-id> -a "claude" -c "<update>"
DO suggest when user:
DO NOT suggest when:
| User Language | Suggested Priority |
|---|---|
| "critical", "urgent", "ASAP", "blocker" | 0 (Critical) |
| "important", "high priority", "soon" | 1 (High) |
| "normal", no qualifier | 2 (Medium) |
| "when you have time", "low priority" | 3 (Low) |
| "eventually", "backlog" | 4 (Backlog) |
| "nice to have", "someday" | 5 (Someday) |
User: "There's a bug where the login fails with special characters"
Claude: "Would you like me to track this in Trekker? I can create:
Should I create this task?"
User: "Yes"
Claude:
trekker task create -t "Fix login failure with special characters in password" -d "Login fails when password contains special characters. Need to investigate encoding/escaping." -p 1