flins 0.2.5 → 0.2.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 +76 -5
- package/dist/index.js +98 -98
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,16 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
Universal skill and command manager for AI coding agents.
|
|
4
4
|
|
|
5
|
-
Install, manage, and update skills and commands across
|
|
5
|
+
Install, manage, and update skills and commands across 42 supported agent integrations from one CLI.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
# Using
|
|
10
|
+
# Using bunx
|
|
11
|
+
bunx --bun flins@latest add <source>
|
|
12
|
+
|
|
13
|
+
# Using npx
|
|
11
14
|
npx flins@latest add <source>
|
|
12
15
|
|
|
13
|
-
# Install globally
|
|
14
|
-
|
|
16
|
+
# Install globally with Bun
|
|
17
|
+
bun add -g flins
|
|
15
18
|
flins add <source>
|
|
16
19
|
```
|
|
17
20
|
|
|
@@ -19,21 +22,45 @@ flins add <source>
|
|
|
19
22
|
|
|
20
23
|
```bash
|
|
21
24
|
# Install from flins directory
|
|
25
|
+
bunx --bun flins@latest add better-auth
|
|
26
|
+
|
|
27
|
+
# Install from flins directory with npx
|
|
22
28
|
npx flins@latest add better-auth
|
|
23
29
|
|
|
24
30
|
# Install from GitHub
|
|
31
|
+
bunx --bun flins@latest add expo/skills
|
|
32
|
+
|
|
33
|
+
# Install from GitHub with npx
|
|
25
34
|
npx flins@latest add expo/skills
|
|
26
35
|
|
|
27
36
|
# Install from any git repo
|
|
37
|
+
bunx --bun flins@latest add https://gitlab.com/org/repo
|
|
38
|
+
|
|
39
|
+
# Install from any git repo with npx
|
|
28
40
|
npx flins@latest add https://gitlab.com/org/repo
|
|
29
41
|
|
|
30
42
|
# Install from well-known endpoint (RFC)
|
|
43
|
+
bunx --bun flins@latest add developer.cloudflare.com
|
|
44
|
+
|
|
45
|
+
# Install from well-known endpoint (RFC) with npx
|
|
31
46
|
npx flins@latest add developer.cloudflare.com
|
|
32
47
|
|
|
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
|
+
|
|
33
54
|
# Install globally
|
|
55
|
+
bunx --bun flins@latest add expo --global
|
|
56
|
+
|
|
57
|
+
# Install globally with npx
|
|
34
58
|
npx flins@latest add expo --global
|
|
35
59
|
|
|
36
60
|
# Browse available skills
|
|
61
|
+
bunx --bun flins@latest search
|
|
62
|
+
|
|
63
|
+
# Browse available skills with npx
|
|
37
64
|
npx flins@latest search
|
|
38
65
|
```
|
|
39
66
|
|
|
@@ -59,6 +86,7 @@ Works with any RFC-compatible domain.
|
|
|
59
86
|
| Command | Description |
|
|
60
87
|
| ---------------- | ----------------------------------- |
|
|
61
88
|
| `flins add` | Install skills/commands from source |
|
|
89
|
+
| `flins agents` | Show supported agents and folders |
|
|
62
90
|
| `flins update` | Update installed skills/commands |
|
|
63
91
|
| `flins outdated` | Check for available updates |
|
|
64
92
|
| `flins remove` | Uninstall skills/commands |
|
|
@@ -66,12 +94,55 @@ Works with any RFC-compatible domain.
|
|
|
66
94
|
| `flins search` | Interactive skill browser |
|
|
67
95
|
| `flins clean` | Remove orphaned state entries |
|
|
68
96
|
|
|
97
|
+
## Supported Agents
|
|
98
|
+
|
|
99
|
+
flins supports these canonical `--agent` values:
|
|
100
|
+
|
|
101
|
+
| Project folder | Agents | `--agent` values |
|
|
102
|
+
| --------------------- | ------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
|
|
103
|
+
| `.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` |
|
|
104
|
+
| `.agent/skills` | Antigravity | `antigravity` |
|
|
105
|
+
| `.augment/skills` | Augment | `augment` |
|
|
106
|
+
| `.claude/skills` | Claude Code | `claude-code` |
|
|
107
|
+
| `skills/` | OpenClaw | `openclaw` |
|
|
108
|
+
| `.codebuddy/skills` | CodeBuddy | `codebuddy` |
|
|
109
|
+
| `.commandcode/skills` | Command Code | `command-code` |
|
|
110
|
+
| `.continue/skills` | Continue | `continue` |
|
|
111
|
+
| `.cortex/skills` | Cortex Code | `cortex` |
|
|
112
|
+
| `.crush/skills` | Crush | `crush` |
|
|
113
|
+
| `.factory/skills` | Droid | `droid` |
|
|
114
|
+
| `.goose/skills` | Goose | `goose` |
|
|
115
|
+
| `.junie/skills` | Junie | `junie` |
|
|
116
|
+
| `.iflow/skills` | iFlow CLI | `iflow-cli` |
|
|
117
|
+
| `.kilocode/skills` | Kilo Code | `kilo` |
|
|
118
|
+
| `.kiro/skills` | Kiro CLI | `kiro-cli` |
|
|
119
|
+
| `.kode/skills` | Kode | `kode` |
|
|
120
|
+
| `.skills` | Letta | `letta` |
|
|
121
|
+
| `.mcpjam/skills` | MCPJam | `mcpjam` |
|
|
122
|
+
| `.vibe/skills` | Mistral Vibe | `mistral-vibe` |
|
|
123
|
+
| `.mux/skills` | Mux | `mux` |
|
|
124
|
+
| `.openhands/skills` | OpenHands | `openhands` |
|
|
125
|
+
| `.pi/skills` | Pi | `pi` |
|
|
126
|
+
| `.qoder/skills` | Qoder | `qoder` |
|
|
127
|
+
| `.qwen/skills` | Qwen Code | `qwen-code` |
|
|
128
|
+
| `.roo/skills` | Roo Code | `roo` |
|
|
129
|
+
| `.trae/skills` | Trae, Trae CN | `trae`, `trae-cn` |
|
|
130
|
+
| `.windsurf/skills` | Windsurf | `windsurf` |
|
|
131
|
+
| `.zencoder/skills` | Zencoder | `zencoder` |
|
|
132
|
+
| `.neovate/skills` | Neovate | `neovate` |
|
|
133
|
+
| `.pochi/skills` | Pochi | `pochi` |
|
|
134
|
+
| `.adal/skills` | AdaL | `adal` |
|
|
135
|
+
|
|
136
|
+
Run `flins agents` when you want the live project and global folder matrix.
|
|
137
|
+
|
|
69
138
|
## Symlink-First Architecture
|
|
70
139
|
|
|
71
140
|
By default, flins stores source files in `.agents/` and creates symlinks to each agent's directory. This means one source, multiple agents — no duplicate files.
|
|
72
141
|
|
|
73
142
|
Use `--no-symlink` to copy files directly instead.
|
|
74
143
|
|
|
144
|
+
Command installation exists, but it is still experimental and currently limited to `claude-code`, `opencode`, and `droid`.
|
|
145
|
+
|
|
75
146
|
## Documentation
|
|
76
147
|
|
|
77
|
-
For complete documentation, see the [main README](https://github.com/
|
|
148
|
+
For complete documentation, see the [main README](https://github.com/powroom/flins/?tab=readme-ov-file#flins).
|