Portable AI agent skill distribution. Skills are framework-agnostic instruction sets that extend agent capabilities for specialized tasks — usable by both Claude and Gemini.
| Skill | Description |
|---|---|
| cloudflare-pages | Cloudflare Pages deployment and configuration |
| deep-research | Structured deep research methodology |
| design-lookup | Design system discovery and reference |
| kitchen-sink-design-system | Framework-agnostic Kitchen Sink design system workflow — component inventory, tiered checklists, CVA patterns, voice/tone, image reinterpretation, motion tokens |
| nextjs-tinacms | Next.js 16 + React 19 + TinaCMS — scaffolding through production, 247-task day 0–2 checklist |
| omni-image | OpenAI image generation, editing, vision, batch processing, and transforms |
skills/ ← Source (edit here)
dist/ ← Packaged .skill ZIPs (auto-generated on commit)
hooks/pre-commit ← Auto-packages modified skills into dist/
scripts/ ← Repository maintenance scripts (e.g. audit_skills.py)
tests/ ← Tests for repository maintenance scripts
# From a project repo:
npx skills add kitchen-sink-design-system
# Or manually:
cp -r skills/<name> /path/to/project/.agent/skills/<name>./scripts/install-skills.sh(Note: Do not symlink directly to ~/.gemini/antigravity/skills/ as Gemini reads ~/.gemini/skills/ globally and doing so causes duplicate install warnings.)
- Create
skills/<name>/SKILL.mdwith YAML frontmatter:--- name: my-skill description: What the skill does and when to trigger it. ---
- Add supporting files in
references/,templates/,examples/,scripts/as needed - Verify — Run
python3 scripts/audit_skills.py skillsto ensure compliance (SKILL.md exists, valid frontmatter, no loose files). - Commit — the pre-commit hook packages it into
dist/<name>.skill
.skill files in dist/ are standard ZIP archives. Share them directly or install from the skills/ source directories.