Display status summary of specifications and issues.
Displays status summary of specifications and issues with filtering options.
/plugin marketplace add samjhecht/wrangler/plugin install wrangler@samjhecht-plugins[--status=open|in_progress|closed] [--project=name]Display status summary of specifications and issues using MCP tools.
--status (optional) — Filter by status: open, in_progress, closed, cancelled--project (optional) — Filter by project/spec name--labels (optional) — Filter by labels (comma-separated)issues_list MCP tool to retrieve issues with any filtersissues_list with type: "specification" to retrieve specsWrangler uses explicit status fields (not checkbox-derived):
| Status | Meaning |
|---|---|
open | Not yet started |
in_progress | Currently being worked on |
closed | Completed successfully |
cancelled | Will not be done |
# Project Status
## Specifications
| Spec | Status | Issues | Progress |
|------|--------|--------|----------|
| SPEC-000001-auth-system | in_progress | 5 | 2/5 (40%) |
| SPEC-000002-api-cache | open | 3 | 0/3 (0%) |
## Issues by Specification
### SPEC-000001-auth-system
| ID | Title | Status | Priority |
|----|-------|--------|----------|
| ISS-000042 | Setup database schema | closed | high |
| ISS-000043 | Implement user model | in_progress | high |
| ISS-000044 | Add validation logic | open | medium |
### Unlinked Issues
| ID | Title | Status | Priority |
|----|-------|--------|----------|
| ISS-000050 | Fix typo in readme | open | low |
## Summary
- **Specifications:** 1 in_progress, 1 open
- **Issues:** 1 closed, 1 in_progress, 4 open
- **Next up:** ISS-000044 (Add validation logic)
closed_issues / total_linked_issues// List all specifications
issues_list({ type: "specification" })
// List all issues
issues_list({ type: "issue" })
// Filter by status
issues_list({ status: ["open", "in_progress"] })
// Filter by project
issues_list({ project: "SPEC-000001-auth-system" })
# All issues and specs
/wrangler:issues
# Only open issues
/wrangler:issues --status=open
# Issues for a specific spec
/wrangler:issues --project=SPEC-000001-auth-system
# High priority issues
/wrangler:issues --labels=high-priority
This command observes and reports.
/wrangler:generate-plan-for-spec — Create issues from a spec/wrangler:implement — Execute issues/wrangler:help — Full documentation