Back to list
marcusshepp

find-feature-work

by marcusshepp

3🍴 0📅 Jan 7, 2026

SKILL.md


name: find-feature-work description: Search for features and automatically retrieve all child work items (stories, tasks, bugs) under that feature. Use when planning or reviewing feature scope.

Find Feature and Related Work

Search for features and automatically retrieve all child work items (stories, tasks, bugs) under that feature.

When to Use

  • User asks about a specific feature
  • Need to see all work under a feature
  • Planning or reviewing feature scope
  • Understanding feature dependencies

Prerequisites

  • Azure DevOps must be initialized with Initialize-AzureDevOps

Examples

Find feature and children

Get-WorkItemsByFeature -SearchText "authentication"

Find and export

Get-WorkItemsByFeature -SearchText "PDF export" |
    Export-WorkItemsToMarkdown -OutputPath "pdf-feature.md" -IncludeAcceptanceCriteria

Check feature status

$items = Get-WorkItemsByFeature -SearchText "bill drafting"
$items | Group-Object State | Select-Object Name, Count

Function

Get-WorkItemsByFeature

Searches for feature by text and returns feature plus all child items.

Parameters

  • SearchText: Text to search in feature title (required)

Output

Returns array of work item objects including:

  • The feature itself
  • All child user stories
  • All child tasks
  • All child bugs
  • Complete hierarchy with relations

Tips for Copilot

  • Good starting point for feature planning
  • Use with Export-WorkItemsToMarkdown for reports
  • Check State distribution to see progress
  • Useful for dependency analysis

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

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

+20
LICENSE

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

0/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