ralph-starter skill
Manage agent skills — reusable instructions and best practices that enhance your AI coding agent's capabilities.
Synopsis
ralph-starter skill <action> [name]
Description
The skill command manages agent skills for ralph-starter.
Skills are markdown files containing specialized instructions,
best practices, and domain knowledge that are injected into
your coding agent's context. They help the agent write better
code by following established patterns for specific frameworks
and tools.
Skills are installed using the
add-skill
CLI and stored as markdown files in either a global directory
(~/.claude/skills/) or a project-level directory
(.claude/skills/).
Actions
| Action | Aliases | Description |
|---|---|---|
add <repo> | install, i | Install a skill from a git repository |
list | ls | List popular skills from the registry |
search <term> | - | Search for skills by keyword |
browse | - | Interactive skill browser with selection |
Options
| Option | Description | Default |
|---|---|---|
-g, --global | Install the skill globally (all projects) | false |
Examples
Install a Skill
# Install a skill repository
ralph-starter skill add vercel-labs/agent-skills
# Short alias
ralph-starter skill i vercel-labs/agent-skills
# Install globally
ralph-starter skill add vercel-labs/agent-skills --global
List Popular Skills
ralph-starter skill list
Output:
Popular Skills
vercel-labs/agent-skills
React, Next.js, and Vercel best practices
Skills: react-best-practices, nextjs-best-practices,
vercel-best-practices, web-design-review
Install with: ralph-starter skill add <repo>
Browse more: https://github.com/topics/agent-skills
Search for Skills
ralph-starter skill search react
Output:
Searching for: react
vercel-labs/agent-skills
React, Next.js, and Vercel best practices
Interactive Browse
ralph-starter skill browse
This opens an interactive menu where you can select a skill to install from the curated registry.
? Select a skill to install:
> vercel-labs/agent-skills - React, Next.js, Vercel
──────────────
Cancel
Skill Detection
When ralph-starter runs a task, it automatically detects installed skills from three locations:
- Global skills —
~/.claude/skills/*.md - Project skills —
.claude/skills/*.mdin the project - Skills script —
skills.shfiles in the project or global Claude directory
Detected skills are matched against the project's tech stack and included in the agent's prompt context when relevant.
Behavior
- The
addaction usesnpx add-skillunder the hood. Ifadd-skillis not installed, it runs vianpx. - The
listaction shows a curated registry of popular skill repositories. It does not scan local installations. - The
searchaction filters the curated registry by matching repository names, descriptions, and skill names. - The
browseaction presents an interactive list using Inquirer prompts.
See Also
- ralph-starter run — Skills are auto-detected and used during task execution
- Agent Skills on GitHub — Community skill repositories