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.
@@ -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
- const skillFolderName = `${skill.category}-${skill.skill}`;
224
- const skillPath = path_1.default.join(basePath, skillFolderName);
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.5');
11
+ .version('1.0.6');
12
12
  program
13
13
  .command('init')
14
14
  .description('Initialize a .skillsrc configuration file interactively')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-skills-standard",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "A CLI to manage and sync AI agent skills standard for Cursor, Claude, Copilot, and more.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {