flins 0.2.3 → 0.2.4

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.
Files changed (3) hide show
  1. package/README.md +20 -0
  2. package/dist/index.js +96 -96
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -27,6 +27,9 @@ npx flins@latest add expo/skills
27
27
  # Install from any git repo
28
28
  npx flins@latest add https://gitlab.com/org/repo
29
29
 
30
+ # Install from well-known endpoint (RFC)
31
+ npx flins@latest add developer.cloudflare.com
32
+
30
33
  # Install globally
31
34
  npx flins@latest add expo --global
32
35
 
@@ -34,6 +37,23 @@ npx flins@latest add expo --global
34
37
  npx flins@latest search
35
38
  ```
36
39
 
40
+ ## Well-Known Skills Discovery (RFC)
41
+
42
+ flins supports [Cloudflare's Agent Skills Discovery RFC](https://github.com/cloudflare/agent-skills-discovery-rfc). Install skills from any domain hosting a `/.well-known/skills/index.json` endpoint:
43
+
44
+ ```bash
45
+ # Install from Cloudflare docs
46
+ flins add developer.cloudflare.com
47
+
48
+ # List available skills
49
+ flins add developer.cloudflare.com --list
50
+
51
+ # Install specific skill
52
+ flins add developer.cloudflare.com --skill cloudflare
53
+ ```
54
+
55
+ Works with any RFC-compatible domain.
56
+
37
57
  ## Available Commands
38
58
 
39
59
  | Command | Description |