This repository is a comprehensive skills library for Gemini CLI - reusable, production-ready skill packages that bundle domain expertise, best practices, analysis tools, and strategic frameworks.
Gemini CLI can activate any skill in this repository using the activate_skill tool.
Skills are organized into domain folders. Each skill is a directory containing a SKILL.md file.
| Domain | Folder |
|---|---|
| Engineering (Core) | engineering-team/ |
| Engineering (Advanced) | engineering/ |
| Product Team | product-team/ |
| Marketing Skills | marketing-skill/ |
| C-Level Advisory | c-level-advisor/ |
| Project Management | project-management/ |
| Regulatory & QM | ra-qm-team/ |
| Business & Growth | business-growth/ |
| Finance | finance/ |
When skills are published to ClawHub (clawhub.com):
- cs- prefix for slug conflicts only — applies only on the ClawHub registry when another publisher already owns the slug. Repo folder names and local skill names are never renamed.
- No paid/commercial service dependencies — skills must not require paid third-party API keys or commercial services unless provided by the project itself.
- plugin.json — ONLY fields:
name,description,version,author,homepage,repository,license,skills: "./". - Rate limit: 5 new skills/hour on ClawHub. Use drip publishing for bulk operations.
To activate a skill, use the folder name. For example:
activate_skill(name="senior-architect")
activate_skill(name="content-creator")
activate_skill(name="cto-advisor")The Gemini CLI will search for the corresponding SKILL.md file within the repository and load its instructions.
In addition to skills, this repository provides specialized Agents and Commands.
- Agents (
agents/): Multi-agent personas for complex coordination (e.g.,cs-engineering-lead). - Commands (
commands/): Predefined workflows for common tasks (e.g.,/tdd,/tech-debt).
Activate them as skills:
activate_skill(name="cs-engineering-lead")
activate_skill(name="tdd")Each skill includes deterministic Python CLI tools in its scripts/ folder. These use the standard library only.
Example usage:
python3 marketing-skill/content-production/scripts/seo_checker.py article.txtRun the setup script to initialize the Gemini-specific skill index and symlinks:
./scripts/gemini-install.shThis will create a .gemini/skills/ directory for easier discovery.