[BREAKGLASS] Append-only mirror of github.com/openclaw/gitcrawl
Go to file
2026-04-27 14:45:51 -07:00
.github/workflows ci: use node 24 github actions 2026-04-27 11:16:09 +01:00
cmd/gitcrawl feat: add cli shell 2026-04-26 23:01:04 -07:00
internal feat: persist durable clusters 2026-04-27 14:45:51 -07:00
.gitignore docs: define gitcrawl scope 2026-04-26 22:58:48 -07:00
go.mod build: drop unused tui markdown renderer 2026-04-27 04:25:12 -07:00
go.sum build: drop unused tui markdown renderer 2026-04-27 04:25:12 -07:00
LICENSE docs: define gitcrawl scope 2026-04-26 22:58:48 -07:00
Makefile build: add make targets 2026-04-26 23:39:06 -07:00
README.md docs: mention tui member triage actions 2026-04-27 14:39:11 -07:00
SPEC.md feat: wire tui command 2026-04-27 02:51:27 -07:00

gitcrawl

gitcrawl is a local-first GitHub issue and pull request crawler for maintainer triage.

Data stays local in SQLite. The primary runtime surfaces are the CLI, JSON command output, and the terminal UI. There is no local HTTP API.

Status

Early bootstrap. The implementation is being built in small commits.

Commands

gitcrawl init
gitcrawl doctor
gitcrawl sync owner/repo
gitcrawl refresh owner/repo
gitcrawl clusters owner/repo
gitcrawl cluster-detail owner/repo --id 123
gitcrawl close-thread owner/repo --number 123 --reason "duplicate handled"
gitcrawl reopen-thread owner/repo --number 123
gitcrawl close-cluster owner/repo --id 123 --reason "handled"
gitcrawl reopen-cluster owner/repo --id 123
gitcrawl exclude-cluster-member owner/repo --id 123 --number 456 --reason "not the same bug"
gitcrawl include-cluster-member owner/repo --id 123 --number 456
gitcrawl set-cluster-canonical owner/repo --id 123 --number 456
gitcrawl neighbors owner/repo --number 123 --limit 10
gitcrawl search owner/repo --query "download stalls"
gitcrawl tui
gitcrawl tui owner/repo

gitcrawl tui infers the most recently updated local repository when owner/repo is omitted. serve is intentionally not part of gitcrawl. The TUI starts at --min-size 5 so maintainer-significant clusters are visible first; pass --min-size 1 to include singletons. Mouse support is built in: click rows, wheel panes, and right-click for copy, sort, filter, jump, link, neighbor, local close/reopen, and member triage actions. Press a to open the same action menu from the keyboard, # to jump directly to an issue or PR number, p to switch between repositories already present in the local store, or n to load neighbors for the selected issue or PR. Enter from the members pane also loads neighbors before opening detail. The TUI quietly refreshes from the local store every 15 seconds.

Local Defaults

  • config: ~/.config/gitcrawl/config.toml
  • database: ~/.config/gitcrawl/gitcrawl.db
  • cache: ~/.config/gitcrawl/cache
  • vectors: ~/.config/gitcrawl/vectors
  • logs: ~/.config/gitcrawl/logs

Requirements

  • Go 1.26+
  • a GitHub token for sync commands
  • an OpenAI API key only for summary and embedding commands

Development

go test ./...
go build ./cmd/gitcrawl