Add to my skills
Opinionated agent skill catalog for Codex, Claude, Cursor, Copilot, and launch workflows.
npx -y skills add oleg-koval/agent-skills --skill add-to-my-skillsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Copy a newly created skill from another repo into this catalog, refresh the README and generated manifests, then commit and push the change. Use when the user wants to bring a skill they built elsewhere into this repository.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.6 KB, as published. Nobody here has run it
Add to My Skills
Use this skill when a skill was created in another repository and needs to be copied into this catalog as a first-class package.
Outcome
Bring the source skill into packages/software-development/, register it in the catalog, refresh generated docs and adapters, and publish the change with a git commit and push.
When to Use
- The user created a new
SKILL.mdin another repo and wants it added here - The user wants this catalog to become the canonical home for that skill
- The user wants the README, generated manifests, commit, and push handled in one pass
Clarify Before Acting
If any of these are unclear, ask up to 3 questions in one batch before editing:
- Source repo or source skill path
- Final skill name if it should differ from the source
- Destination branch or remote if the push target is unclear
Default assumptions when not specified:
- Copy the source skill as a new canonical package in
packages/software-development/<skill-name>/ - Keep the source skill name unless the user asks to rename it
- Use this repository as the destination
- Commit with a conventional commit message and push to the current branch's upstream
Workflow
- Inspect the source skill:
- locate the source
SKILL.md - copy any supporting
references/,scripts/, orassets/files that the skill needs - note any repo-specific assumptions that need to be rewritten for this catalog
- locate the source
- Choose the package location:
- default to
packages/software-development/<skill-name>/ - ensure the package directory name matches the
namefrontmatter value
- default to
- Create or update the canonical package:
- write
SKILL.mdfirst - keep the frontmatter accurate and concise
- make the workflow explicit, actionable, and self-contained
- write
- Register the package in the repository inventory:
- add the package to
catalog/skills.json - add it to the appropriate collection file if it belongs in a bundle
- update
README.mdso the package list, counts, and usage examples stay current
- add the package to
- Refresh generated outputs:
- run
./scripts/build-adapters.sh - run
./scripts/validate-catalog.sh
- run
- Verify the new package actually exists:
- confirm
packages/software-development/<skill-name>/SKILL.md - confirm generated adapter files and prompt files were created
- confirm
- Commit and push:
- inspect
git status - commit the change with a conventional message
- push to the current upstream branch
- inspect
Git Safety
- Never overwrite unrelated changes
- Never force push unless the user explicitly asks
- Never commit secrets copied from the source repo
- If the source skill is incomplete or ambiguous, stop and ask for clarification instead of guessing
Verification
./scripts/build-adapters.shcompletes successfully./scripts/validate-catalog.shpassesgit statusshows only the intended package, catalog, README, and generated filesgit pushsucceeds to the expected remote