aweskill 0.1.5 → 0.1.7
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 +119 -51
- package/README.zh-CN.md +121 -49
- package/dist/index.js +504 -275
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/resources/skill_archives/.gitkeep +1 -0
- package/resources/skill_archives/backup.md +7 -0
- /package/{template/bundles → resources/bundle_templates}/K-Dense-AI-scientific-skills.yaml +0 -0
- /package/{template/bundles → resources/bundle_templates}/Superpowers.yaml +0 -0
- /package/{template/bundles → resources/bundle_templates}/global.yaml +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aweskill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Local skill orchestration CLI",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
|
-
"
|
|
11
|
+
"resources",
|
|
12
12
|
"README.md",
|
|
13
13
|
"README.zh-CN.md"
|
|
14
14
|
],
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"aweskill": "dist/index.js"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "tsup",
|
|
19
|
+
"build": "tsup --config config/tsup.config.ts",
|
|
20
20
|
"dev": "tsx src/index.ts",
|
|
21
21
|
"prepare": "npm run build",
|
|
22
22
|
"prepack": "npm run build",
|
|
23
|
-
"test": "vitest run"
|
|
23
|
+
"test": "vitest run --config config/vitest.config.ts"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=20"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Skill Archive Backups
|
|
2
|
+
|
|
3
|
+
This directory is reserved for repository-level skill archive backups that can be shared with other users.
|
|
4
|
+
|
|
5
|
+
For a curated external backup collection, see [oh-my-skills](https://github.com/mugpeng/oh-my-skills).
|
|
6
|
+
|
|
7
|
+
`aweskill` does not generate, sync, or restore these archives automatically. They are distributed as reference backups that users manage manually.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|