agent-skills-standard 1.0.5 → 1.0.6
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/commands/sync.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/commands/sync.js
CHANGED
|
@@ -220,8 +220,8 @@ class SyncCommand {
|
|
|
220
220
|
// We do NOT use emptyDir here because we want to preserve user's own custom skills
|
|
221
221
|
await fs_extra_1.default.ensureDir(basePath);
|
|
222
222
|
for (const skill of skills) {
|
|
223
|
-
|
|
224
|
-
const skillPath = path_1.default.join(basePath,
|
|
223
|
+
// Use nested structure: category/skill (e.g. flutter/bloc)
|
|
224
|
+
const skillPath = path_1.default.join(basePath, skill.category, skill.skill);
|
|
225
225
|
await fs_extra_1.default.ensureDir(skillPath);
|
|
226
226
|
for (const fileItem of skill.files) {
|
|
227
227
|
const targetFilePath = path_1.default.join(skillPath, fileItem.name);
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ const program = new commander_1.Command();
|
|
|
8
8
|
program
|
|
9
9
|
.name('agent-skills')
|
|
10
10
|
.description('A CLI to manage and sync AI agent skills for Cursor, Claude, Copilot, and more.')
|
|
11
|
-
.version('1.0.
|
|
11
|
+
.version('1.0.6');
|
|
12
12
|
program
|
|
13
13
|
.command('init')
|
|
14
14
|
.description('Initialize a .skillsrc configuration file interactively')
|