Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Fish shell configuration, aliases, gRPC debugging, PostgreSQL CLI helpers, and dev workflow shortcuts for the Anachak platform.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -10% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -4% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 10% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -24% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -39% | 0% |
The developer uses fish shell (/opt/homebrew/bin/fish) with a customized set of aliases, functions, and PostgreSQL helpers stored in ~/.config/fish/conf.d/.
| File | Purpose | |---|---| | ~/.config/fish/conf.d/zzz_aliases.fish | Navigation, git, system, gRPC, Rust/Cargo shortcuts | | ~/.config/fish/conf.d/pg.fish | PostgreSQL CLI toolkit with dot notation + JSON output |
| Topic | File | |---|---| | All aliases & shortcuts | aliases.md | | PostgreSQL helpers | postgresql.md | | gRPC debugging | grpc-debugging.md | | Dev workflow patterns | workflow-patterns.md |
fishdg # cd ~/Documents/Github cw # cargo watch -x run --no-restart (hot reload) cc # cargo check ct # cargo test ship "feat: add billing" # git add -A && commit && push origin main kk # kill all dev server ports
fishpguse anachak_dev # switch active database pg auth_users # dump table as JSON pgc payments # row count pgs subscriptions # schema + indexes pgf auth_users admin email # full-text search pgq "SELECT * FROM..." # raw SQL → JSON
fishlist # list all gRPC services show AuthService # list RPCs for a service call '{"identifier":"admin"}' auth.v1.AuthService/Login # call with JSON
$PG_DB universal variable persists the active database across sessions (default: anachak_dev)localhost:50050 (the Anachak Rust backend default port)kk kills ports: 8080-8082, 50050-50054, 5173-5174, 3000-3002, 9090-9092pg* commands pipe JSON output through jq . for pretty-printingpg anachak_dev.auth_users or pgc rust_grpc.paymentsOther measured skills in the registry, with their headline benchmark lift.