work-items
Optimize and analyze work items for LLM-assisted development
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Optimize and analyze work items for LLM-assisted development
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
This skill should be used when inspecting .NET assemblies, exploring NuGet package APIs, searching for types across frameworks, comparing API versions, or checking package vulnerabilities. Triggers on "what methods does X have", "find types like Y", "compare versions", "check for vulnerabilities", "explore this package", or any .NET API exploration task.
Apply Ralph Wiggum Method patterns for decomposing tasks into atomic user stories
Suggest documenting significant architectural decisions as ADRs
Work with Azure DevOps Product Backlog Items using az boards CLI
| name | work-items |
| description | Optimize and analyze work items for LLM-assisted development |
| user-invocable | false |
| when_to_use | Use this skill when the user: - Pastes a work item, issue, or ticket from any system - Asks about work item readiness or completeness - Needs to break down a feature into implementation tasks - Wants to optimize content for LLM context windows |
Apply these patterns when working with issues, tickets, or work items from any system (GitHub Issues, Jira, Azure DevOps, Linear, etc.).
Use glob patterns to compress multiple file paths:
| Before | After |
|---|---|
routes/dev-routes.bicep, routes/test-routes.bicep, routes/prod-routes.bicep | routes/{dev,test,prod}-routes.bicep |
src/components/Button.tsx, src/components/Input.tsx | src/components/{Button,Input}.tsx |
external -> internal, HTTP -> HTTPSingress.external = falseOptimize work items into this token-efficient format:
# {ID}: {title}
## Context
{1-2 sentence summary}
## Files
- {file paths with glob patterns}
## Changes
1. {file}: {action}
## Verify
- {non-obvious verification step}
Remove obvious/implicit criteria:
Keep non-obvious verification:
## Task {n}: {brief title}
**Files**: {file(s) to modify}
**Do**:
- {specific action}
**Test**:
- {how to verify}