Back to list
dariuszparys

work-items

by dariuszparys

0🍴 0📅 Jan 12, 2026

SKILL.md


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

Work Items Skill

Apply these patterns when working with issues, tickets, or work items from any system (GitHub Issues, Jira, Azure DevOps, Linear, etc.).

LLM Optimization Patterns

File Path Compression

Use glob patterns to compress multiple file paths:

BeforeAfter
routes/dev-routes.bicep, routes/test-routes.bicep, routes/prod-routes.biceproutes/{dev,test,prod}-routes.bicep
src/components/Button.tsx, src/components/Input.tsxsrc/components/{Button,Input}.tsx

Terse Language Rules

  • No articles ("the", "a") unless needed for clarity
  • No filler phrases ("In order to", "This will")
  • Use arrows for transformations: external -> internal, HTTP -> HTTPS
  • Use equals for settings: ingress.external = false

Output Structure

Optimize 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}

Acceptance Criteria Filtering

Remove obvious/implicit criteria:

  • "Deployment succeeds"
  • "No downtime"
  • "Tests pass"
  • "Code reviewed"
  • "PR merged"

Keep non-obvious verification:

  • Specific HTTP status codes
  • Portal/UI status checks
  • Security constraints
  • Integration behaviors

Task Breakdown Rules

Granularity

  • 1 task = 1 logical change that can be committed independently
  • Each task: ~5-30 min of work
  • Group related file changes if they must be atomic

Sequencing

  1. Infrastructure/Config first (env vars, config files, dependencies)
  2. Core changes second (main logic, modules)
  3. Dependent files third (routes, integrations, consumers)
  4. Verification last (manual checks, cleanup)

Task Format

## Task {n}: {brief title}

**Files**: {file(s) to modify}

**Do**:
- {specific action}

**Test**:
- {how to verify}

Completeness Criteria

Title

  • Descriptive (> 5 words typically)
  • Clearly indicates what feature/change is needed
  • Avoids vague terms: "fix bug", "update code", "improvements"

Description

  • Exists and is not empty
  • Explains what needs to be done
  • Explains why it's needed (business value/context)
  • Provides enough context for a developer to understand scope

Acceptance Criteria

  • Present and populated
  • Contains specific, testable conditions
  • Uses clear language (Given/When/Then or bullet points)
  • Defines what "done" looks like

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon