findskill 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +68 -0
- package/package.json +4 -3
package/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# findskill.md
|
|
2
|
+
|
|
3
|
+
findskill.md is a CLI for discovering and installing SKILL.md format skills for Claude.
|
|
4
|
+
|
|
5
|
+
## Why it exists
|
|
6
|
+
|
|
7
|
+
Until Anthropic or another major platform ships an official skills registry, this fills the gap.
|
|
8
|
+
|
|
9
|
+
### How it works
|
|
10
|
+
|
|
11
|
+
- Skills are discovered by searching for SKILL.md files on GitHub.
|
|
12
|
+
- Results are ranked with a bias toward star count to surface trusted repos.
|
|
13
|
+
- Approved skills are added to the registry.
|
|
14
|
+
- Install counts are tracked to provide additional social proof.
|
|
15
|
+
|
|
16
|
+
### How to use it
|
|
17
|
+
|
|
18
|
+
A simple workflow is to instruct your agent to use findskill when it believes a task requires a specialized skill. The agent can then search, inspect, and install the right skill on demand.
|
|
19
|
+
|
|
20
|
+
### Other CLIs
|
|
21
|
+
|
|
22
|
+
Just symlink Claude's skill directory to your other CLI config directory.
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
# replace with .gemini .codex ...
|
|
26
|
+
ln -s ~/.claude/skills ~/.your-other-cli/skills
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Usage
|
|
30
|
+
|
|
31
|
+
findskill [command] [options]
|
|
32
|
+
|
|
33
|
+
## Commands
|
|
34
|
+
|
|
35
|
+
search <query> Search by name, description, or tags
|
|
36
|
+
info <name> Show details for a skill
|
|
37
|
+
install <name> Install a skill to your skills directory
|
|
38
|
+
list List installed skills
|
|
39
|
+
update [name] Update all skills or a single skill
|
|
40
|
+
submit <github-url> Submit a SKILL.md URL for review
|
|
41
|
+
help Show command help
|
|
42
|
+
|
|
43
|
+
## Options
|
|
44
|
+
|
|
45
|
+
search: --page <number>
|
|
46
|
+
info: --path <path>
|
|
47
|
+
install: --path <path>, --force
|
|
48
|
+
list: --path <path>
|
|
49
|
+
update: --path <path>
|
|
50
|
+
|
|
51
|
+
## Examples
|
|
52
|
+
|
|
53
|
+
findskill search git
|
|
54
|
+
findskill info commit
|
|
55
|
+
findskill install commit
|
|
56
|
+
findskill list
|
|
57
|
+
findskill update
|
|
58
|
+
findskill submit https://github.com/you/your-skill/blob/main/my-skill
|
|
59
|
+
|
|
60
|
+
## Submit a skill
|
|
61
|
+
|
|
62
|
+
Use the submit command to add your skill repo to the registry.
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
findskill submit https://github.com/you/your-skill
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
The registry will review the repo and publish it if it matches the SKILL.md format.
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "findskill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "CLI for discovering and installing SKILL.md format skills",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"findskill": "./dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
|
-
"dist"
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
11
12
|
],
|
|
12
13
|
"scripts": {
|
|
13
14
|
"dev": "bun run src/index.ts",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"license": "MIT",
|
|
40
41
|
"repository": {
|
|
41
42
|
"type": "git",
|
|
42
|
-
"url": "https://github.com/alentodorov/findskill"
|
|
43
|
+
"url": "https://github.com/alentodorov/findskill.md"
|
|
43
44
|
},
|
|
44
45
|
"homepage": "https://findskill.md"
|
|
45
46
|
}
|