agent-skills-standard 1.0.6 → 1.0.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 CHANGED
@@ -43,6 +43,9 @@ npx agent-skills-standard sync
43
43
 
44
44
  # Or install globally
45
45
  npm install -g agent-skills-standard
46
+
47
+ # Use the short alias
48
+ ags sync
46
49
  ```
47
50
 
48
51
  ---
@@ -169,7 +169,7 @@ class InitCommand {
169
169
  console.log(picocolors_1.default.gray(` Auto-enabled languages: ${Array.from(neededSkills)
170
170
  .filter((s) => s !== frameworkId)
171
171
  .join(', ') || 'none'}`));
172
- console.log(picocolors_1.default.cyan('\nNext step: Run `agent-skills sync` to generate rule files.'));
172
+ console.log(picocolors_1.default.cyan('\nNext step: Run `agent-skills-standard sync` to generate rule files.'));
173
173
  }
174
174
  }
175
175
  exports.InitCommand = InitCommand;
@@ -16,7 +16,7 @@ class SyncCommand {
16
16
  const configPath = path_1.default.join(process.cwd(), '.skillsrc');
17
17
  if (!(await fs_extra_1.default.pathExists(configPath))) {
18
18
  console.log(picocolors_1.default.red('❌ Error: .skillsrc not found in current directory.'));
19
- console.log(picocolors_1.default.yellow('Run `agent-skills init` first.'));
19
+ console.log(picocolors_1.default.yellow('Run `agent-skills-standard init` first.'));
20
20
  return;
21
21
  }
22
22
  try {
package/dist/index.js CHANGED
@@ -6,9 +6,9 @@ const init_1 = require("./commands/init");
6
6
  const sync_1 = require("./commands/sync");
7
7
  const program = new commander_1.Command();
8
8
  program
9
- .name('agent-skills')
9
+ .name('agent-skills-standard')
10
10
  .description('A CLI to manage and sync AI agent skills for Cursor, Claude, Copilot, and more.')
11
- .version('1.0.6');
11
+ .version('1.0.7');
12
12
  program
13
13
  .command('init')
14
14
  .description('Initialize a .skillsrc configuration file interactively')
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "agent-skills-standard",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
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": {
7
- "agent-skills-standard": "dist/index.js"
7
+ "agent-skills-standard": "dist/index.js",
8
+ "ags": "dist/index.js"
8
9
  },
9
10
  "files": [
10
11
  "dist"