ghzinga

(★ 79)

Easy, clickable TUI to view a single GitHub issue or PR, in Rust

File Explorer

  • .gitignore
  • AGENTS.md
  • Cargo.lock
  • Cargo.toml
  • LICENSE
  • README.md
  • slophammer.yml

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

cargo install

View Details ▼

Build and install a Rust binary.

cargo install {{package}}@{{version}}

Install a package from <https://crates.io> (the version is optional - latest by default):

cargo install --git {{repo_url}}

Install a package from the specified Git repository:

cargo install --git {{repo_url}} --{{branch|tag|rev}} {{branch_name|tag|commit_hash}}

Build from the specified branch/tag/commit when installing from a Git repository:

🔍

gh auth

View Details ▼

Authenticate with a GitHub host.

gh auth login

Log in with interactive prompt:

echo {{your_token}} | gh auth login --with-token

Log in with a token from `stdin` (created in <https://github.com/settings/tokens>):

gh auth status

Check if you are logged in:

🔍

herdr

View Details ▼

Terminal workspace manager for AI coding agents.
Note: The layout is Session > Workspace > Tab > Pane.
See also: `tmux`, `zellij`, `screen`.

herdr

Start a new session or attach to the default one:

herdr status

Show local client and server status:

herdr --default-config

Generate default config and print to `stdout`:

🔍

ascii

View Details ▼

Show ASCII character aliases.

ascii {{a}}

Show ASCII aliases of a character:

ascii -t {{a}}

Show ASCII aliases in short, script-friendly mode:

ascii -s {{tldr}}

Show ASCII aliases of multiple characters:

🔍

compact

View Details ▼

Display or change the compression state of files and directories on NTFS partitions.

compact

Display the compression status of files in the current directory:

compact /c {{path\to\file}}

Compress a specific file:

compact /u {{path\to\file}}

Uncompress a specific file:

// repository documentation