uasp-skills 0.1.0 → 0.1.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 +12 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# uasp-skills
|
|
2
2
|
|
|
3
3
|
CLI tool for managing UASP agent skills.
|
|
4
4
|
|
|
@@ -6,10 +6,10 @@ CLI tool for managing UASP agent skills.
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Use directly with npx
|
|
9
|
-
npx
|
|
9
|
+
npx uasp-skills <command>
|
|
10
10
|
|
|
11
11
|
# Or install globally
|
|
12
|
-
npm install -g
|
|
12
|
+
npm install -g uasp-skills
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Commands
|
|
@@ -20,40 +20,40 @@ Install a skill from a GitHub registry:
|
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
22
|
# Install a specific skill
|
|
23
|
-
npx
|
|
23
|
+
npx uasp-skills add https://github.com/ifoster01/uasp/agent-skills --skill agent-browser
|
|
24
24
|
|
|
25
25
|
# Install all skills from a registry
|
|
26
|
-
npx
|
|
26
|
+
npx uasp-skills add https://github.com/ifoster01/uasp/agent-skills --all
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
### List installed skills
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
npx
|
|
32
|
+
npx uasp-skills list
|
|
33
33
|
|
|
34
34
|
# Output as JSON
|
|
35
|
-
npx
|
|
35
|
+
npx uasp-skills list --json
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
### Remove a skill
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
npx
|
|
41
|
+
npx uasp-skills remove agent-browser
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
### Search for skills
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx
|
|
47
|
+
npx uasp-skills search browser
|
|
48
48
|
|
|
49
49
|
# Search a specific registry
|
|
50
|
-
npx
|
|
50
|
+
npx uasp-skills search payment --registry https://github.com/other/skills
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
### Initialize .agent directory
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
npx
|
|
56
|
+
npx uasp-skills init
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
## Directory Structure
|
|
@@ -100,7 +100,7 @@ The `settings.json` file tracks installed skills:
|
|
|
100
100
|
## Programmatic Usage
|
|
101
101
|
|
|
102
102
|
```typescript
|
|
103
|
-
import { loadRegistry, searchSkills, installSkill } from '
|
|
103
|
+
import { loadRegistry, searchSkills, installSkill } from 'uasp-skills';
|
|
104
104
|
|
|
105
105
|
// Load a registry
|
|
106
106
|
const registry = await loadRegistry('https://github.com/ifoster01/uasp/agent-skills');
|