Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

give-me-tips - Deep Explanations of senpi Tips

Explains any senpi 'Tip:' line in depth by querying the live tip list and verifying the real feature code.

UtilitiesIntermediate67,5315,507AI score 5/10Last updated: Aug 9, 2026

What it does

senpi shows short Tip: lines at startup and while you work. This skill turns any of those one-liners into a real, verified explanation of the mechanism behind it.

  • Runs senpi --list-tips first to get the ground-truth catalog (falls back to reading the tips catalog sources if the flag is missing).
  • Checks the tips toggle in settings.json, tipsHistory cooldown rotation, and requiresCommand gating so it tells you which tips you personally can encounter, not the whole superset.
  • Never invents behavior: it reads the actual implementation in the senpi and oh-my-openagent repos and cites concrete file paths. If the code contradicts the tip text, the code wins.
  • For the Fable-5-refusal tip it walks the full fallback-architect pipeline: refusal detection, architect-category gate, hidden directive, and the visible tip renderer.
  • Answers in whatever language you asked in, with a deliberately "engine room tour" tone: named events, gates, and exact order of operations.

Who it's for

  • Active senpi / oh-my-openagent (omo) users curious about the tips they keep seeing
  • Developers who want event-level and state-machine-level detail, not a paraphrase of the tip
  • Anyone debugging why a given tip does or doesn't appear in their own setup

Examples

  1. "What did that Tip: line mean?" → matches the tip against the live list, opens the relevant feature files, and explains the mechanism step by step.
  2. "What's the tip that shows up after Fable 5 refuses?" → covers refusal detection semantics, the hidden 5-step architect playbook, and the self-cancelling nudge, with file paths.
  3. "Which tips can I actually see?" → reports the tips reachable under your settings and tip history, and why the others are gated out.

· · · Install guide · · ·

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
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill in: cp -r oh-my-openagent/packages/omo-senpi/skills/give-me-tips ~/.claude/skills/
  5. Confirm that ~/.claude/skills/give-me-tips/SKILL.md exists.
  6. Restart Claude Code, then ask "give-me-tips" or "what does this Tip: line mean?".
  7. (Recommended) Have the senpi CLI installed so senpi --list-tips works; without it the explanations lose their ground truth.
View source on GitHubLicense: NOASSERTION