opencode-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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-agents",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "CLI for managing AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -29,6 +29,7 @@ program
29
29
 
30
30
  program
31
31
  .command('list')
32
+ .alias('ls')
32
33
  .description('List installed agents')
33
34
  .option('-g, --global', 'List only global agents')
34
35
  .option('-a, --agent <agent>', 'Filter by platform')