summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2026-03-18 15:48:36 +0100
committerYuval Adam <_@yuv.al>2026-03-18 15:53:05 +0100
commit710bc8f62aa6c35d016cd5418c04bab0aad85000 (patch)
tree69a4e60a8143265fbee2f5ccc046824967c8bedf
parent899394074c53b49987688987da31fd9a7841d1f7 (diff)
Add README
-rw-r--r--README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e1ad56b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,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.