skills/docs/agents/issue-tracker.md

29 lines
1,015 B
Markdown
Raw Permalink Normal View History

2026-05-01 04:55:41 +00:00
# Issue tracker: Forgejo
Issues for this repo live in Forgejo:
`src.liamrohan.com/ldr/skills`
Use the `fj` CLI for issue operations. Do not use `gh` for this repo.
## Commands
- Create an issue: `fj issue create "Title" --body-file <file>`
- Read an issue body: `fj issue view <number>`
- Read comments: `fj issue view <number> comments`
- Search open issues: `fj issue search --state open`
- Search by label: `fj issue search --state open --labels "needs-triage"`
- Comment: `fj issue comment <number> --body-file <file>`
- Add a label: `fj issue edit <number> labels --add "<label>"`
- Remove a label: `fj issue edit <number> labels --rm "<label>"`
- Close with a message: `fj issue close <number> --with-msg "..."`
When a skill says "publish to the issue tracker", create a Forgejo issue with
`fj issue create`.
When a skill says "fetch an issue", run `fj issue view <number>` and
`fj issue view <number> comments`.
When a skill says "apply a label", run
`fj issue edit <number> labels --add "<label>"`.