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.
- package/README.md +79 -74
- package/assets/code-patterns/clerk-middleware.ts +138 -0
- package/assets/code-patterns/prisma-schema.prisma +224 -0
- package/assets/code-patterns/rls-policies.sql +246 -0
- package/assets/code-patterns/server-actions.ts +191 -0
- package/assets/code-patterns/trpc-router.ts +258 -0
- package/assets/cursor-rules/13-ai-integration.mdc +155 -0
- package/assets/cursor-rules/14-server-components.mdc +81 -0
- package/assets/cursor-rules/15-server-actions.mdc +102 -0
- package/assets/cursor-rules/16-edge-middleware.mdc +105 -0
- package/assets/cursor-rules/17-streaming-ssr.mdc +138 -0
- package/bin/ultra-dex.js +50 -1
- package/lib/commands/agents.js +16 -13
- package/lib/commands/banner.js +43 -21
- package/lib/commands/build.js +26 -17
- package/lib/commands/cloud.js +780 -0
- package/lib/commands/doctor.js +98 -79
- package/lib/commands/exec.js +434 -0
- package/lib/commands/generate.js +19 -16
- package/lib/commands/github.js +475 -0
- package/lib/commands/init.js +52 -56
- package/lib/commands/scaffold.js +151 -0
- package/lib/commands/search.js +477 -0
- package/lib/commands/serve.js +15 -13
- package/lib/commands/state.js +43 -70
- package/lib/commands/swarm.js +31 -9
- package/lib/config/theme.js +47 -0
- package/lib/mcp/client.js +502 -0
- package/lib/providers/agent-sdk.js +630 -0
- package/lib/providers/anthropic-agents.js +580 -0
- package/lib/templates/code/clerk-middleware.ts +138 -0
- package/lib/templates/code/prisma-schema.prisma +224 -0
- package/lib/templates/code/rls-policies.sql +246 -0
- package/lib/templates/code/server-actions.ts +191 -0
- package/lib/templates/code/trpc-router.ts +258 -0
- package/lib/themes/doomsday.js +229 -0
- package/lib/ui/index.js +5 -0
- package/lib/ui/interface.js +241 -0
- package/lib/ui/spinners.js +116 -0
- package/lib/ui/theme.js +183 -0
- package/lib/utils/agents.js +32 -0
- package/lib/utils/browser.js +373 -0
- package/lib/utils/help.js +64 -0
- package/lib/utils/messages.js +35 -0
- package/lib/utils/progress.js +24 -0
- package/lib/utils/prompts.js +47 -0
- package/lib/utils/spinners.js +46 -0
- package/lib/utils/status.js +31 -0
- package/lib/utils/tables.js +41 -0
- package/lib/utils/theme-state.js +9 -0
- package/lib/utils/version-display.js +32 -0
- 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.
|
|
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"
|