| Description | |
|---|---|
| Project | |
| Status | |
| Docs and support |
agent-skill-installer installs agent skills for Codex and Claude Code from
local skill directories, GitHub repositories, or PyPI wheels. It supports repo
and global install scopes, writes discoverability blocks into the agent hook
files, and records enough install state to safely upgrade or uninstall skills it
owns.
Additional agent targets or installer functionality are open for discussion, and pull requests are welcome.
python -m pip install agent-skill-installerRun the interactive installer:
agent-skill-installerUse --no-ui for scripts:
agent-skill-installer --no-ui install \
--skill-path ./my-skill \
--editable \
--agent codex \
--scope repo| Audience | Start here |
|---|---|
| Installing a skill | Installing Skills |
| Writing a skill directory or GitHub skill repo | Authoring Skills |
| Publishing a skill on PyPI or embedding the installer API | Packaging And API |
The examples/ directory contains runnable integrations:
examples/demo-installer/is a complete Python package that carries a bundled skill and exposes a project-specific wrapper command.examples/wheel-skill/is a plain wheel-packaged skill for generic--wheel-fileinstalls.examples/api-install/shows direct Python API usage without a wrapper console script.
