This repository manages skills for AI agents, tailored for OMP. It uses git submodules to pin skills from other repositories down to commits for dependency management.
A marketplace is a list of pointers; the code that runs on your machine is whatever the plugin entries resolve to. There is no signing, no sandbox, no central review. A catalog can ship a plugin that registers hooks firing on every prompt or custom tools the model calls without confirmation.
-- oh-my-pi
- Add skills: Download skills from other repositories.
- Build skills: Copy skills to the local
skillsfolder. - Remove skills: Delete skills you do not need.
Use just commands to manage these skills.
Download or update the repository submodules:
just update-externalAdd an external repository to this manager:
just add-external <git-repository-url>Note: This command writes a build recipe in the Justfile. You might need to adjust the new build recipe before proceeding to step 3.
Copy all downloaded skills to the local skills folder:
just build-externalTo copy only one module:
just build-external <module-name>Show all installed skill repositories:
just list-externalRemove an external repository from this manager:
just remove-external <repository-name>