@stefafafan/skm 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/dist/src/materialize.js +0 -5
- package/package.json +2 -2
package/dist/src/materialize.js
CHANGED
|
@@ -24,11 +24,6 @@ async function materializeSkill(options) {
|
|
|
24
24
|
else if (!(await (0, fs_1.pathExists)(node_path_1.default.join(outputDir, "SKILL.md")))) {
|
|
25
25
|
throw new errors_1.SkmError(`Materialized skill at ${outputDir} is missing SKILL.md`, 4);
|
|
26
26
|
}
|
|
27
|
-
await (0, promises_1.writeFile)(node_path_1.default.join(outputDir, ".skm-meta.json"), `${JSON.stringify({
|
|
28
|
-
source: options.manifestSource,
|
|
29
|
-
resolved: options.resolved,
|
|
30
|
-
strategy: options.strategy,
|
|
31
|
-
}, null, 2)}\n`);
|
|
32
27
|
return outputDir;
|
|
33
28
|
}
|
|
34
29
|
async function wrapSkillMarkdown(skillMdPath, canonicalName, manifestSource, resolved) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stefafafan/skm",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"author": "stefafafan",
|
|
3
|
+
"version": "0.1.1",
|
|
5
4
|
"private": false,
|
|
6
5
|
"description": "A package manager for AI Agent Skills. Supports installation, version management, and renaming of skills. Can be used for both global and project specific skill management.",
|
|
7
6
|
"keywords": [
|
|
@@ -15,6 +14,7 @@
|
|
|
15
14
|
"url": "https://github.com/stefafafan/skm/issues"
|
|
16
15
|
},
|
|
17
16
|
"license": "MIT",
|
|
17
|
+
"author": "stefafafan",
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
20
|
"url": "git+https://github.com/stefafafan/skm.git"
|