blob: e1ad56be8aff381f029e386fd2453b5080c2dce6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Skills
A collection of agentic skills, primarily for the [pi](https://pi.dev/) coding agent.
Skills are self-contained capability packages that an agent loads on-demand, providing specialized workflows, setup instructions, helper scripts, and reference documentation.
## Available Skills
| Skill | Description |
|-------|-------------|
| [youtube-transcript](youtube-transcript/) | Fetch and save YouTube video transcripts as clean plain text |
## Usage
Install a skill directly from this repo using pi:
```
pi install skill <github-url>/skill-name
```
Or manually copy a skill directory into your skills folder — either globally (`~/.pi/agent/skills/`) or into a project-level `.pi/agent/skills/` directory.
## Adding a Skill
Each skill lives in its own directory and must contain a `SKILL.md` file with frontmatter (`name`, `description`) and usage instructions. See the [Agent Skills specification](https://agentskills.io/specification) for details.
|