Spaces:
Runtime error
Runtime error
File size: 1,430 Bytes
a6b96c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | ---
description: Triage and review open GitHub issues and PRs against project templates and contribution guidelines.
argument-hint: "[--issues] [--prs] [--label] [--close-incomplete] [--repo owner/repo]"
requires: [review]
tools:
read: true
bash: true
write: true
grep: true
glob: true
question: true
---
<objective>
One-command triage of the project's GitHub inbox. Fetches all open issues and PRs,
reviews each against the corresponding template requirements (feature, enhancement,
bug, chore, fix PR, enhancement PR, feature PR), reports completeness and compliance,
and optionally applies labels or closes non-compliant submissions.
**Flow:** Detect repo β Fetch open issues + PRs β Classify each by type β Review against template β Report findings β Optionally act (label, comment, close)
</objective>
<execution_context>
@/Users/theogengineer/Projects/Multilingual-Absa/.opencode/gsd-core/workflows/inbox.md
</execution_context>
<context>
**Flags:**
- `--issues` β Review only issues (skip PRs)
- `--prs` β Review only PRs (skip issues)
- `--label` β Auto-apply recommended labels after review
- `--close-incomplete` β Close issues/PRs that fail template compliance (with comment explaining why)
- `--repo owner/repo` β Override auto-detected repository (defaults to current git remote)
</context>
<process>
Execute end-to-end.
Parse flags from arguments and pass to workflow.
</process>
|