Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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.

UtilitiesIntermediate67,5315,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-tips to 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.json plus tips history so it can tell you which tips you personally can encounter — tips toggle, cooldown rotation, requiresCommand gating, 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

  1. "What was that Tip: line?" → matches it against the live tip list and explains the underlying feature with file paths.
  2. Asking about the tip shown after a Fable 5 refusal → walks the whole fallback-architect pipeline: refusal detection (detection.ts), architect category gate (architect-gate.ts), hidden directive (directive.ts), visible tip renderer (tip-message.ts).
  3. "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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repository: git clone https://github.com/code-yeongyu/oh-my-openagent.git /tmp/oh-my-openagent
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy just this skill: cp -r /tmp/oh-my-openagent/packages/omo-senpi/skills/give-me-tips ~/.claude/skills/
  5. Verify it landed: ls ~/.claude/skills/give-me-tips/SKILL.md
  6. 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.
  7. Restart Claude Code and ask "give-me-tips" or "explain that Tip: line".
View source on GitHubLicense: NOASSERTION