issues-list
List all open issues in a concise table format.
Arguments
None required. Optional filter arguments may be added later.
Steps
- •Use the Glob tool to find all
.issues/*.tomlfiles. - •If no issues are found, inform the user that there are no open issues.
- •Read each issue file using the Read tool.
- •Parse the TOML fields from each file (id, title, status, priority, assigned_to, closed).
- •Filter out any issues where
closed = true. Only show open (non-closed) issues. - •If no open issues remain after filtering, inform the user that there are no open issues.
- •Display the issues in a markdown table with the following columns:
code
| ID | Status | Priority | Assignee | Title | |------|--------|----------|----------|-------| | 0001 | open | medium | | Fix login bug | | 0002 | open | high | dev@co | Add dark mode |
Sort the issues by ID in ascending order.
Allowed tools
- •
Bash(git *)- for git commands - •
Read- for reading issue files - •
Glob- for finding issue files