@feiyoug/skill-lab 0.0.0 → 0.0.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.
- package/README.md +74 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Skill Lab
|
|
2
|
+
|
|
3
|
+
Skill Lab is a toolkit for deterministic analysis of AI agent skills.
|
|
4
|
+
|
|
5
|
+
It helps teams inspect skill behavior before enablement by producing structured
|
|
6
|
+
permission and risk output.
|
|
7
|
+
|
|
8
|
+
## Install the CLI (`slab`)
|
|
9
|
+
|
|
10
|
+
#### Homebrew
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
brew tap feiyoug/tap/slab
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
or
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
brew tap feiyoug/tap
|
|
20
|
+
brew install slab
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
#### Verify installation:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
slab --help
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
For other install options, please see our [docs](https://skill-lab.pages.dev/cli/installation).
|
|
30
|
+
|
|
31
|
+
## Install the library
|
|
32
|
+
|
|
33
|
+
#### npm
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npm install @FeiyouG/skill-lab
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
#### pnpm
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pnpm add @FeiyouG/skill-lab
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
#### Deno
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
deno add npm:@FeiyouG/skill-lab
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Use in code:
|
|
52
|
+
|
|
53
|
+
```ts
|
|
54
|
+
import { Analyzer } from "@FeiyouG/skill-lab";
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Quick example
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
slab analyze ./path/to/skill --json
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Documentation
|
|
64
|
+
|
|
65
|
+
- Docs site: `https://skill-lab.pages.dev`
|
|
66
|
+
|
|
67
|
+
## Repository layout
|
|
68
|
+
|
|
69
|
+
- `packages/skillreader` - skill repository readers
|
|
70
|
+
- `packages/analyzer` - deterministic analysis pipeline
|
|
71
|
+
- `packages/shared` - shared domain and API types
|
|
72
|
+
- `packages/cli` - `slab` command-line interface
|
|
73
|
+
|
|
74
|
+
For contributor workflows, see `CONTRIBUTING.md`.
|