shoka 0.1.0

A repository workspace manager — jj-aware, TUI-first successor to ghq / rhq.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! GitHub integration.
//!
//! Token resolution order:
//! 1. `$GITHUB_TOKEN`
//! 2. `gh auth token` (if `gh` CLI is on PATH)
//!
//! If neither yields a token, gh-dependent features (PR / CI / 草) are
//! disabled at runtime; core commands keep working.
//!
//! API calls go through `octocrab` for async batching. `gh` CLI itself
//! is *not* a runtime dependency — only used to harvest auth.
//!
//! Phase 1 (clone listing) / phase 2 (TUI status) implementation pending.