Files
claude-skills-reference/GEMINI.md

68 lines
2.1 KiB
Markdown

# Gemini CLI Foundations
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.
## Using Skills with Gemini CLI
Gemini CLI can activate any skill in this repository using the `activate_skill` tool.
### Skill Locations
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/` |
### Activating a Skill
To activate a skill, use the folder name. For example:
```javascript
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.
## Agents & Commands
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:
```javascript
activate_skill(name="cs-engineering-lead")
activate_skill(name="tdd")
```
## Python Automation Tools
Each skill includes deterministic Python CLI tools in its `scripts/` folder. These use the standard library only.
Example usage:
```bash
python3 marketing-skill/content-production/scripts/seo_checker.py article.txt
```
## Setup for Gemini CLI Users
Run the setup script to initialize the Gemini-specific skill index and symlinks:
```bash
./scripts/gemini-install.sh
```
This will create a `.gemini/skills/` directory for easier discovery.