lazy-skill 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 +15 -0
- package/package.json +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Lazy Skill
|
|
2
|
+
|
|
3
|
+
**See it. Search it. Install it.**
|
|
4
|
+
|
|
5
|
+
Found an AI skill while scrolling? Stop hunting for the repo, the README, and
|
|
6
|
+
the install command buried in step four.
|
|
7
|
+
|
|
8
|
+
## Not released yet
|
|
9
|
+
|
|
10
|
+
This version reserves the name. The CLI is built but is not published until
|
|
11
|
+
its service is live, because a released `npx lazy-skill connect` needs a real
|
|
12
|
+
server to pair against — shipping one that points nowhere would just waste
|
|
13
|
+
your time.
|
|
14
|
+
|
|
15
|
+
Watch this space, or check back for `0.1.0`.
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lazy-skill",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Lazy Skill — see it, search it, install it. Not released yet.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "ketchupketchup",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"ai",
|
|
9
|
+
"skills",
|
|
10
|
+
"claude",
|
|
11
|
+
"codex",
|
|
12
|
+
"cursor",
|
|
13
|
+
"cli"
|
|
14
|
+
],
|
|
15
|
+
"files": [
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
}
|
|
21
|
+
}
|