Installs a skill from a GitHub repository or a local directory into a skills directory.
Usage
add_skill(source, path = skill_path(), skill = NULL, overwrite = FALSE)Arguments
- source
One of:
A GitHub URL pointing to a repo, e.g.
"https://github.com/owner/repo".A GitHub URL pointing to a subdirectory, e.g.
"https://github.com/owner/repo/tree/main/path/to/skill".A GitHub shorthand, e.g.
"owner/repo".A local directory path containing a
SKILL.mdfile.
- path
The skills directory to install into. Defaults to
skill_path(), which resolves the agent fromWF_AGENT, a directory scan, or falls back to"claude_code".- skill
For multi-skill repositories that store skills under a
skills/subdirectory, the name of the skill to install, e.g.skill = "proofread". When supplied, the skill is read fromskills/<skill>within the repository. Ignored whensourcealready points to a specific subdirectory via/tree/....- overwrite
If
FALSE(the default), an error is raised if the skill is already installed. Set toTRUEto replace it.
Examples
src <- tempfile()
dir.create(src)
writeLines(
c('---', 'name: example', 'description: An example skill.', '---'),
file.path(src, 'SKILL.md')
)
add_skill(src, tempfile())
#> Installed skill "example" to /tmp/RtmpdP4Y9A/file19426b59f4cc/example.
