flins 0.2.6 → 0.3.1

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 +8 -10
  2. package/dist/index.js +89 -156
  3. package/package.json +3 -5
package/README.md CHANGED
@@ -7,12 +7,15 @@ Install, manage, and update skills and commands across 42 supported agent integr
7
7
  ## Installation
8
8
 
9
9
  ```bash
10
- # Using bunx
10
+ # Local install with bunx (default)
11
11
  bunx --bun flins@latest add <source>
12
12
 
13
- # Using npx
13
+ # Local install with npx (default)
14
14
  npx flins@latest add <source>
15
15
 
16
+ # Explicit global install
17
+ bunx --bun flins@latest add <source> --global
18
+
16
19
  # Install globally with Bun
17
20
  bun add -g flins
18
21
  flins add <source>
@@ -45,12 +48,6 @@ bunx --bun flins@latest add developer.cloudflare.com
45
48
  # Install from well-known endpoint (RFC) with npx
46
49
  npx flins@latest add developer.cloudflare.com
47
50
 
48
- # Inspect supported agents and folders
49
- bunx --bun flins@latest agents
50
-
51
- # Inspect supported agents and folders with npx
52
- npx flins@latest agents
53
-
54
51
  # Install globally
55
52
  bunx --bun flins@latest add expo --global
56
53
 
@@ -86,7 +83,6 @@ Works with any RFC-compatible domain.
86
83
  | Command | Description |
87
84
  | ---------------- | ----------------------------------- |
88
85
  | `flins add` | Install skills/commands from source |
89
- | `flins agents` | Show supported agents and folders |
90
86
  | `flins update` | Update installed skills/commands |
91
87
  | `flins outdated` | Check for available updates |
92
88
  | `flins remove` | Uninstall skills/commands |
@@ -98,6 +94,8 @@ Works with any RFC-compatible domain.
98
94
 
99
95
  flins supports these canonical `--agent` values:
100
96
 
97
+ Local installs default to `universal`, which writes to `.agents/skills` and is picked up by Amp, Cline, Codex, Cursor, Gemini CLI, GitHub Copilot, Kimi Code CLI, OpenCode, Replit, and Universal. In the interactive local installer, that shared folder appears once as `universal` instead of repeating those agents as separate checkboxes.
98
+
101
99
  | Project folder | Agents | `--agent` values |
102
100
  | --------------------- | ------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
103
101
  | `.agents/skills` | Amp, Cline, Codex, Cursor, Gemini CLI, GitHub Copilot, Kimi Code CLI, OpenCode, Replit, Universal | `amp`, `cline`, `codex`, `cursor`, `gemini-cli`, `github-copilot`, `kimi-cli`, `opencode`, `replit`, `universal` |
@@ -133,7 +131,7 @@ flins supports these canonical `--agent` values:
133
131
  | `.pochi/skills` | Pochi | `pochi` |
134
132
  | `.adal/skills` | AdaL | `adal` |
135
133
 
136
- Run `flins agents` when you want the live project and global folder matrix.
134
+ See the Supported Agents table above when you need canonical ids and project folders.
137
135
 
138
136
  ## Symlink-First Architecture
139
137