You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-36Lines changed: 23 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,11 @@
9
9
10
10
**Track AI skills and agents declaratively, like dependencies. Pin them. Patch them. Deploy everywhere.**
11
11
12
-
Declare everything in one file. Lock to exact commits. Sync across 8 agentic coding platforms. Customize without losing upstream updates. And even browse for 110K+ community skills without leaving the CLI!
12
+
Declare your skills in a manifest. Pinned to exact commits. Deploys to Claude Code, Cursor, Gemini, and 5 more. Customize without losing upstream updates. Search 110K+ skills from the terminal.
You found a great skill on GitHub and copied the markdown into `.claude/skills/`. Or maybe you found one on[agentskill.sh](https://agentskill.sh) and used their installer. Either way:
16
+
You found a great skill on GitHub and copied the markdown into `.claude/skills/`. Maybe you grabbed one from[agentskill.sh](https://agentskill.sh). So what now?
17
17
18
18
- Each hub has its own install tool
19
19
- Nothing tracks what you installed
@@ -42,50 +42,39 @@ Single binary, 3.5 MB, no runtime dependencies.
42
42
## Quick Start
43
43
44
44
```bash
45
-
skillfile init # pick your platforms
46
-
skillfile search "code review"# browse 110K+ community skills
47
-
skillfile add # wizard to add skills from GitHub/URLs/local/other registries
48
-
skillfile add github skill anthropics/skills skills/slack-gif-creator # Or add a specific skill from github
45
+
skillfile init # pick your platforms
46
+
skillfile add # guided wizard
47
+
skillfile add github skill anthropics/courses skills/ # or add directly
49
48
```
50
49
51
-
On a fresh clone, `skillfile install`reads `Skillfile.lock` and reproduces the exact same install, every file pinned to its commit SHA.
50
+
That's it. Skills are fetched, locked to exact SHAs, and deployed. On a fresh clone, `skillfile install` reproduces the exact same setup.
52
51
53
-
## Search 110K+ community skills
52
+
> Looking for skills to install? See [awesome-agents-and-skills](https://github.com/eljulians/awesome-agents-and-skills) for a curated collection with a ready-to-use Skillfile.
54
53
55
-
Browse [agentskill.sh](https://agentskill.sh/), [skills.sh](https://skills.sh/), and [skillhub.club](https://skillhub.club/) without leaving the terminal. Results are sorted by popularity, deduplicated, and include security scores.
54
+
## Add skills from anywhere
55
+
56
+
Run `skillfile add` for a guided wizard, or use the explicit CLI for any source:
56
57
57
58
```bash
58
-
skillfile search "code review"# interactive TUI with preview
59
-
skillfile search docker --min-score 80 # only high-trust results
60
-
skillfile search testing --registry agentskill.sh # target a single registry
skillfile add github skill anthropics/courses # discover all skills in a repo
61
+
skillfile add github skill anthropics/courses skills/research # add one specific skill
62
+
skillfile add local skill skills/my-custom/SKILL.md # track a local file
63
+
skillfile add url skill https://example.com/skill.md # add from a URL
62
64
```
63
65
64
-
Select a result and skillfile walks you through adding it to your manifest.
66
+
When discovering from a GitHub repo, skillfile opens a split-pane TUI where you can browse entries, preview SKILL.md content, and multi-select what to install. Each selected skill becomes an independent manifest line you can pin, update, or remove individually.
65
67
66
-
## Bulk-add from any repo
68
+
## Search community registries
67
69
68
-
Point at a directory in a GitHub repo and skillfile discovers every skill inside it, even in deeply nested author-namespaced structures. Pick what you want from a split-pane TUI with SKILL.md preview, and all selected entries get added and installed in one shot.
70
+
Browse [agentskill.sh](https://agentskill.sh/), [skills.sh](https://skills.sh/), and [skillhub.club](https://skillhub.club/) without leaving the terminal. Results are sorted by popularity, deduplicated, and include security scores.
69
71
70
72
```bash
71
-
# Discover all skills under skills/ in a repo (note the trailing /)
0 commit comments