원클릭으로
extract-issues
Extract potential issues from note content with AI confidence tagging
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Extract potential issues from note content with AI confidence tagging
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a sprint retrospective with KPI dashboard and action decision records
Generate a risk register PM block with probability, impact, and mitigation strategies
Generate downloadable Markdown or HTML files (reports, summaries, styled docs)
Conversational skill creator — build, test, and refine skills in chat
Generate a lightweight Architecture Decision Record as a Decision block
Creates a structured note from a homepage chat conversation
| name | extract-issues |
| description | Extract potential issues from note content with AI confidence tagging |
| feature_module | issues |
Extract actionable issues from note canvas content using semantic analysis and confidence scoring.
Use this skill when:
/extract-issues)Example:
User writes in note:
"We need to implement JWT authentication and add rate limiting
to the API. Also fix the login bug where users can't log in with email."
AI extracts:
- Issue 1: "Implement JWT authentication" (RECOMMENDED)
- Issue 2: "Add API rate limiting" (RECOMMENDED)
- Issue 3: "Fix email login bug" (RECOMMENDED - explicit bug mention)
Analyze Note Content
Extract Candidate Issues
Score Confidence
Return Structured Output
{
"issues": [
{
"name": "Implement JWT authentication",
"description": "Add JWT-based authentication with refresh tokens to replace session cookies",
"confidence": "RECOMMENDED",
"source_block_id": "block-abc123",
"labels": ["backend", "security"],
"priority": "high",
"rationale": "Clear implementation task with specific requirements (JWT, refresh tokens)"
},
{
"name": "Add API rate limiting",
"description": "Implement rate limiting middleware to prevent API abuse",
"confidence": "RECOMMENDED",
"source_block_id": "block-def456",
"labels": ["backend", "infrastructure"],
"priority": "medium",
"rationale": "Explicit action item, standard security practice"
},
{
"name": "Fix email login bug",
"description": "Users cannot log in using email addresses, investigate validation logic",
"confidence": "RECOMMENDED",
"source_block_id": "block-ghi789",
"labels": ["backend", "bug"],
"priority": "critical",
"rationale": "Explicit bug mention, blocks user access"
}
],
"summary": "Extracted 3 issues from note content",
"total_blocks_analyzed": 8
}
Input:
# New Dashboard Ideas
We should add a real-time activity feed showing recent updates.
Users need better filtering - by project, priority, and assignee.
Dark mode would be nice to have eventually.
Output:
{
"issues": [
{
"name": "Add real-time activity feed",
"confidence": "RECOMMENDED",
"labels": ["frontend", "feature"],
"priority": "medium",
"rationale": "Clear feature request with specific requirement (real-time updates)"
},
{
"name": "Implement advanced filtering",
"confidence": "RECOMMENDED",
"labels": ["frontend", "feature"],
"priority": "high",
"rationale": "User need explicitly stated with specific filters listed"
},
{
"name": "Add dark mode theme",
"confidence": "DEFAULT",
"labels": ["frontend", "feature"],
"priority": "low",
"rationale": "Mentioned as 'nice to have', lower priority"
}
]
}
Input:
There's a critical bug in the login flow - users can't log in with email.
Investigation shows the regex validation is too strict.
Output:
{
"issues": [
{
"name": "Fix email login validation bug",
"confidence": "RECOMMENDED",
"labels": ["backend", "bug"],
"priority": "critical",
"rationale": "Explicit critical bug with root cause identified"
}
]
}
Input:
Maybe we should think about caching?
Could potentially improve performance.
Not sure if Redis or in-memory would be better.
Output:
{
"issues": [
{
"name": "Evaluate caching strategy",
"confidence": "ALTERNATIVE",
"labels": ["backend", "performance"],
"priority": "low",
"rationale": "Tentative suggestion (maybe, could, not sure), needs discussion"
}
]
}
/extract-issues commandsearch_related_notes to find similar issuesbackend/src/pilot_space/ai/sdk/output_schemas.py