opencode-agents 1.0.15 → 1.0.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-agents",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "CLI for managing AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -20,7 +20,7 @@ program
20
20
  program
21
21
  .command('add <source>')
22
22
  .description('Install one or more agents from a GitHub repository or local path')
23
- .option('-g, --global', 'Install to global directory', false)
23
+ .option('-g, --global', 'Install to global directory')
24
24
  .option('-a, --agent <agents...>', 'Target agent platform(s)')
25
25
  .option('--agent-name <name>', 'Name for the installed agent')
26
26
  .option('-y, --yes', 'Skip confirmation', false)