nex-framework-cli 1.0.9 → 1.0.12

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/cli/nex-cli.js CHANGED
@@ -28,10 +28,10 @@ program.configureHelp({
28
28
  program
29
29
  .name('nex')
30
30
  .description('NEX Framework - Framework completo de agentes AI')
31
- .version('1.0.8', '-v, --version', 'Mostra a versão')
31
+ .version('1.0.11', '-v, --version', 'Mostra a versão')
32
32
  .addHelpText('before', chalk.bold.cyan(`
33
33
  ╔════════════════════════════════════════════════════════════════╗
34
- ║ NEX Framework - CLI v1.0.8
34
+ ║ NEX Framework - CLI v1.0.9
35
35
  ║ Framework completo de agentes AI ║
36
36
  ╚════════════════════════════════════════════════════════════════╝
37
37
  `))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nex-framework-cli",
3
- "version": "1.0.9",
3
+ "version": "1.0.12",
4
4
  "description": "NEX CLI - Command-line interface for NEX Framework and Agent Marketplace",
5
5
  "type": "module",
6
6
  "main": "cli/nex-cli.js",
@@ -18,6 +18,7 @@
18
18
  "scripts": {
19
19
  "prepublishOnly": "npm run test",
20
20
  "test": "node cli/nex-cli.js --version",
21
+ "test:api": "node scripts/test-marketplace-api.js",
21
22
  "publish:cli": "node scripts/publish-cli.js",
22
23
  "publish:cli:dry": "node scripts/publish-cli.js --dry-run"
23
24
  },