Projects

Tools for repeatable, inspectable development workflows.

Explore the tools I build under OrekGames, then follow each project to its documentation and source.

Issue Management CLI for humans and AI agents

track

Issue and Knowledge base workflows

Pull every unresolved issue into a repeatable audit
track -o json i s "project: PROJ #Unresolved" --all \
  | jq 'group_by(.state.name)[] | "\(.[0].state.name) \(length)"'
Open         84
In Progress  12
Review        7

track turns issue trackers and knowledge bases into a scriptable execution surface: fetch every result, pipe JSON into audits, dry-run bulk plans, and resume long operations. MCP integrations are useful for interactive lookup and one-off edits; track covers the work that needs a contract: repeatable commands, shell pipelines, dry-runs, resumable state, and auditable JSON that can move from an agent session into a script, PR, or CI job.

  • Backlog-scale reads — fetch every matching issue or article with --all, then pipe JSON into jq, CI checks, reports, or notebooks
  • Reviewable bulk changes — turn create, update, comment, link, and guarded delete operations into a plan file you can validate before it touches the tracker
  • Markdown wiki publishing — publish Markdown files to YouTrack Knowledge Base or Jira/Confluence without hand-writing wiki storage markup

Documentation hosted on the project site · source on GitHub