ultra-dex 3.2.0 → 3.3.0

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/bin/ultra-dex.js CHANGED
@@ -21,7 +21,7 @@ if (process.argv.includes('--help') && process.argv.includes('--doomsday')) {
21
21
  }
22
22
 
23
23
  // Check for updates
24
- const pkg = { name: 'ultra-dex', version: '3.2.0' };
24
+ const pkg = { name: 'ultra-dex', version: '3.3.0' };
25
25
  const notifier = updateNotifier({ pkg, updateCheckInterval: 1000 * 60 * 60 * 24 });
26
26
 
27
27
  if (notifier.update) {
@@ -76,13 +76,19 @@ import { registerTeamCommand } from '../lib/commands/team.js';
76
76
  import { registerMemoryCommand } from '../lib/commands/memory.js';
77
77
  import { registerScaffoldCommand } from '../lib/commands/scaffold.js';
78
78
 
79
+ // v3.3.0 Commands - 2026 Competitive Features
80
+ import { registerExecCommand } from '../lib/commands/exec.js';
81
+ import { registerGitHubCommand } from '../lib/commands/github.js';
82
+ import { registerSearchCommand } from '../lib/commands/search.js';
83
+ import { registerCloudCommand } from '../lib/commands/cloud.js';
84
+
79
85
  const program = new Command();
80
86
  program.banner = banner;
81
87
 
82
88
  program
83
89
  .name('ultra-dex')
84
90
  .description('CLI for Ultra-Dex SaaS Implementation Framework')
85
- .version('3.2.0');
91
+ .version('3.3.0');
86
92
 
87
93
  registerInitCommand(program);
88
94
  registerAuditCommand(program);
@@ -164,4 +170,10 @@ registerTeamCommand(program);
164
170
  registerMemoryCommand(program);
165
171
  registerScaffoldCommand(program);
166
172
 
173
+ // v3.3.0 Commands - 2026 Competitive Features
174
+ registerExecCommand(program);
175
+ registerGitHubCommand(program);
176
+ registerSearchCommand(program);
177
+ registerCloudCommand(program);
178
+
167
179
  program.parse();