https://github.com/cytoph/agent-skills
Agent Skills for Claude Code, Codex CLI, and other skills-compatible agents.
https://github.com/cytoph/agent-skills
agent-skills agents ai claude-code codex skills
Last synced: 27 days ago
JSON representation
Agent Skills for Claude Code, Codex CLI, and other skills-compatible agents.
- Host: GitHub
- URL: https://github.com/cytoph/agent-skills
- Owner: cytoph
- License: mit
- Created: 2026-04-14T22:56:41.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-04-14T23:49:54.000Z (2 months ago)
- Last Synced: 2026-04-15T01:38:43.650Z (2 months ago)
- Topics: agent-skills, agents, ai, claude-code, codex, skills
- Language: Shell
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# agent-skills
A personal collection of agent skills by [cytoph](https://github.com/cytoph).
These skills follow the [Agent Skills specification](https://agentskills.io/specification) so they can be used by any skills-compatible agent, including Claude Code and Codex CLI.
## Table of Contents
- [Installation](#installation)
- [Skills](#skills)
## Installation
### Global install
Makes all skills available in every project.
**macOS / Linux:**
```bash
curl -fsSL https://raw.githubusercontent.com/cytoph/agent-skills/main/scripts/install.sh | bash
```
**Windows (PowerShell):**
```powershell
irm https://raw.githubusercontent.com/cytoph/agent-skills/main/scripts/install.ps1 | iex
```
**Windows (CMD):**
```cmd
curl -fsSL https://raw.githubusercontent.com/cytoph/agent-skills/main/scripts/install.cmd -o install.cmd && install.cmd && del install.cmd
```
### Project-level install
To install for a single project only, download the [appropriate script file](scripts/) into the folder that contains your `.claude` directory, then run it passing `--local`:
**macOS / Linux:** `bash install.sh --local`
**Windows (PowerShell):** `.\install.ps1 -Local`
**Windows (CMD):** `install.cmd --local`
After installing, reload skills in your agent (e.g. `/reload-plugins` for Claude Code).
## Skills
### `install-git-skills`
Installs skills from a Git repository into your project or user-level `.claude/skills` directory. Point it at any repo and optionally filter which skill folders to install. Once invoked, it creates a `.gs-meta` source file and immediately fetches the skills — after that, `update-git-skills` takes over for future updates.
### `update-git-skills`
Checks all registered `.gs-meta` sources against their upstream repos and downloads updates when something has changed. Run it periodically to keep your installed skills current, or after manually adding a new `.gs-meta` file. Supports updating project-level and user-level skills independently.