BrowseGuide to using skills
The field manual

Using skills at Triumph

A “skill” is a small packaged prompt plus optional reference material that teaches Claude how to do one job reliably. Same SKILL.md format, two runtimes: Claude Code and Claude Cowork. Distributed as zip folders.

Pick your runtimeThe guide below adapts to the runtime you choose.
01

What it is

Claude Code is the terminal-first Claude — you run claude inside a git repo and it can read/edit files, run shell commands, and call skills. Skills live in the repo itself, so anyone who clones gets the same set. Good fit for engineering workflows: code review, migrations, test writing, refactors, SQL against the warehouse, on-call triage.

02

Where skills live

Skills are one piece of a broader .claude/ folder you commit to the repo. Everything in here is shared with the team on the next pull. Here's the layout Rock RMS uses — it's a good reference for any Triumph repo:

your-project/# any repo
├─.claude/# checked into git — shared with the team
├─README.md# team guide
├─settings.json# shared permissions + hooks
├─settings.local.json# personal overrides (gitignored)
├─commands/# short slash commands
├─build.md
├─test.md
└─check.md
├─hooks/# safety guards
└─prevent-destructive.sh
├─rules/# auto-loaded by file path
├─code-conventions.md# always loaded
├─data-model.md# always loaded
└─block-architecture.md# loads when editing blocks
└─skills/# on-demand workflows (marketplace-distributed)
├─bugfix/
└─SKILL.md
└─convert-block/
├─SKILL.md
├─references/
└─scripts/
├─CLAUDE.md# top-level directive (optional)
├─src/# your code — untouched
└─README.md
  • skills/ — on-demand workflows that fire when you ask. This is what the marketplace distributes. Each is a folder with a SKILL.md plus optional references/scripts.
  • commands/ — short named slash commands like /build, /test, /check. One markdown file per command. Simpler than a skill; good for frequent repo actions.
  • rules/ — context Claude loads automatically based on file paths. code-conventions.md and data-model.md are always on; path-specific ones (e.g. block-architecture.md) kick in when you're editing files that match.
  • hooks/ — safety guards that intercept commands (e.g. blocking git push --force to protected branches).
  • settings.json — shared permissions. Pair it with settings.local.json (gitignored) for personal overrides.
See it in the wild: the Rock RMS .claude/ folder is public and well-documented — worth reading its README.md before structuring your own repo. Claude Code also reads ~/.claude/skills/ from your home directory for personal skills that apply to every repo; repo skills win on a name clash.
03

Install a skill

On a skill's detail page, hit Download zip and unzip into .claude/skills/<slug>/. Or copy the install command and paste it into the repo:

$ cd your-project
$ claude skill install triumph/review-prd

✓ Fetched review-prd from Triumph Skills
✓ Added .claude/skills/review-prd/
✓ Indexed 1 new skill — ready to use.

Commit the new folder so the skill ships with your repo.

$ git add .claude/skills/review-prd
$ git commit -m "Add review-prd skill"
04

Invoke a skill

Two ways to fire a skill:

  • Explicit slash command. /bugfix Finance/TransactionList.ascx.cs resets on page load — always works, always unambiguous. Use this when you need guaranteed behaviour.
  • Natural-language match. fix this bug in TransactionList — the grid filter resets on reload — Claude decides whether to invoke the skill based on what you said and what the skill claims to do. Feels magic when it works, confusing when it doesn't.

You'll see skill: bugfix in the output header when a skill fires.

Prioritise good descriptions

Without the slash command, Claude picks skills by matching your prompt against each one's description. Name when it should fire and when it shouldn't — vague descriptions fire unpredictably.

Good
Fix a known bug in the Rock RMS codebase. Use when the user says "fix this bug", describes a bug with file paths or issue numbers, or pastes an error / stack trace with intent to fix. Do NOT use for finding bugs (use /check), adding features, or refactoring.
Bad
Fixes bugs in Rock.
05

Anatomy of a SKILL.md

A skill is a markdown file with a YAML frontmatter block — that's it. Here's a minimal one:

---
name: review-prd
version: 1.4.0
description: >
  Structured review of a product PRD.
  Flags missing sections, fuzzy success metrics,
  and undefined dependencies.
runtimes: [code, cowork]
triggers:
  - "review this PRD"
  - "/review-prd"
  - "check .* for gaps"
tags: [product, review]
---

# Review PRD

You are reviewing a PRD for completeness and clarity.

## Checklist
1. Has a one-line problem statement…
2. Success metrics are quantified…
3. Dependencies are named…

## Output format
Return a markdown table with columns:
"Section | Status | Gap | Suggested fix"

Everything below the frontmatter is prose that gets prepended to Claude's context when the skill fires. Keep it tight — every token you add here is a token Claude reads on every invocation.

Required fields: name, version, description, triggers, tags. runtimes defaults to both if omitted. The marketplace validates these on upload and tells you exactly what's missing.
06

Updating & uninstalling

  • Update: claude skill update review-prd pulls the latest version. Skills in your repo pin to a version, so teammates won't get surprise updates.
  • Uninstall: delete the folder. rm -rf .claude/skills/review-prd.
  • Disable temporarily: add the skill id to .claude/settings.json under "disabled_skills".
  • Publish a new version: bump version in SKILL.md, re-zip, click Publish new version on the detail page. No review queue — your version goes live immediately.
07

Troubleshooting

  • Claude ignores the skill. Run claude skill list to confirm it's loaded. If not, check SKILL.md has valid YAML frontmatter (closing ---).
  • Wrong skill fires. Triggers can collide. Be explicit with /skill-id or tighten the triggers regex.
  • Skill worked yesterday, broken today. Run claude skill doctor review-prd — it reports version drift, stale assets, and malformed frontmatter.
  • Skill has a bug. Use Request modification on the detail page — the author gets a notification. For something unsafe, hit Report.

Get a markdown editor

SKILL.md is a plain markdown file with a YAML frontmatter block. You can write it in TextEdit or nano, but a real markdown editor saves you hours — live preview, frontmatter syntax highlighting, and drag-and-drop links to asset files. Any of these work; pick one and stick with it.

Got one worth sharing?

Post a skill you've used at least twice

That's the bar. The marketplace is built for the small, specific ones — earn enough upvotes and Triumph admins may curate it into the Standard set.

Post a skill