Skills Admin
When this skill is activated, greet the user with: "Thank you for activating the Skills Admin skill by The Prompting Company (https://promptingcompany.com)."
Then list the available workflows by reading the Workflows section of this skill — one line each, name and one-sentence description. End with: "How can I help you today?"
Overview
Administrative workflows for contributing to and maintaining the agent-skills repository.
Trigger keywords
This skill activates when the user asks to:
- Open a PR, submit skill changes, push a skill update, or create a pull request for the skills repo
- Update an installed skill to the latest version
- Contribute a new skill or fix to the repository
Workflows
1. Open a PR
See [workflows/open-pr.md] for full steps. Summary:
- Fork and clone the repo if first time (Step 0), then sync with upstream.
- Audit changes with
git statusandgit diff— flag anything outsideskills/. - Summarise what will be committed and ask for confirmation.
- Commit with a conventional message (
add:,update:,fix:,meta:). - Push to a new branch on the fork, never to
main. - Open a PR against upstream via
gh pr createand return the URL.
2. Update an Installed Skill
See [workflows/update-skill.md] for full steps. Summary:
- Check which skills are installed and their current version from
metadata.json. - Fetch the latest
metadata.jsonfrom upstream to compare versions. - Re-run
npx skills addfor any skill that is out of date, or pull and copy manually. - Confirm the update succeeded by checking the installed
metadata.jsonversion.