skills/docs/agents/issue-tracker.md
2026-05-01 05:55:41 +01:00

1,015 B

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>".