findskill 0.1.3 → 0.1.5

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 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/dist/index.js CHANGED
@@ -11509,11 +11509,14 @@ var updateCommand = new Command("update").description("Update installed skills t
11509
11509
 
11510
11510
  // src/commands/submit.ts
11511
11511
  var import_picocolors7 = __toESM(require_picocolors(), 1);
11512
- var submitCommand = new Command("submit").description("Submit a new skill from a GitHub URL").argument("<github-url>", "GitHub URL to a SKILL.md file").action(async (githubUrl) => {
11512
+ var submitCommand = new Command("submit").description("Submit a new skill from a GitHub URL (folder or SKILL.md file)").argument("<github-url>", "GitHub URL to a skill folder or SKILL.md file").action(async (githubUrl) => {
11513
11513
  if (!githubUrl.includes("github.com") && !githubUrl.includes("gist.github")) {
11514
11514
  consola.error("Please provide a valid GitHub or Gist URL.");
11515
11515
  process.exit(1);
11516
11516
  }
11517
+ if (!githubUrl.endsWith(".md") && !githubUrl.includes("gist.github")) {
11518
+ githubUrl = githubUrl.replace(/\/$/, "") + "/SKILL.md";
11519
+ }
11517
11520
  const spinner = ora("Submitting skill...").start();
11518
11521
  try {
11519
11522
  const skill = await submitSkill(githubUrl);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "findskill",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "CLI for discovering and installing SKILL.md format skills",
5
5
  "type": "module",
6
6
  "bin": {
@@ -39,7 +39,7 @@
39
39
  "license": "MIT",
40
40
  "repository": {
41
41
  "type": "git",
42
- "url": "https://github.com/alentodorov/findskill"
42
+ "url": "https://github.com/alentodorov/findskill.md"
43
43
  },
44
44
  "homepage": "https://findskill.md"
45
45
  }