Give Me Tips (senpi tip explainer)
Explains any senpi `Tip:` line in depth by querying the live tip list, checking your own settings, and reading the real feature source code.
UtilitiesIntermediate★ 67,531⑂ 5,507AI score 8/10Last updated: Aug 9, 2026
What it does
- Produces a deep, mechanism-level explanation of any senpi tip: startup tips, working tips, and
Tip:lines injected by omo components. - Never explains from memory: runs
senpi --list-tipsto get the ground-truth JSON ({id, text, requiresCommand}) and matches the tip you saw by id or text fragment. - Reads the senpi agent dir
settings.jsonplus tips history so it can tell you which tips you personally can encounter — tips toggle, cooldown rotation,requiresCommandgating, keybinding availability. - Reads the actual feature implementation and cites concrete file paths; if the code contradicts the tip text, the code wins.
- Answers in the language you asked in, and bans vague summaries like "it retries on failure".
Who it's for
- Developers actively using senpi (@code-yeongyu/senpi) and oh-my-openagent (omo).
- Anyone curious about the real engineering behind a one-line tip that flashed by in the TUI.
- Users wondering why a particular tip never shows up for them.
Examples
- "What was that Tip: line?" → matches it against the live tip list and explains the underlying feature with file paths.
- Asking about the tip shown after a Fable 5 refusal → walks the whole
fallback-architectpipeline: refusal detection (detection.ts), architect category gate (architect-gate.ts), hidden directive (directive.ts), visible tip renderer (tip-message.ts). - "Which tips can I see?" → reads your settings and tip history to list only the tips reachable for you, with the gating reason for each.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/HEAD/packages/omo-senpi/skills/give-me-tips/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the packages/omo-senpi/skills/give-me-tips folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/give-me-tips/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent && mkdir -p ~/.claude/skills && cp -r /tmp/oh-my-openagent/packages/omo-senpi/skills/give-me-tips ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent - Create the skills directory:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r /tmp/oh-my-openagent/packages/omo-senpi/skills/give-me-tips ~/.claude/skills/ - Verify it landed:
ls ~/.claude/skills/give-me-tips/SKILL.md - Make sure the senpi CLI is installed — test
senpi --list-tips. If the flag is missing, the skill falls back to reading the installed package sources. - Restart Claude Code and ask "give-me-tips" or "explain that Tip: line".
View source on GitHub ↗License: NOASSERTION