skill
Manage agent skills with the `skill` CLI when installing suitable skills, inspecting favorites, or maintaining GitHub-backed skill installs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage agent skills with the `skill` CLI when installing suitable skills, inspecting favorites, or maintaining GitHub-backed skill installs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
| name | skill |
| description | Manage agent skills with the `skill` CLI when installing suitable skills, inspecting favorites, or maintaining GitHub-backed skill installs. |
skill installs agent skills from GitHub into the current project or the user's global skill root.
For agents, the main job is not to expose every command. The main job is to help the user get the right skills into the current project with the least machinery.
Before using this tool, inspect its command surface once:
skill @schema
Commands use dotted paths and one quoted object literal. Use the schema output to learn the exact input type instead of guessing it from memory.
.agents/skills state before deciding what to install.skill favorite.list to inspect the user's curated refs.owner/repo/skill when they already exist.--global only when the user explicitly wants a cross-project install.skill list after installation when the user asked for concrete setup work.Prefer non-interactive installs whenever you already know the exact skill IDs:
skill add "{ repo: 'owner/repo/skill' }"
skill add "{ repo: 'owner/repo', skills: 'skill-a,skill-b' }"
skill add "{ repo: 'owner/repo', skills: 'core/{skill-a,skill-b},claude/skill-c' }"
Use a repo map when the repo is a broad skill catalog and you do not need specific local bundles:
skill install "{ repo: ['owner/repo'], map: true }"
Use repo-level favorites as broader hints, not as the first choice for automation.
owner/repo/skill: strongest signal, install directlyowner/repo: broader signal, may install a repo map or require a second selection stepIf repo-level and skill-level favorites for the same repo are both selected, treat the repo-level favorite as the install scope and the skill-level favorites as default selections within that repo.
Repo maps are project-local synthetic skills for broad catalogs. They keep one visible skill folder and route to upstream source files with ctx read github://owner/repo/<path>.
Use a map when the user wants coverage from a repo that has multiple skills and no obvious single target. Do not install a pile of separate skills just because the repo exposes them separately.
Interactive project installs offer a repo map alongside individual skills. The two modes are mutually exclusive. Non-interactive installs must choose explicitly with --map or --skills.
Project-scope skill update regenerates maps recorded in .agents/skills/manifest.json.
findUse skill find "{ query: '<query>' }" only when at least one of these is true:
Do not start with find if the favorites already contain a good match.
skill @schema for command discovery, then use structured object input.skill favorite.install and skill favorite.remove without ids are interactive flows. Use them only when prompt-driven selection is acceptable in the current session.skill add "{ repo: 'owner/repo' }" may prompt. Non-interactive installs must pass skills or explicitly use map through install.These are valid tools, but they are not the default agent path.
skill favorite.refresh: refresh cached descriptions and remove upstream refs that no longer existskill update: refresh installed skills from upstreamskill remove "{ repo: ['owner/repo/skill'] }": remove installed skillsskill favorite.add / skill favorite.remove: manage the user's favorite refsUse maintenance commands when the user asks for maintenance. Do not churn installed skills or favorites unprompted.
favorite add or favorite refresh fails because gh is not authenticated, tell the user to run gh auth login and retry.--skills 'skill,variant/{skill,...}' or use --map when a repo-level index is the right outcome.