skyl.dev 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 +77 -0
- package/dist/cli.js +1 -1
- package/node_modules/@skyl/core/package.json +1 -1
- package/package.json +4 -3
package/README.md
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# skyl
|
|
2
|
+
|
|
3
|
+
Curated AI agent skills, installed for what your project actually uses.
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npx skyl.dev scan
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
`scan` reads your build files and proposes the skills that match. Nothing is written without
|
|
10
|
+
asking, and every command prints what it would write first.
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
Detected
|
|
14
|
+
android/core new **/src/main/AndroidManifest.xml
|
|
15
|
+
android/compose new androidx.compose.material3:material3
|
|
16
|
+
android/db new androidx.room:room-runtime
|
|
17
|
+
android/di new com.google.dagger:hilt-android
|
|
18
|
+
|
|
19
|
+
Considered and not detected
|
|
20
|
+
android/java android/mvvm android/xml
|
|
21
|
+
|
|
22
|
+
8 to install, ~12,300 tokens into .claude/skills
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Commands
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
skyl scan read the project and propose an install
|
|
29
|
+
skyl add <skill> install skills and what they require
|
|
30
|
+
skyl remove <skill> take them back out
|
|
31
|
+
skyl list what is installed, and what has moved since
|
|
32
|
+
skyl diff what changed here, and what changed upstream
|
|
33
|
+
skyl update apply the upstream side, keeping local edits
|
|
34
|
+
skyl audit read a hand-written CLAUDE.md and say what is in it
|
|
35
|
+
skyl context emit what a model needs to describe this project
|
|
36
|
+
skyl learn derive a project knowledge skill from this repository
|
|
37
|
+
skyl lint check skills against the spec
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Where it writes
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
--target claude .claude/skills/ (default)
|
|
44
|
+
--target cursor .cursor/rules/
|
|
45
|
+
--target windsurf .windsurf/rules/
|
|
46
|
+
--target continue .continue/rules/
|
|
47
|
+
--target agents .agents/skills/
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## How it works
|
|
51
|
+
|
|
52
|
+
**Detection reads build files as text.** No Gradle invocation, no toolchain, no build. It is
|
|
53
|
+
instant and works on a project that does not currently compile. The cost is that a dependency
|
|
54
|
+
assembled at runtime from variables is missed, which is why `scan` proposes and never installs on
|
|
55
|
+
its own.
|
|
56
|
+
|
|
57
|
+
**Only the rules are installed.** A skill in the registry carries its reasoning, its pitfalls and
|
|
58
|
+
the evidence behind it. None of that reaches the model. Your agent gets the rules; the rest stays in
|
|
59
|
+
the repository for a human to read.
|
|
60
|
+
|
|
61
|
+
**Installs are recorded in `skyl.lock`** with a content hash of what was written, so `update` can
|
|
62
|
+
tell a local edit from an upstream change. The fix differs: one is your work to keep, the other is
|
|
63
|
+
ours to offer. When both moved, it stops and shows you the diff.
|
|
64
|
+
|
|
65
|
+
**The registry ships inside this package**, so the first run works with no network. `--refresh`
|
|
66
|
+
prefers the network when currency matters more than speed.
|
|
67
|
+
|
|
68
|
+
## The skills
|
|
69
|
+
|
|
70
|
+
[github.com/skyl-dev/skyl](https://github.com/skyl-dev/skyl). Every skill states what it is for,
|
|
71
|
+
where it does not apply, and what was measured.
|
|
72
|
+
|
|
73
|
+
## Status
|
|
74
|
+
|
|
75
|
+
Early. The API and the output are still moving.
|
|
76
|
+
|
|
77
|
+
MIT
|
package/dist/cli.js
CHANGED
|
@@ -11,7 +11,7 @@ import { scan } from "./commands/scan.js";
|
|
|
11
11
|
import { update } from "./commands/update.js";
|
|
12
12
|
import { bold, cyan, dim, err, out, red } from "./ui.js";
|
|
13
13
|
// kept in step with package.json by a test, rather than read at startup
|
|
14
|
-
const VERSION = '0.1.
|
|
14
|
+
const VERSION = '0.1.1';
|
|
15
15
|
const HELP = `
|
|
16
16
|
${bold('skyl')} ${dim('curated agent skills for what your project actually uses')}
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skyl.dev",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Install curated AI agent skills for what your project actually uses",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
-
"bundle.json"
|
|
12
|
+
"bundle.json",
|
|
13
|
+
"README.md"
|
|
13
14
|
],
|
|
14
15
|
"keywords": [
|
|
15
16
|
"ai",
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
"prepack": "tsc -b && node ../../scripts/build-bundle.mjs"
|
|
26
27
|
},
|
|
27
28
|
"dependencies": {
|
|
28
|
-
"@skyl/core": "
|
|
29
|
+
"@skyl/core": "0.1.1"
|
|
29
30
|
},
|
|
30
31
|
"engines": {
|
|
31
32
|
"node": ">=20"
|