
Pino
- Updated March 19, 2026
- sonereker/pino
pino is a Claude Code skill in the AI & Agent Building category. Save and browse prompts and plans using pino CLI
Key points
- pino
- AI & Agent Building
- AI-coding skill
Pino by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add sonereker/pino/plugin install pino@pinoAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | March 19, 2026 |
|---|---|
| Repository | sonereker/pino ↗ |
What it does
Save and browse prompts and plans using pino CLI
README.md
pino
A TUI app for saving and browsing prompts and plans. Built with Bubble Tea.
Pinos are stored as individual markdown files in ~/.pino/.
Why
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.

Install
go install github.com/sonereker/pino@latest
Or build from source:
git clone git@github.com:sonereker/pino.git
cd pino
go build -o pino
Claude Code Plugin
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.
Usage with AI agents
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".
CLI
TUI
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.
Push a pino
pino push --summary "Refactor auth flow" --prompt "Help me refactor..." --plan "1. Extract middleware..."
--plan is optional.
List all pinos
pino list
Outputs JSON to stdout.
Search pinos
pino search "auth"
Case-insensitive search across summary, prompt, and plan. Outputs JSON.
Delete a pino
pino delete 2026-02-25_refactor-auth-flow
Storage format
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