@gopherhole/cli 0.1.16 → 0.1.17

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/dist/index.js CHANGED
@@ -1095,6 +1095,7 @@ ${chalk_1.default.bold('Examples:')}
1095
1095
  .option('--skill-tag <skillTag>', 'Filter by skill tag')
1096
1096
  .option('--content-mode <contentMode>', 'Filter by content mode (MIME type)')
1097
1097
  .option('--owner <owner>', 'Filter by organization/tenant name')
1098
+ .option('--verified', 'Only show agents from verified organizations')
1098
1099
  .option('-s, --sort <sort>', 'Sort by: rating, popular, recent', 'rating')
1099
1100
  .option('-l, --limit <limit>', 'Number of results (max 50)', '10')
1100
1101
  .option('-o, --offset <offset>', 'Pagination offset')
@@ -1115,6 +1116,8 @@ ${chalk_1.default.bold('Examples:')}
1115
1116
  params.set('contentMode', options.contentMode);
1116
1117
  if (options.owner)
1117
1118
  params.set('owner', options.owner);
1119
+ if (options.verified)
1120
+ params.set('verified', 'true');
1118
1121
  if (options.sort)
1119
1122
  params.set('sort', options.sort);
1120
1123
  if (options.limit)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gopherhole/cli",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "GopherHole CLI - Connect AI agents to the world",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -1216,6 +1216,7 @@ ${chalk.bold('Examples:')}
1216
1216
  .option('--skill-tag <skillTag>', 'Filter by skill tag')
1217
1217
  .option('--content-mode <contentMode>', 'Filter by content mode (MIME type)')
1218
1218
  .option('--owner <owner>', 'Filter by organization/tenant name')
1219
+ .option('--verified', 'Only show agents from verified organizations')
1219
1220
  .option('-s, --sort <sort>', 'Sort by: rating, popular, recent', 'rating')
1220
1221
  .option('-l, --limit <limit>', 'Number of results (max 50)', '10')
1221
1222
  .option('-o, --offset <offset>', 'Pagination offset')
@@ -1231,6 +1232,7 @@ ${chalk.bold('Examples:')}
1231
1232
  if (options.skillTag) params.set('skillTag', options.skillTag);
1232
1233
  if (options.contentMode) params.set('contentMode', options.contentMode);
1233
1234
  if (options.owner) params.set('owner', options.owner);
1235
+ if (options.verified) params.set('verified', 'true');
1234
1236
  if (options.sort) params.set('sort', options.sort);
1235
1237
  if (options.limit) params.set('limit', options.limit);
1236
1238
  if (options.offset) params.set('offset', options.offset);