AgentSkillsCN

issues

发现并管理基于文件的工作项。在启动新任务前探索待办事项,或用于跟踪项目进度。

SKILL.md
--- frontmatter
name: issues
description: Discover and manage file-based work items. Use to explore tasks before spawning workers or to track project progress.
allowed-tools:
  - Bash(ls:*)
  - Bash(cat:*)
  - Bash(find:*)
  - Bash(grep:*)
  - Read
  - Write
  - Edit
  - Glob
  - Grep

Discover and manage work items for the project.

Run this command to explore what needs to be done before spawning workers with /jig.

Actions

List issues

Scan issues/*.md and extract from each file:

  • Filename
  • Title (first # heading)
  • Status (from **Status:** field)
  • Epic (from **Epic:** field, for tickets)

Group tickets under their parent epic. Show status with indicators:

  • [ ] Planned
  • [~] In Progress
  • [x] Complete
  • [!] Blocked

Highlight which tickets are ready to work on (status: Planned, no blockers).

Show issue

Read a specific issue file and display its full contents.

Create epic

Create a new epic file using the template format from docs/issue-tracking.md.

Create ticket

Create a new ticket file linked to an epic, using the template format from docs/issue-tracking.md.

Update status

Change a ticket's status field (Planned → In Progress → Complete).

Convention

See docs/issue-tracking.md for the full issue tracking convention.

External Trackers

This uses file-based issue tracking by default. For external trackers like Linear, Jira, or GitHub Issues, use their respective MCP tools or CLI (gh issue) instead and skip the file scanning.