Open-source skills for Claude Code.
Each skill lives in its own directory and is centered around a SKILL.md entry point plus any bundled scripts it needs.
| Skill | What it does | Requirements |
|---|---|---|
| gemini-image-gen | Generate images with the official Gemini API and save organized output folders with prompt.md, generated image files, and optional request.json. |
GEMINI_API_KEY or GOOGLE_API_KEY |
npx skills add aouos/skillsInstall a single skill with Claude Code:
claude skill add --from https://github.com/aouos/skills/tree/main/gemini-image-genFor gemini-image-gen, set GEMINI_API_KEY or GOOGLE_API_KEY in your environment before use.
Get a key from Google AI Studio.
- Claude Code uses a skill's
descriptionto decide when to trigger it. SKILL.mdcontains the workflow and usage guidance the agent follows.- Bundled scripts are usually non-interactive CLI tools; the interactive experience comes from the agent workflow, not from the script prompting on its own.
skills/
├── <skill-name>/
│ ├── SKILL.md
│ └── scripts/
└── ...
PRs are welcome. When adding a new skill:
- Create a directory named after the skill.
- Add a concise
SKILL.mdwith accuratenameanddescriptionfrontmatter. - Keep scripts small and dependency-light; prefer standard library tooling when possible.
- Put durable workflow guidance in
SKILL.mdand avoid overloading it with fast-changing product details. - Verify the skill can be installed and that its main command path works end to end.