binary-agents 1.0.14 → 1.0.15

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.
Files changed (2) hide show
  1. package/bin/cli.js +1 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -17,7 +17,7 @@ program
17
17
  .option('-g, --global', 'Install to ~/.claude/ instead of current directory')
18
18
  .option('--agents', 'Sync only agents (subagents)')
19
19
  .option('--commands', 'Sync only commands (slash commands)')
20
- .option('--clean', 'Remove existing files before sync')
20
+ .option('-c, --clean', 'Remove existing files before sync')
21
21
  .action(async (options) => {
22
22
  // --agents 또는 --commands가 명시되지 않으면 둘 다 동기화
23
23
  const syncAgents = options.agents || (!options.agents && !options.commands);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "binary-agents",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Claude Code subagents and slash commands collection with sync CLI tool",
5
5
  "type": "module",
6
6
  "main": "src/sync.js",