skillbox 0.1.1 → 0.1.2
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 +4 -13
- package/dist/lib/fetcher.js +0 -1
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# skillbox
|
|
2
2
|
|
|
3
|
-
Local-first, agent-agnostic skills manager. Track, update, and sync skills across popular AI coding agents with one CLI.
|
|
3
|
+
> Local-first, agent-agnostic skills manager. Track, update, and sync skills across popular AI coding agents with one CLI.
|
|
4
|
+
|
|
5
|
+
[](https://github.com/christiananagnostou/skillbox/actions/workflows/ci.yml)
|
|
6
|
+
[](https://www.npmjs.com/package/skillbox)
|
|
4
7
|
|
|
5
8
|
## Installation
|
|
6
9
|
|
|
@@ -10,8 +13,6 @@ Local-first, agent-agnostic skills manager. Track, update, and sync skills acros
|
|
|
10
13
|
npm install -g skillbox
|
|
11
14
|
```
|
|
12
15
|
|
|
13
|
-
TODO: Publish initial npm release
|
|
14
|
-
|
|
15
16
|
### From Source
|
|
16
17
|
|
|
17
18
|
```bash
|
|
@@ -22,15 +23,6 @@ npm run build
|
|
|
22
23
|
npm link --global
|
|
23
24
|
```
|
|
24
25
|
|
|
25
|
-
### Homebrew
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
brew tap christiananagnostou/skillbox
|
|
29
|
-
brew install skillbox
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
TODO: Homebrew formula publishing
|
|
33
|
-
|
|
34
26
|
## CI
|
|
35
27
|
|
|
36
28
|
```bash
|
|
@@ -39,7 +31,6 @@ npm run format:check
|
|
|
39
31
|
npm run build
|
|
40
32
|
```
|
|
41
33
|
|
|
42
|
-
TODO: Publish GitHub Actions badge
|
|
43
34
|
|
|
44
35
|
## Quick Start
|
|
45
36
|
|
package/dist/lib/fetcher.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillbox",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Local-first, agent-agnostic skills manager",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Christian Anagnostou",
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"chalk": "^5.3.0",
|
|
40
40
|
"commander": "^12.0.0",
|
|
41
|
-
"node-fetch": "^3.3.2",
|
|
42
41
|
"zod": "^3.23.8"
|
|
43
42
|
},
|
|
44
43
|
"devDependencies": {
|