Significantly expand the README to serve as complete user documentation for the CLI tool, reflecting the full CP1 implementation. Configuration section: - Add missing config options: heartbeatIntervalSeconds, primaryConcurrency, dependentConcurrency, backupDir, embedding provider settings - Document config file resolution order (CLI flag, env var, XDG, local) - Add environment variables table with GITLAB_TOKEN, GI_CONFIG_PATH, XDG_CONFIG_HOME, XDG_DATA_HOME, RUST_LOG Commands section: - Document --full flag for complete re-sync (resets cursors and watermarks) - Add output descriptions for list, show, and count commands - Document assignee filter with @ prefix normalization - Add gi doctor checks explanation (config, db, GitLab auth, Ollama) - Add gi sync-status output description - Add placeholder documentation for backup and reset commands Database schema section: - Reformat as table with descriptions - Add sync_runs, sync_cursors, app_locks, schema_version tables - Note WAL mode and foreign keys enabled Development section: - Add RUST_LOG=gi=trace example for detailed logging Current status section: - Document CP1 scope (issues, discussions, incremental sync) - List not-yet-implemented features (MRs, embeddings, backup/reset) - Reference SPEC.md for full roadmap Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
354 lines
9.7 KiB
Markdown
354 lines
9.7 KiB
Markdown
# gi - GitLab Inbox
|
|
|
|
A command-line tool for managing GitLab issues locally. Syncs issues, discussions, and notes from GitLab to a local SQLite database for fast, offline-capable querying and filtering.
|
|
|
|
## Features
|
|
|
|
- **Local-first**: All data stored in SQLite for instant queries
|
|
- **Incremental sync**: Cursor-based sync only fetches changes since last sync
|
|
- **Full re-sync**: Reset cursors and fetch all data from scratch when needed
|
|
- **Multi-project**: Track issues across multiple GitLab projects
|
|
- **Rich filtering**: Filter by state, author, assignee, labels, milestone, due date
|
|
- **Raw payload storage**: Preserves original GitLab API responses for debugging
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
cargo install --path .
|
|
```
|
|
|
|
Or build from source:
|
|
|
|
```bash
|
|
cargo build --release
|
|
./target/release/gi --help
|
|
```
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Initialize configuration (interactive)
|
|
gi init
|
|
|
|
# Verify authentication
|
|
gi auth-test
|
|
|
|
# Sync issues from GitLab
|
|
gi ingest --type issues
|
|
|
|
# List recent issues
|
|
gi list issues --limit 10
|
|
|
|
# Show issue details
|
|
gi show issue 123 --project group/repo
|
|
```
|
|
|
|
## Configuration
|
|
|
|
Configuration is stored in `~/.config/gi/config.json` (or `$XDG_CONFIG_HOME/gi/config.json`).
|
|
|
|
### Example Configuration
|
|
|
|
```json
|
|
{
|
|
"gitlab": {
|
|
"baseUrl": "https://gitlab.com",
|
|
"tokenEnvVar": "GITLAB_TOKEN"
|
|
},
|
|
"projects": [
|
|
{ "path": "group/project" },
|
|
{ "path": "other-group/other-project" }
|
|
],
|
|
"sync": {
|
|
"backfillDays": 14,
|
|
"staleLockMinutes": 10,
|
|
"heartbeatIntervalSeconds": 30,
|
|
"cursorRewindSeconds": 2,
|
|
"primaryConcurrency": 4,
|
|
"dependentConcurrency": 2
|
|
},
|
|
"storage": {
|
|
"compressRawPayloads": true
|
|
}
|
|
}
|
|
```
|
|
|
|
### Configuration Options
|
|
|
|
| Section | Field | Default | Description |
|
|
|---------|-------|---------|-------------|
|
|
| `gitlab` | `baseUrl` | — | GitLab instance URL (required) |
|
|
| `gitlab` | `tokenEnvVar` | `GITLAB_TOKEN` | Environment variable containing API token |
|
|
| `projects` | `path` | — | Project path (e.g., `group/project`) |
|
|
| `sync` | `backfillDays` | `14` | Days to backfill on initial sync |
|
|
| `sync` | `staleLockMinutes` | `10` | Minutes before sync lock considered stale |
|
|
| `sync` | `heartbeatIntervalSeconds` | `30` | Frequency of lock heartbeat updates |
|
|
| `sync` | `cursorRewindSeconds` | `2` | Seconds to rewind cursor for overlap safety |
|
|
| `sync` | `primaryConcurrency` | `4` | Concurrent GitLab requests for primary resources |
|
|
| `sync` | `dependentConcurrency` | `2` | Concurrent requests for dependent resources |
|
|
| `storage` | `dbPath` | `~/.local/share/gi/gi.db` | Database file path |
|
|
| `storage` | `backupDir` | `~/.local/share/gi/backups` | Backup directory |
|
|
| `storage` | `compressRawPayloads` | `true` | Compress stored API responses with gzip |
|
|
| `embedding` | `provider` | `ollama` | Embedding provider |
|
|
| `embedding` | `model` | `nomic-embed-text` | Model name for embeddings |
|
|
| `embedding` | `baseUrl` | `http://localhost:11434` | Ollama server URL |
|
|
| `embedding` | `concurrency` | `4` | Concurrent embedding requests |
|
|
|
|
### Config File Resolution
|
|
|
|
The config file is resolved in this order:
|
|
1. `--config` CLI flag
|
|
2. `GI_CONFIG_PATH` environment variable
|
|
3. `~/.config/gi/config.json` (XDG default)
|
|
4. `./gi.config.json` (local fallback for development)
|
|
|
|
### GitLab Token
|
|
|
|
Create a personal access token with `read_api` scope:
|
|
|
|
1. Go to GitLab → Settings → Access Tokens
|
|
2. Create token with `read_api` scope
|
|
3. Export it: `export GITLAB_TOKEN=glpat-xxxxxxxxxxxx`
|
|
|
|
## Environment Variables
|
|
|
|
| Variable | Purpose | Required |
|
|
|----------|---------|----------|
|
|
| `GITLAB_TOKEN` | GitLab API authentication token (name configurable via `gitlab.tokenEnvVar`) | Yes |
|
|
| `GI_CONFIG_PATH` | Override config file location | No |
|
|
| `XDG_CONFIG_HOME` | XDG Base Directory for config (fallback: `~/.config`) | No |
|
|
| `XDG_DATA_HOME` | XDG Base Directory for data (fallback: `~/.local/share`) | No |
|
|
| `RUST_LOG` | Logging level filter (e.g., `gi=debug`) | No |
|
|
|
|
## Commands
|
|
|
|
### `gi init`
|
|
|
|
Initialize configuration and database interactively.
|
|
|
|
```bash
|
|
gi init # Interactive setup
|
|
gi init --force # Overwrite existing config
|
|
gi init --non-interactive # Fail if prompts needed
|
|
```
|
|
|
|
### `gi auth-test`
|
|
|
|
Verify GitLab authentication is working.
|
|
|
|
```bash
|
|
gi auth-test
|
|
# Authenticated as @username (Full Name)
|
|
# GitLab: https://gitlab.com
|
|
```
|
|
|
|
### `gi doctor`
|
|
|
|
Check environment health and configuration.
|
|
|
|
```bash
|
|
gi doctor # Human-readable output
|
|
gi doctor --json # JSON output for scripting
|
|
```
|
|
|
|
Checks performed:
|
|
- Config file existence and validity
|
|
- Database existence and pragmas (WAL mode, foreign keys)
|
|
- GitLab authentication
|
|
- Project accessibility
|
|
- Ollama connectivity (optional)
|
|
|
|
### `gi ingest`
|
|
|
|
Sync data from GitLab to local database.
|
|
|
|
```bash
|
|
gi ingest --type issues # Sync all projects
|
|
gi ingest --type issues --project group/repo # Single project
|
|
gi ingest --type issues --force # Override stale lock
|
|
gi ingest --type issues --full # Full re-sync (reset cursors)
|
|
```
|
|
|
|
The `--full` flag resets sync cursors and fetches all data from scratch, useful when:
|
|
- Assignee data or other fields were missing from earlier syncs
|
|
- You want to ensure complete data after schema changes
|
|
- Troubleshooting sync issues
|
|
|
|
### `gi list issues`
|
|
|
|
Query issues from local database.
|
|
|
|
```bash
|
|
gi list issues # Recent issues (default 50)
|
|
gi list issues --limit 100 # More results
|
|
gi list issues --state opened # Only open issues
|
|
gi list issues --state closed # Only closed issues
|
|
gi list issues --author username # By author (@ prefix optional)
|
|
gi list issues --assignee username # By assignee (@ prefix optional)
|
|
gi list issues --label bug # By label (AND logic)
|
|
gi list issues --label bug --label urgent # Multiple labels
|
|
gi list issues --milestone "v1.0" # By milestone title
|
|
gi list issues --since 7d # Updated in last 7 days
|
|
gi list issues --since 2w # Updated in last 2 weeks
|
|
gi list issues --since 2024-01-01 # Updated since date
|
|
gi list issues --due-before 2024-12-31 # Due before date
|
|
gi list issues --has-due-date # Only issues with due dates
|
|
gi list issues --project group/repo # Filter by project
|
|
gi list issues --sort created --order asc # Sort options
|
|
gi list issues --open # Open first result in browser
|
|
gi list issues --json # JSON output
|
|
```
|
|
|
|
Output includes: IID, title, state, author, assignee, labels, and update time.
|
|
|
|
### `gi show issue`
|
|
|
|
Display detailed issue information.
|
|
|
|
```bash
|
|
gi show issue 123 # Show issue #123
|
|
gi show issue 123 --project group/repo # Disambiguate if needed
|
|
```
|
|
|
|
Shows: title, description, state, author, assignees, labels, milestone, due date, web URL, and threaded discussions.
|
|
|
|
### `gi count`
|
|
|
|
Count entities in local database.
|
|
|
|
```bash
|
|
gi count issues # Total issues
|
|
gi count discussions # Total discussions
|
|
gi count discussions --type issue # Issue discussions only
|
|
gi count notes # Total notes (shows system vs user breakdown)
|
|
```
|
|
|
|
### `gi sync-status`
|
|
|
|
Show current sync state and watermarks.
|
|
|
|
```bash
|
|
gi sync-status
|
|
```
|
|
|
|
Displays:
|
|
- Last sync run details (status, timing)
|
|
- Cursor positions per project and resource type
|
|
- Data summary counts
|
|
|
|
### `gi migrate`
|
|
|
|
Run pending database migrations.
|
|
|
|
```bash
|
|
gi migrate
|
|
```
|
|
|
|
Shows current schema version and applies any pending migrations.
|
|
|
|
### `gi version`
|
|
|
|
Show version information.
|
|
|
|
```bash
|
|
gi version
|
|
```
|
|
|
|
### `gi backup`
|
|
|
|
Create timestamped database backup.
|
|
|
|
```bash
|
|
gi backup
|
|
```
|
|
|
|
*Note: Not yet implemented.*
|
|
|
|
### `gi reset`
|
|
|
|
Delete database and reset all state.
|
|
|
|
```bash
|
|
gi reset --confirm
|
|
```
|
|
|
|
*Note: Not yet implemented.*
|
|
|
|
## Database Schema
|
|
|
|
Data is stored in SQLite with WAL mode and foreign keys enabled. Main tables:
|
|
|
|
| Table | Purpose |
|
|
|-------|---------|
|
|
| `projects` | Tracked GitLab projects with metadata |
|
|
| `issues` | Issue metadata (title, state, author, due date, milestone) |
|
|
| `milestones` | Project milestones with state and due dates |
|
|
| `labels` | Project labels with colors |
|
|
| `issue_labels` | Many-to-many issue-label relationships |
|
|
| `issue_assignees` | Many-to-many issue-assignee relationships |
|
|
| `discussions` | Issue/MR discussion threads |
|
|
| `notes` | Individual notes within discussions (with system note flag) |
|
|
| `sync_runs` | Audit trail of sync operations |
|
|
| `sync_cursors` | Cursor positions for incremental sync |
|
|
| `app_locks` | Crash-safe single-flight lock |
|
|
| `raw_payloads` | Compressed original API responses |
|
|
| `schema_version` | Migration version tracking |
|
|
|
|
The database is stored at `~/.local/share/gi/gi.db` by default (XDG compliant).
|
|
|
|
## Global Options
|
|
|
|
```bash
|
|
gi --config /path/to/config.json <command> # Use alternate config
|
|
```
|
|
|
|
## Development
|
|
|
|
```bash
|
|
# Run tests
|
|
cargo test
|
|
|
|
# Run with debug logging
|
|
RUST_LOG=gi=debug gi list issues
|
|
|
|
# Run with trace logging
|
|
RUST_LOG=gi=trace gi ingest --type issues
|
|
|
|
# Check formatting
|
|
cargo fmt --check
|
|
|
|
# Lint
|
|
cargo clippy
|
|
```
|
|
|
|
## Tech Stack
|
|
|
|
- **Rust** (2024 edition)
|
|
- **SQLite** via rusqlite (bundled)
|
|
- **clap** for CLI parsing
|
|
- **reqwest** for HTTP
|
|
- **tokio** for async runtime
|
|
- **serde** for serialization
|
|
- **tracing** for logging
|
|
- **indicatif** for progress bars
|
|
|
|
## Current Status
|
|
|
|
This is Checkpoint 1 (CP1) of the GitLab Knowledge Engine project. Currently implemented:
|
|
|
|
- Issue ingestion with cursor-based incremental sync
|
|
- Discussion and note syncing for issues
|
|
- Rich filtering and querying
|
|
- Full re-sync capability
|
|
|
|
Not yet implemented:
|
|
- Merge request support (CP2)
|
|
- Semantic search with embeddings (CP3+)
|
|
- Backup and reset commands
|
|
|
|
See [SPEC.md](SPEC.md) for the full project roadmap and architecture.
|
|
|
|
## License
|
|
|
|
MIT
|