flins 0.0.2 → 0.0.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.
- package/README.md +51 -1
- package/dist/index.js +151 -89
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1 +1,51 @@
|
|
|
1
|
-
# flins
|
|
1
|
+
# flins
|
|
2
|
+
|
|
3
|
+
Universal skill and command manager for AI coding agents.
|
|
4
|
+
|
|
5
|
+
Install, manage, and update skills and commands across 16+ AI development tools from a single unified interface.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Using npx (recommended)
|
|
11
|
+
npx flins@latest add <source>
|
|
12
|
+
|
|
13
|
+
# Install globally
|
|
14
|
+
npm install -g flins
|
|
15
|
+
flins add <source>
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Quick Start
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# Install from flins directory
|
|
22
|
+
npx flins@latest add better-auth
|
|
23
|
+
|
|
24
|
+
# Install from GitHub
|
|
25
|
+
npx flins@latest add expo/skills
|
|
26
|
+
|
|
27
|
+
# Install from any git repo
|
|
28
|
+
npx flins@latest add https://gitlab.com/org/repo
|
|
29
|
+
|
|
30
|
+
# Install globally
|
|
31
|
+
npx flins@latest add expo --global
|
|
32
|
+
|
|
33
|
+
# Browse available skills
|
|
34
|
+
npx flins@latest search
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Available Commands
|
|
38
|
+
|
|
39
|
+
| Command | Description |
|
|
40
|
+
| ---------------- | ----------------------------------- |
|
|
41
|
+
| `flins add` | Install skills/commands from source |
|
|
42
|
+
| `flins update` | Update installed skills/commands |
|
|
43
|
+
| `flins outdated` | Check for available updates |
|
|
44
|
+
| `flins remove` | Uninstall skills/commands |
|
|
45
|
+
| `flins list` | List all installed skills/commands |
|
|
46
|
+
| `flins search` | Interactive skill browser |
|
|
47
|
+
| `flins clean` | Remove orphaned state entries |
|
|
48
|
+
|
|
49
|
+
## Documentation
|
|
50
|
+
|
|
51
|
+
For complete documentation, see the [main README](https://github.com/flinstech/flins/?tab=readme-ov-file#flins).
|