Loading...
Loading...
Manages a JSON registry of project skills, allowing addition of new skills and searching by name or description. Works with skill-creator to automatically register new skills.
npx skill4agent add phar-dev/phardev.dot skill-registryskill-creatorskill-creatorskill-creatorassets/registry.json# Add a new skill to the registry
jq '.skills += [{"name": "new-skill", "description": "Description of new skill"}]' assets/registry.json > temp.json && mv temp.json assets/registry.json
# Search for skills
jq '.skills[] | select(.name | contains("search-term"))' assets/registry.json