ultra-dex 3.1.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.
Files changed (52) hide show
  1. package/README.md +79 -74
  2. package/assets/code-patterns/clerk-middleware.ts +138 -0
  3. package/assets/code-patterns/prisma-schema.prisma +224 -0
  4. package/assets/code-patterns/rls-policies.sql +246 -0
  5. package/assets/code-patterns/server-actions.ts +191 -0
  6. package/assets/code-patterns/trpc-router.ts +258 -0
  7. package/assets/cursor-rules/13-ai-integration.mdc +155 -0
  8. package/assets/cursor-rules/14-server-components.mdc +81 -0
  9. package/assets/cursor-rules/15-server-actions.mdc +102 -0
  10. package/assets/cursor-rules/16-edge-middleware.mdc +105 -0
  11. package/assets/cursor-rules/17-streaming-ssr.mdc +138 -0
  12. package/bin/ultra-dex.js +50 -1
  13. package/lib/commands/agents.js +16 -13
  14. package/lib/commands/banner.js +43 -21
  15. package/lib/commands/build.js +26 -17
  16. package/lib/commands/cloud.js +780 -0
  17. package/lib/commands/doctor.js +98 -79
  18. package/lib/commands/exec.js +434 -0
  19. package/lib/commands/generate.js +19 -16
  20. package/lib/commands/github.js +475 -0
  21. package/lib/commands/init.js +52 -56
  22. package/lib/commands/scaffold.js +151 -0
  23. package/lib/commands/search.js +477 -0
  24. package/lib/commands/serve.js +15 -13
  25. package/lib/commands/state.js +43 -70
  26. package/lib/commands/swarm.js +31 -9
  27. package/lib/config/theme.js +47 -0
  28. package/lib/mcp/client.js +502 -0
  29. package/lib/providers/agent-sdk.js +630 -0
  30. package/lib/providers/anthropic-agents.js +580 -0
  31. package/lib/templates/code/clerk-middleware.ts +138 -0
  32. package/lib/templates/code/prisma-schema.prisma +224 -0
  33. package/lib/templates/code/rls-policies.sql +246 -0
  34. package/lib/templates/code/server-actions.ts +191 -0
  35. package/lib/templates/code/trpc-router.ts +258 -0
  36. package/lib/themes/doomsday.js +229 -0
  37. package/lib/ui/index.js +5 -0
  38. package/lib/ui/interface.js +241 -0
  39. package/lib/ui/spinners.js +116 -0
  40. package/lib/ui/theme.js +183 -0
  41. package/lib/utils/agents.js +32 -0
  42. package/lib/utils/browser.js +373 -0
  43. package/lib/utils/help.js +64 -0
  44. package/lib/utils/messages.js +35 -0
  45. package/lib/utils/progress.js +24 -0
  46. package/lib/utils/prompts.js +47 -0
  47. package/lib/utils/spinners.js +46 -0
  48. package/lib/utils/status.js +31 -0
  49. package/lib/utils/tables.js +41 -0
  50. package/lib/utils/theme-state.js +9 -0
  51. package/lib/utils/version-display.js +32 -0
  52. package/package.json +19 -4
@@ -0,0 +1,32 @@
1
+ import boxen from 'boxen';
2
+ import chalk from 'chalk';
3
+ import gradient from 'gradient-string';
4
+
5
+ export function showVersionCard() {
6
+ const version = '3.1.0';
7
+ const ultra = gradient(['#6366f1', '#8b5cf6'])('Ultra-Dex');
8
+
9
+ console.log(boxen(
10
+ `${ultra} ${chalk.dim('v')}${chalk.bold.white(version)}
11
+
12
+ ` +
13
+ `${chalk.cyan('◆')} AI Orchestration Meta-Layer
14
+ ` +
15
+ `${chalk.magenta('◆')} 35 Commands • 16 Agents
16
+ ` +
17
+ `${chalk.yellow('◆')} MCP Server • Swarm Mode
18
+
19
+ ` +
20
+ `${chalk.dim('npm install -g ultra-dex')}
21
+ ` +
22
+ `${chalk.dim('github.com/Srujan0798/Ultra-Dex')}`,
23
+ {
24
+ padding: 1,
25
+ margin: 1,
26
+ borderStyle: 'double',
27
+ borderColor: '#8b5cf6',
28
+ title: '🪐 Ultra-Dex',
29
+ titleAlignment: 'center'
30
+ }
31
+ ));
32
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ultra-dex",
3
- "version": "3.1.0",
4
- "description": "AI Orchestration Meta-Layer for SaaS Development",
3
+ "version": "3.3.0",
4
+ "description": "AI Orchestration Meta-Layer for SaaS Development - The Headless CTO",
5
5
  "keywords": [
6
6
  "ai",
7
7
  "orchestration",
@@ -12,7 +12,12 @@
12
12
  "openai",
13
13
  "gemini",
14
14
  "agents",
15
- "swarm"
15
+ "swarm",
16
+ "docker",
17
+ "sandbox",
18
+ "github",
19
+ "browser-automation",
20
+ "agent-sdk"
16
21
  ],
17
22
  "author": "Srujan Sai Karna",
18
23
  "license": "MIT",
@@ -35,11 +40,20 @@
35
40
  },
36
41
  "dependencies": {
37
42
  "@modelcontextprotocol/sdk": "^1.25.3",
43
+ "boxen": "^7.1.1",
38
44
  "chalk": "^5.3.0",
45
+ "cli-table3": "^0.6.5",
39
46
  "commander": "^11.1.0",
47
+ "figures": "^6.1.0",
40
48
  "glob": "^10.5.0",
49
+ "gradient-string": "^2.0.2",
50
+ "ink": "^4.4.1",
51
+ "ink-spinner": "^5.0.0",
41
52
  "inquirer": "^9.2.12",
53
+ "listr2": "^8.3.3",
42
54
  "ora": "^8.0.1",
55
+ "terminal-link": "^3.0.0",
56
+ "update-notifier": "^7.3.1",
43
57
  "ws": "^8.19.0",
44
58
  "zod": "^3.25.76"
45
59
  },
@@ -51,7 +65,8 @@
51
65
  "@anthropic-ai/sdk": "^0.30.0",
52
66
  "@google/generative-ai": "^0.21.0",
53
67
  "dotenv": "^16.4.5",
54
- "openai": "^4.70.0"
68
+ "openai": "^4.70.0",
69
+ "playwright": "^1.41.0"
55
70
  },
56
71
  "devDependencies": {
57
72
  "eslint": "^8.57.0"