| sidebar_position | 10 | |||||||
|---|---|---|---|---|---|---|---|---|
| title | ralph-starter skill | |||||||
| description | Manage agent skills for enhanced AI coding capabilities | |||||||
| keywords |
|
Manage agent skills — reusable instructions and best practices that enhance your AI coding agent's capabilities.
ralph-starter skill <action> [name]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/).
| 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 |
| Option | Description | Default |
|---|---|---|
-g, --global |
Install the skill globally (all projects) | false |
# 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 --globalralph-starter skill listOutput:
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
ralph-starter skill search reactOutput:
Searching for: react
vercel-labs/agent-skills
React, Next.js, and Vercel best practices
ralph-starter skill browseThis 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
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.
Auto skill discovery is enabled by default. ralph-starter queries the skills.sh API to find and install relevant skills automatically before each run.
To disable it, set:
RALPH_DISABLE_SKILL_AUTO_INSTALL=1- 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.
- ralph-starter run — Skills are auto-detected and used during task execution
- Agent Skills on GitHub — Community skill repositories