ワンクリックで
terminal-fish
Fish shell configuration, aliases, gRPC debugging, PostgreSQL CLI helpers, and dev workflow shortcuts for the Anachak platform.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Fish shell configuration, aliases, gRPC debugging, PostgreSQL CLI helpers, and dev workflow shortcuts for the Anachak platform.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | terminal-fish |
| description | Fish shell configuration, aliases, gRPC debugging, PostgreSQL CLI helpers, and dev workflow shortcuts for the Anachak platform. |
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 |
dg # 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
pguse 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
list # 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.paymentsRust gRPC backend patterns, folder structure, module anatomy, and infrastructure wiring for the Anachak multi-tenant SaaS platform.
CI/CD pipeline, Docker multi-stage build, GitHub Actions, and Cloud Run deployment for the Anachak platform.
TanStack Router + React frontend patterns, ConnectRPC gRPC-Web client, Zustand stores, Tailwind v4, i18n, and AppearancePanel theming for the Anachak platform.