ggscodelab
v1.2.0
Published
Install AI agent skills from GGsCodeLab/skills into your project
Downloads
576
Maintainers
Readme
ggscodelab
Install AI agent skills from GGsCodeLab/skills into your project.
Usage
Install (fails if the skill folder already exists):
npx ggscodelab install-skill <skill-name> --cursor | --claude | --copilotUpdate (overwrites existing skill after confirmation, or use --yes to skip prompt):
npx ggscodelab update-skill <skill-name> --cursor | --claude | --copilot [--yes]Examples:
# Cursor (.cursor/skills/dev-team-lead/)
npx ggscodelab install-skill dev-team-lead --cursor
# Claude (claude/dev-team-lead/)
npx ggscodelab install-skill dev-team-lead --claude
# GitHub Copilot (.github/skills/dev-team-lead/)
npx ggscodelab install-skill dev-team-lead --copilot
# Update existing skill (prompts: Overwrite existing skill at ...? (y/N))
npx ggscodelab update-skill dev-team-lead --cursor
# Update without prompt (e.g. in scripts)
npx ggscodelab update-skill dev-team-lead --cursor --yesSkills are downloaded from the public repo. Use update-skill to replace an existing installation; you will be asked to confirm unless you pass --yes.
Publishing
From this directory:
npm publishThen anyone can run npx ggscodelab install-skill dev-team-lead --cursor without cloning the repo.
