Reference

Commands reference

Commands reference

Complete CLI surface, one row per command. Use as a lookup table; deep documentation lives in the feature pages.

#Global flags

These work on every command.

FlagDefaultDescription
--config <path>$GITCRAWL_CONFIG or defaultOverride config path
--format text|json|logtextOutput format
--json(off)Shorthand for --format json
--no-color(off)Suppress ANSI color
--version(off)Print version and exit (global only)
--help / -hPrint usage

#Setup

CommandPurposeDetailed docs
gitcrawl init [--db --runtime-dir --portable-store --portable-db --store-dir --json]Create config and runtime directories; isolate all local paths under one root or clone a portable storeConfiguration, Portable stores
gitcrawl doctor [--json] [--locks]Health check for config, database, credentials, model selection, repo/thread counts, and optional SQLite lock diagnosticsConfiguration
gitcrawl metadata [--json]Print the crawlkit command/control manifest for launchers and automation
gitcrawl status [--json]Print read-only archive status, database inventory, and control state
gitcrawl configure [--summary-model --embed-model --embedding-basis --json]Update model fields in config.tomlConfiguration
gitcrawl versionPrint version

#Sync

CommandPurposeDocs
gitcrawl sync owner/repo [--state --since --numbers <refs> --limit --include-comments --include-pr-details --with pr-details --progress-file <absolute-path> --json]Sync issues and PRs from GitHub into local SQLiteSync
gitcrawl sync-failures owner/repo [--include-resolved --limit N --json]List failed PR hydration attempts and optional resolved historySync
gitcrawl coverage [owner/repo | --repos owner/a,owner/b] [--min-missing-pr-details N --json]Report archive, PR-detail, and enrichment coverage/freshness
gitcrawl fill-pr-details owner/repo [--limit --order --batch-size --reserve-rate-limit --include-comments --json-progress --json]Hydrate locally missing pull request detail rows in bounded batches
gitcrawl capture owner/repo [--schema gitcrawl.capture.v1 --since RFC3339 --output path --json]Export a deterministic code-free conversation snapshotConversation capture
gitcrawl refresh owner/repo [--with pr-details --no-sync --no-embed --no-cluster --strict-vectors ...]Wrapper that runs sync → embed → clusterRefresh and embed
gitcrawl embed owner/repo [--number <ref> --limit --force --include-closed --json]Generate OpenAI embeddings for thread documentsRefresh and embed
gitcrawl runs owner/repo [--kind sync|embedding|cluster --limit --json]List recorded run historyRefresh and embed
gitcrawl code index owner/repo [--path --max-file-bytes --max-total-bytes --max-files --json]Index tracked text files from a local Git checkoutCode indexing

fill-pr-details --reserve-rate-limit defaults to a floor of 1500 remaining requests. Before every costful GitHub request, Gitcrawl reads /rate_limit and stops when the latest shared-token snapshot shows that dispatching the next request would cross that floor. The live probe observes other processes and tools that share the token. This is best-effort because an unrelated consumer can spend quota between the probe and request; the 1500 default provides concurrency headroom. Pass --reserve-rate-limit N to choose another floor.

For an end-to-end first-run sequence that combines status --json, doctor --json, sync --numbers, bounded --sync-if-stale search, gitcrawl runs, and Octopool live reads, see the maintainer archive workflow.

#Inspect

CommandPurposeDocs
gitcrawl threads owner/repo [--include-closed --numbers --limit --json]List threads from local cache
gitcrawl search owner/repo --query <text> [--scope threads|code|all --mode keyword|semantic|hybrid --limit --json]Local thread/source search (direct mode)Search
gitcrawl search issues|prs <query> -R owner/repo [--state --json --limit --sync-if-stale]Local search (gh search shape)Search
gitcrawl neighbors owner/repo --number <ref> [--limit --threshold --json]Vector-similar threads to a specific issue/PRClustering

#Thread References

Commands that accept a thread number also accept thread references:

  • bare numbers: 123
  • hash references: #123
  • path references: issues/123, pull/123
  • scoped references: owner/repo#123
  • full GitHub issue or pull request URLs

This applies to sync --numbers, threads --numbers, summarize --number, embed --number, neighbors --number, all governance --number flags, and TUI jump input.

#Summaries and embeddings

CommandPurpose
gitcrawl summarize owner/repo [--number --limit --force --include-closed --json]Generate compact key summaries for current thread revisions
gitcrawl embed owner/repo [--number --limit --force --include-closed --json]Generate thread vectors using the configured embedding basis

#Cluster

CommandPurposeDocs
gitcrawl cluster owner/repo [--threshold --min-size --max-cluster-size --k --cross-kind-threshold --limit --model --basis --include-closed --strict-vectors --json]Build durable clusters from vectorsClustering
gitcrawl clusters owner/repo [--sort size|recent|oldest --min-size --limit --hide-closed --json]Latest-run cluster summary, merged with closed durable rowsClustering
gitcrawl clusters-report owner/repo [--sort size|recent|oldest --min-size --limit --member-limit --body-chars --hide-closed --json]Markdown or JSON report for top display clustersClustering
gitcrawl durable-clusters owner/repo [--include-closed --sort --min-size --limit --json]Strict durable-cluster audit viewClustering
gitcrawl cluster-detail owner/repo --id <n> [--source auto|run|durable --member-limit --body-chars --hide-closed --json]Cluster + members detailClustering
gitcrawl cluster-explain owner/repo --id <n> [...]Alias for cluster-detailClustering

#Governance

CommandPurposeDocs
gitcrawl close-thread owner/repo --number <ref> [--reason --json]Local close on a threadGovernance
gitcrawl reopen-thread owner/repo --number <ref> [--json]Inverse
gitcrawl close-cluster owner/repo --id <n> [--reason --json]Local close on a clusterGovernance
gitcrawl reopen-cluster owner/repo --id <n> [--json]Inverse
gitcrawl exclude-cluster-member owner/repo --id <n> --number <ref> [--reason --json]Pull a thread out of a clusterGovernance
gitcrawl include-cluster-member owner/repo --id <n> --number <ref> [--reason --json]Inverse
gitcrawl set-cluster-canonical owner/repo --id <n> --number <ref> [--reason --json]Pin canonical thread for a clusterGovernance

#TUI

CommandPurposeDocs
gitcrawl tui [owner/repo] [--min-size --sort --layout --limit --hide-closed --json]Interactive cluster browser; --json emits a snapshot instead of launching the UITUI

#gh shim

gitcrawl gh moved to Octopool and now exits with a migration note.

Use:

octopool login
octopool gh api repos/openclaw/openclaw/pulls/123

gitcrawl search issues|prs ... remains the local mirror search path.

#Portable stores

CommandPurposeDocs
gitcrawl portable prune [--body-chars --no-vacuum --include-sync-failures --no-publish --json]Build a compact portable v2 backup and (optionally) VACUUM for publishingPortable stores

#Not yet implemented

These appear in SPEC.md but currently return a "not implemented" error. They are reserved for future versions:

key-summaries, merge-clusters, split-cluster, export-sync, import-sync, validate-sync, portable-size, sync-status, optimize, completion

If you need any of these to land sooner, open an issue.