ck-skills
A marketplace of production-ready skills for Claude Code and GitHub Copilot CLI.

Available Skills
| Skill | Description | Activation Intent |
|---|
| sdd-project-init | Bootstrap a new project with Spec-Driven Development structure | "initialize a new project" |
| doc-review-commands | Keep documentation in sync with code changes | "review my documentation" |
| skill-builder | Create new production-ready skills in minutes | "create a new skill" |
| sdd-git-commit | Professional SDD Git commit workflow | "commit my changes" |
| python-lint-fix | Auto-fix and format Python and Markdown code | "fix/lint my code" |
Installation
Claude Code, GitHub Copilot CLI, and Gemini CLI are supported.
Add the marketplace (one-time)
Claude Code:
claude plugin marketplace add github:kimcharli/ck-skills
Copilot CLI:
copilot plugin marketplace add kimcharli/ck-skills
Gemini CLI:
Gemini CLI uses a skill-based system. You can install individual skills directly from this repository.
Install individual skills
Claude Code:
claude plugin install sdd-project-init@ck-skills
claude plugin install doc-review-commands@ck-skills
claude plugin install skill-builder@ck-skills
claude plugin install sdd-git-commit@ck-skills
claude plugin install python-lint-fix@ck-skills
Copilot CLI:
copilot plugin install sdd-project-init@ck-skills
copilot plugin install doc-review-commands@ck-skills
copilot plugin install skill-builder@ck-skills
copilot plugin install sdd-git-commit@ck-skills
copilot plugin install python-lint-fix@ck-skills
Gemini CLI:
gemini skills install https://github.com/kimcharli/ck-skills.git --path plugins/sdd-project-init
gemini skills install https://github.com/kimcharli/ck-skills.git --path plugins/doc-review-commands
gemini skills install https://github.com/kimcharli/ck-skills.git --path plugins/skill-builder
gemini skills install https://github.com/kimcharli/ck-skills.git --path plugins/sdd-git-commit
gemini skills install https://github.com/kimcharli/ck-skills.git --path plugins/python-lint-fix
Install directly from repo (no marketplace registration)
claude plugin install kimcharli/ck-skills
# or
copilot plugin install kimcharli/ck-skills
# or for Gemini (all skills in plugins folder)
gemini skills install https://github.com/kimcharli/ck-skills.git --path plugins
Manual install (local clone)
git clone https://github.com/kimcharli/ck-skills.git
cd ck-skills/plugins/<skill-name>
chmod +x install.sh && ./install.sh
Troubleshooting: If install fails with "Plugin not found" after adding a
new plugin, the marketplace cache may be stale. See docs/troubleshooting.md.
Quick Start by Skill
All skills are AI-Native. You don't need to remember slash commands; just tell the tool what you want to do.
sdd-project-init — Bootstrap a new SDD project
"initialize a new project with SDD"
Runs a 7-question interview, then generates a fully populated project with
AGENTS.md (the AI constitution), specs/, and docs/.
doc-review-commands — Keep docs in sync
"review my documentation and update the changelog"
Or more focused:
"update SDD specs for the new feature"
"run a documentation QA check"
skill-builder — Create new skills
"help me build a new skill for [purpose]"
Repository Structure