Pino — save and browse prompts and plans
npx claudepluginhub sonereker/pinoSave and browse prompts and plans using pino CLI
A TUI app for saving and browsing prompts and plans. Built with Bubble Tea.
Pinos are stored as individual markdown files in ~/.pino/.
Sometimes you have an idea of how to do something — you write a prompt, maybe get a plan back — but you're not ready to act on it yet. You don't want to lose it either. Pino is the safe place to stash those prompts and plans so you can come back to them later.

go install github.com/sonereker/pino@latest
Or build from source:
git clone [email protected]:sonereker/pino.git
cd pino
go build -o pino
Install pino as a Claude Code plugin to get the /pino skill:
/plugin marketplace add sonereker/pino
/plugin install pino
Then use /pino in any conversation to save or search prompts and plans.
Once pino is installed, just ask your AI agent (Claude Code, Cursor, etc.) to save the current prompt and plan to pino. The agent can call pino push directly — no need to leave the conversation. Later you can ask the agent to search your saved pinos, or browse them yourself in the TUI.
Example: "Save this prompt and plan to pino" or "Search my pinos for auth migration".
pino
Opens the interactive TUI. Navigate with j/k, press enter to view details, / to filter, x to delete, esc to go back, q to quit.
pino push --summary "Refactor auth flow" --prompt "Help me refactor..." --plan "1. Extract middleware..."
--plan is optional.
pino list
Outputs JSON to stdout.
pino search "auth"
Case-insensitive search across summary, prompt, and plan. Outputs JSON.
pino delete 2026-02-25_refactor-auth-flow
Each pino is a markdown file in ~/.pino/:
~/.pino/2026-02-25_refactor-auth-flow.md
# Refactor auth flow
> 2026-02-25 14:30
## Prompt
Help me refactor the authentication flow to use middleware...
## Plan
1. Extract auth logic into middleware
2. Add token validation
3. Update routes