@mandujs/mcp 0.36.2 → 0.37.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/package.json +4 -4
- package/src/activity-adapter.ts +23 -23
- package/src/adapters/index.ts +20 -20
- package/src/adapters/monitor-adapter.ts +100 -100
- package/src/adapters/tool-adapter.ts +90 -90
- package/src/executor/index.ts +22 -22
- package/src/executor/tool-executor.ts +148 -148
- package/src/hooks/config-watcher.ts +173 -173
- package/src/hooks/index.ts +23 -23
- package/src/hooks/mcp-hooks.ts +227 -227
- package/src/index.ts +0 -0
- package/src/logging/index.ts +15 -15
- package/src/logging/mcp-transport.ts +134 -134
- package/src/profiles.ts +34 -34
- package/src/registry/index.ts +13 -13
- package/src/registry/mcp-tool-registry.ts +298 -298
- package/src/resources/skills/guides.ts +1136 -1136
- package/src/resources/skills/index.ts +12 -12
- package/src/resources/skills/mandu-composition/SKILL.md +91 -91
- package/src/resources/skills/mandu-composition/metadata.json +13 -13
- package/src/resources/skills/mandu-composition/rules/_sections.md +26 -26
- package/src/resources/skills/mandu-composition/rules/_template.md +77 -77
- package/src/resources/skills/mandu-composition/rules/comp-arch-avoid-boolean-props.md +146 -146
- package/src/resources/skills/mandu-composition/rules/comp-arch-compound-components.md +164 -164
- package/src/resources/skills/mandu-composition/rules/comp-island-event.md +161 -161
- package/src/resources/skills/mandu-composition/rules/comp-island-slot-split.md +167 -167
- package/src/resources/skills/mandu-composition/rules/comp-pattern-children.md +149 -149
- package/src/resources/skills/mandu-composition/rules/comp-state-context-interface.md +148 -148
- package/src/resources/skills/mandu-composition/rules/comp-state-lift-state.md +150 -150
- package/src/resources/skills/mandu-deployment/SKILL.md +92 -92
- package/src/resources/skills/mandu-deployment/_sections.md +41 -41
- package/src/resources/skills/mandu-deployment/_template.md +38 -38
- package/src/resources/skills/mandu-deployment/metadata.json +13 -13
- package/src/resources/skills/mandu-deployment/rules/db-provider-supabase.md +300 -300
- package/src/resources/skills/mandu-deployment/rules/deploy-build-bun.md +109 -109
- package/src/resources/skills/mandu-deployment/rules/deploy-build-output.md +115 -115
- package/src/resources/skills/mandu-deployment/rules/deploy-cicd-github.md +219 -219
- package/src/resources/skills/mandu-deployment/rules/deploy-docker-bun.md +150 -150
- package/src/resources/skills/mandu-deployment/rules/deploy-docker-compose.md +223 -223
- package/src/resources/skills/mandu-deployment/rules/deploy-platform-fly.md +152 -152
- package/src/resources/skills/mandu-deployment/rules/deploy-platform-render.md +179 -179
- package/src/resources/skills/mandu-deployment/rules/deploy-platform-vercel.md +140 -140
- package/src/resources/skills/mandu-fs-routes/SKILL.md +82 -82
- package/src/resources/skills/mandu-fs-routes/metadata.json +12 -12
- package/src/resources/skills/mandu-fs-routes/rules/_sections.md +36 -36
- package/src/resources/skills/mandu-fs-routes/rules/_template.md +69 -69
- package/src/resources/skills/mandu-fs-routes/rules/routes-api-methods.md +65 -65
- package/src/resources/skills/mandu-fs-routes/rules/routes-dynamic-param.md +93 -93
- package/src/resources/skills/mandu-fs-routes/rules/routes-naming-page.md +55 -55
- package/src/resources/skills/mandu-guard/SKILL.md +129 -129
- package/src/resources/skills/mandu-guard/metadata.json +12 -12
- package/src/resources/skills/mandu-guard/rules/_sections.md +36 -36
- package/src/resources/skills/mandu-guard/rules/_template.md +82 -82
- package/src/resources/skills/mandu-guard/rules/guard-config-rules.md +100 -100
- package/src/resources/skills/mandu-guard/rules/guard-layer-direction.md +76 -76
- package/src/resources/skills/mandu-guard/rules/guard-preset-mandu.md +81 -81
- package/src/resources/skills/mandu-guard/rules/guard-validate-import.md +80 -80
- package/src/resources/skills/mandu-hydration/SKILL.md +91 -91
- package/src/resources/skills/mandu-hydration/metadata.json +12 -12
- package/src/resources/skills/mandu-hydration/rules/_sections.md +31 -31
- package/src/resources/skills/mandu-hydration/rules/_template.md +72 -72
- package/src/resources/skills/mandu-hydration/rules/hydration-data-event.md +109 -109
- package/src/resources/skills/mandu-hydration/rules/hydration-directive-use-client.md +55 -55
- package/src/resources/skills/mandu-hydration/rules/hydration-island-setup.md +113 -113
- package/src/resources/skills/mandu-hydration/rules/hydration-priority-visible.md +68 -68
- package/src/resources/skills/mandu-performance/SKILL.md +85 -85
- package/src/resources/skills/mandu-performance/metadata.json +14 -14
- package/src/resources/skills/mandu-performance/rules/_sections.md +31 -31
- package/src/resources/skills/mandu-performance/rules/_template.md +64 -64
- package/src/resources/skills/mandu-performance/rules/perf-async-defer-await.md +103 -103
- package/src/resources/skills/mandu-performance/rules/perf-async-parallel.md +95 -95
- package/src/resources/skills/mandu-performance/rules/perf-bun-file.md +124 -124
- package/src/resources/skills/mandu-performance/rules/perf-bun-serve.md +125 -125
- package/src/resources/skills/mandu-performance/rules/perf-bundle-imports.md +80 -80
- package/src/resources/skills/mandu-performance/rules/perf-bundle-island-lazy.md +145 -145
- package/src/resources/skills/mandu-performance/rules/perf-cache-react.md +98 -98
- package/src/resources/skills/mandu-performance/rules/perf-render-transitions.md +154 -154
- package/src/resources/skills/mandu-security/SKILL.md +87 -87
- package/src/resources/skills/mandu-security/metadata.json +13 -13
- package/src/resources/skills/mandu-security/rules/_sections.md +31 -31
- package/src/resources/skills/mandu-security/rules/_template.md +74 -74
- package/src/resources/skills/mandu-security/rules/sec-auth-guard.md +127 -127
- package/src/resources/skills/mandu-security/rules/sec-env-management.md +133 -133
- package/src/resources/skills/mandu-security/rules/sec-input-validate.md +148 -148
- package/src/resources/skills/mandu-security/rules/sec-protect-csrf.md +146 -146
- package/src/resources/skills/mandu-security/rules/sec-protect-headers.md +138 -138
- package/src/resources/skills/mandu-slot/SKILL.md +85 -85
- package/src/resources/skills/mandu-slot/metadata.json +12 -12
- package/src/resources/skills/mandu-slot/rules/_sections.md +36 -36
- package/src/resources/skills/mandu-slot/rules/_template.md +63 -63
- package/src/resources/skills/mandu-slot/rules/slot-basic-structure.md +38 -38
- package/src/resources/skills/mandu-slot/rules/slot-ctx-response.md +56 -56
- package/src/resources/skills/mandu-slot/rules/slot-guard-auth.md +59 -59
- package/src/resources/skills/mandu-slot/rules/slot-http-methods.md +64 -64
- package/src/resources/skills/mandu-styling/SKILL.md +154 -154
- package/src/resources/skills/mandu-styling/_sections.md +43 -43
- package/src/resources/skills/mandu-styling/_template.md +32 -32
- package/src/resources/skills/mandu-styling/metadata.json +15 -15
- package/src/resources/skills/mandu-styling/rules/style-component-compound.md +235 -235
- package/src/resources/skills/mandu-styling/rules/style-component-slots.md +255 -255
- package/src/resources/skills/mandu-styling/rules/style-component-tokens.md +205 -205
- package/src/resources/skills/mandu-styling/rules/style-island-animations.md +272 -272
- package/src/resources/skills/mandu-styling/rules/style-island-scoping.md +167 -167
- package/src/resources/skills/mandu-styling/rules/style-island-variants.md +221 -221
- package/src/resources/skills/mandu-styling/rules/style-perf-critical.md +209 -209
- package/src/resources/skills/mandu-styling/rules/style-perf-purge.md +192 -192
- package/src/resources/skills/mandu-styling/rules/style-setup-modules.md +162 -162
- package/src/resources/skills/mandu-styling/rules/style-setup-panda.md +164 -164
- package/src/resources/skills/mandu-styling/rules/style-setup-tailwind.md +170 -170
- package/src/resources/skills/mandu-styling/rules/style-tailwind-v4-gotchas.md +179 -179
- package/src/resources/skills/mandu-styling/rules/style-theme-darkmode.md +229 -229
- package/src/resources/skills/mandu-testing/SKILL.md +99 -99
- package/src/resources/skills/mandu-testing/metadata.json +13 -13
- package/src/resources/skills/mandu-testing/rules/_sections.md +26 -26
- package/src/resources/skills/mandu-testing/rules/_template.md +65 -65
- package/src/resources/skills/mandu-testing/rules/test-component-island.md +195 -195
- package/src/resources/skills/mandu-testing/rules/test-e2e-playwright.md +196 -196
- package/src/resources/skills/mandu-testing/rules/test-mock-fetch.md +219 -219
- package/src/resources/skills/mandu-testing/rules/test-slot-unit.md +192 -192
- package/src/resources/skills/mandu-ui/SKILL.md +117 -117
- package/src/resources/skills/mandu-ui/_sections.md +23 -23
- package/src/resources/skills/mandu-ui/_template.md +32 -32
- package/src/resources/skills/mandu-ui/metadata.json +13 -13
- package/src/resources/skills/mandu-ui/rules/ui-accessibility-aria.md +232 -232
- package/src/resources/skills/mandu-ui/rules/ui-accessibility-focus.md +238 -238
- package/src/resources/skills/mandu-ui/rules/ui-composition-patterns.md +259 -259
- package/src/resources/skills/mandu-ui/rules/ui-island-integration.md +258 -258
- package/src/resources/skills/mandu-ui/rules/ui-radix-patterns.md +213 -213
- package/src/resources/skills/mandu-ui/rules/ui-shadcn-setup.md +209 -209
- package/src/resources/skills/recipes.ts +932 -932
- package/src/server.ts +3 -3
- package/src/tools/ate-exemplar.ts +92 -92
- package/src/tools/ate-flakes.ts +90 -90
- package/src/tools/ate-mutate.ts +103 -103
- package/src/tools/ate-mutation-report.ts +64 -64
- package/src/tools/ate-oracle-pending.ts +49 -49
- package/src/tools/ate-oracle-replay.ts +44 -44
- package/src/tools/ate-oracle-verdict.ts +70 -70
- package/src/tools/ate-prompt.ts +146 -146
- package/src/tools/brain.ts +3 -3
- package/src/tools/deploy-plan.ts +378 -378
- package/src/tools/deploy-preview.ts +316 -316
- package/src/tools/design.ts +825 -825
- package/src/tools/docs.ts +350 -350
- package/src/tools/kitchen.ts +109 -23
- package/src/tools/lint.ts +226 -226
- package/src/tools/loop-close.ts +175 -175
- package/src/tools/negotiate.ts +263 -263
- package/src/tools/run-tests.ts +424 -424
- package/src/tools/runtime.ts +1 -1
- package/src/tools/slot-validation.ts +199 -199
- package/src/tx-lock.ts +73 -73
- package/src/utils/runtime-control.ts +52 -52
|
@@ -1,316 +1,316 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* MCP tool — `mandu.deploy.preview`
|
|
3
|
-
*
|
|
4
|
-
* Invokes `mandu deploy --target=<target> --dry-run` in a child process
|
|
5
|
-
* and parses the stdout into a structured artifact list.
|
|
6
|
-
*
|
|
7
|
-
* Safety:
|
|
8
|
-
* • `--dry-run` is *always* passed. The tool cannot be coerced into
|
|
9
|
-
* triggering a real deployment.
|
|
10
|
-
* • Target is validated against the known adapter list; unknown values
|
|
11
|
-
* fail fast without spawning a process.
|
|
12
|
-
* • The child has a 5-minute ceiling; it's killed if it overruns.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import type { Tool } from "@modelcontextprotocol/sdk/types.js";
|
|
16
|
-
import { spawn } from "bun";
|
|
17
|
-
import path from "path";
|
|
18
|
-
|
|
19
|
-
// Mirror the adapter list from `packages/cli/src/commands/deploy/types.ts`.
|
|
20
|
-
// Keep this in sync manually — imports from @mandujs/cli would introduce a
|
|
21
|
-
// cross-package coupling for a single string-union.
|
|
22
|
-
const DEPLOY_TARGETS = [
|
|
23
|
-
"docker",
|
|
24
|
-
"fly",
|
|
25
|
-
"vercel",
|
|
26
|
-
"railway",
|
|
27
|
-
"netlify",
|
|
28
|
-
"cf-pages",
|
|
29
|
-
"docker-compose",
|
|
30
|
-
] as const;
|
|
31
|
-
type DeployTarget = (typeof DEPLOY_TARGETS)[number];
|
|
32
|
-
const VALID_TARGET_SET = new Set<string>(DEPLOY_TARGETS);
|
|
33
|
-
|
|
34
|
-
interface DeployPreviewInput {
|
|
35
|
-
target?: string;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
interface ArtifactEntry {
|
|
39
|
-
path: string;
|
|
40
|
-
preserved: boolean;
|
|
41
|
-
description?: string;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
interface DeployPreviewResult {
|
|
45
|
-
target: DeployTarget;
|
|
46
|
-
mode: "dry-run";
|
|
47
|
-
artifact_list: ArtifactEntry[];
|
|
48
|
-
warnings: string[];
|
|
49
|
-
/** Text diff extracted from the preview output, if present. */
|
|
50
|
-
diff?: string;
|
|
51
|
-
exit_code: number;
|
|
52
|
-
/** Trailing 2000 chars of stdout for diagnostic context. */
|
|
53
|
-
stdout_tail?: string;
|
|
54
|
-
/** Trailing 2000 chars of stderr for diagnostic context. */
|
|
55
|
-
stderr_tail?: string;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
59
|
-
// Input validation
|
|
60
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
61
|
-
|
|
62
|
-
const COMMAND_TIMEOUT_MS = 5 * 60_000;
|
|
63
|
-
|
|
64
|
-
function validateInput(raw: Record<string, unknown>): {
|
|
65
|
-
ok: true;
|
|
66
|
-
target: DeployTarget;
|
|
67
|
-
} | { ok: false; error: string; field: string; hint: string } {
|
|
68
|
-
const target = raw.target;
|
|
69
|
-
if (typeof target !== "string" || target.length === 0) {
|
|
70
|
-
return {
|
|
71
|
-
ok: false,
|
|
72
|
-
error: "'target' is required",
|
|
73
|
-
field: "target",
|
|
74
|
-
hint: `Pass one of: ${DEPLOY_TARGETS.join(", ")}`,
|
|
75
|
-
};
|
|
76
|
-
}
|
|
77
|
-
if (!VALID_TARGET_SET.has(target)) {
|
|
78
|
-
return {
|
|
79
|
-
ok: false,
|
|
80
|
-
error: `Unknown deploy target: ${target}`,
|
|
81
|
-
field: "target",
|
|
82
|
-
hint: `Supported: ${DEPLOY_TARGETS.join(", ")}`,
|
|
83
|
-
};
|
|
84
|
-
}
|
|
85
|
-
return { ok: true, target: target as DeployTarget };
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
89
|
-
// Output parsing
|
|
90
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Parse the CLI's artifact-rendering block:
|
|
94
|
-
*
|
|
95
|
-
* 📦 Adapter prepare: docker
|
|
96
|
-
* + .mandu/deploy/docker/Dockerfile — production image
|
|
97
|
-
* • .mandu/deploy/docker/.dockerignore
|
|
98
|
-
* + .mandu/deploy/docker/entrypoint.sh
|
|
99
|
-
*
|
|
100
|
-
* Returns `preserved=true` for `•` (existing) and `false` for `+` (new).
|
|
101
|
-
*/
|
|
102
|
-
export function parseDeployPreviewOutput(raw: string): {
|
|
103
|
-
artifacts: ArtifactEntry[];
|
|
104
|
-
warnings: string[];
|
|
105
|
-
diff?: string;
|
|
106
|
-
} {
|
|
107
|
-
const lines = raw.split(/\r?\n/);
|
|
108
|
-
const artifacts: ArtifactEntry[] = [];
|
|
109
|
-
const warnings: string[] = [];
|
|
110
|
-
const diffLines: string[] = [];
|
|
111
|
-
|
|
112
|
-
let inDiff = false;
|
|
113
|
-
|
|
114
|
-
for (const rawLine of lines) {
|
|
115
|
-
const line = rawLine.replace(/\r$/, "");
|
|
116
|
-
const trimmed = line.trim();
|
|
117
|
-
|
|
118
|
-
// Diff mode gates the other regexes: inside a fenced block we don't
|
|
119
|
-
// re-interpret `+` / `•` as artifact markers.
|
|
120
|
-
if (inDiff) {
|
|
121
|
-
if (/^```$/.test(trimmed)) {
|
|
122
|
-
inDiff = false;
|
|
123
|
-
} else {
|
|
124
|
-
diffLines.push(line);
|
|
125
|
-
}
|
|
126
|
-
continue;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
if (!trimmed) continue;
|
|
130
|
-
|
|
131
|
-
// Opening of a diff block: triple-backtick (optionally language-tagged)
|
|
132
|
-
// or an unfenced `diff --git` header.
|
|
133
|
-
if (/^```\S*$/.test(trimmed)) {
|
|
134
|
-
inDiff = true;
|
|
135
|
-
continue;
|
|
136
|
-
}
|
|
137
|
-
if (/^diff\s+--git\s/.test(trimmed)) {
|
|
138
|
-
inDiff = true;
|
|
139
|
-
diffLines.push(trimmed);
|
|
140
|
-
continue;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// Artifact: prefix `+` or `•` after leading whitespace.
|
|
144
|
-
const artifactMatch = /^([+•])\s+(.+)$/.exec(trimmed);
|
|
145
|
-
if (artifactMatch) {
|
|
146
|
-
const marker = artifactMatch[1];
|
|
147
|
-
const rest = artifactMatch[2];
|
|
148
|
-
const emDashIdx = rest.indexOf(" — ");
|
|
149
|
-
const p = emDashIdx >= 0 ? rest.slice(0, emDashIdx).trim() : rest.trim();
|
|
150
|
-
const desc = emDashIdx >= 0 ? rest.slice(emDashIdx + 3).trim() : undefined;
|
|
151
|
-
artifacts.push({
|
|
152
|
-
path: p,
|
|
153
|
-
preserved: marker === "•",
|
|
154
|
-
...(desc ? { description: desc } : {}),
|
|
155
|
-
});
|
|
156
|
-
continue;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
// Warning: lines that start with ⚠️ or "Warning:"
|
|
160
|
-
if (/^\s*(?:⚠️|warning:)/i.test(trimmed)) {
|
|
161
|
-
warnings.push(trimmed.replace(/^⚠️\s*/u, "").replace(/^warning:\s*/i, "").trim());
|
|
162
|
-
continue;
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
const result: { artifacts: ArtifactEntry[]; warnings: string[]; diff?: string } = {
|
|
167
|
-
artifacts,
|
|
168
|
-
warnings,
|
|
169
|
-
};
|
|
170
|
-
if (diffLines.length > 0) {
|
|
171
|
-
result.diff = diffLines.join("\n").trim();
|
|
172
|
-
}
|
|
173
|
-
return result;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
177
|
-
// Child process invocation
|
|
178
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
179
|
-
|
|
180
|
-
function tailString(s: string, max = 2000): string {
|
|
181
|
-
if (s.length <= max) return s;
|
|
182
|
-
return s.slice(-max);
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
async function resolveManduCommand(projectRoot: string): Promise<string[]> {
|
|
186
|
-
const localBin = path.join(projectRoot, "node_modules", ".bin", "mandu");
|
|
187
|
-
try {
|
|
188
|
-
const f = Bun.file(localBin);
|
|
189
|
-
if (await f.exists()) {
|
|
190
|
-
return ["bun", "run", localBin];
|
|
191
|
-
}
|
|
192
|
-
} catch {}
|
|
193
|
-
|
|
194
|
-
const monorepoCli = path.resolve(projectRoot, "packages", "cli", "src", "main.ts");
|
|
195
|
-
try {
|
|
196
|
-
const f = Bun.file(monorepoCli);
|
|
197
|
-
if (await f.exists()) {
|
|
198
|
-
return ["bun", "run", monorepoCli];
|
|
199
|
-
}
|
|
200
|
-
} catch {}
|
|
201
|
-
|
|
202
|
-
return ["mandu"];
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
async function runProcess(
|
|
206
|
-
cmd: string[],
|
|
207
|
-
cwd: string,
|
|
208
|
-
timeoutMs: number,
|
|
209
|
-
): Promise<{ stdout: string; stderr: string; exitCode: number; timedOut: boolean }> {
|
|
210
|
-
const proc = spawn(cmd, {
|
|
211
|
-
cwd,
|
|
212
|
-
stdout: "pipe",
|
|
213
|
-
stderr: "pipe",
|
|
214
|
-
});
|
|
215
|
-
|
|
216
|
-
let timedOut = false;
|
|
217
|
-
const handle = setTimeout(() => {
|
|
218
|
-
timedOut = true;
|
|
219
|
-
try {
|
|
220
|
-
proc.kill();
|
|
221
|
-
} catch {}
|
|
222
|
-
}, timeoutMs);
|
|
223
|
-
|
|
224
|
-
try {
|
|
225
|
-
const [stdout, stderr, exitCode] = await Promise.all([
|
|
226
|
-
new Response(proc.stdout).text(),
|
|
227
|
-
new Response(proc.stderr).text(),
|
|
228
|
-
proc.exited,
|
|
229
|
-
]);
|
|
230
|
-
return { stdout, stderr, exitCode: exitCode ?? 1, timedOut };
|
|
231
|
-
} finally {
|
|
232
|
-
clearTimeout(handle);
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
237
|
-
// Handler
|
|
238
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
239
|
-
|
|
240
|
-
async function deployPreview(
|
|
241
|
-
projectRoot: string,
|
|
242
|
-
input: DeployPreviewInput,
|
|
243
|
-
): Promise<DeployPreviewResult | { error: string; field?: string; hint?: string }> {
|
|
244
|
-
const validated = validateInput(input as Record<string, unknown>);
|
|
245
|
-
if (!validated.ok) {
|
|
246
|
-
return {
|
|
247
|
-
error: validated.error,
|
|
248
|
-
field: validated.field,
|
|
249
|
-
hint: validated.hint,
|
|
250
|
-
};
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
const { target } = validated;
|
|
254
|
-
const base = await resolveManduCommand(projectRoot);
|
|
255
|
-
const cmd = [...base, "deploy", `--target=${target}`, "--dry-run"];
|
|
256
|
-
|
|
257
|
-
let proc: { stdout: string; stderr: string; exitCode: number; timedOut: boolean };
|
|
258
|
-
try {
|
|
259
|
-
proc = await runProcess(cmd, projectRoot, COMMAND_TIMEOUT_MS);
|
|
260
|
-
} catch (err) {
|
|
261
|
-
return {
|
|
262
|
-
error: `Failed to spawn deploy preview: ${err instanceof Error ? err.message : String(err)}`,
|
|
263
|
-
hint: "Verify that @mandujs/cli is installed and accessible",
|
|
264
|
-
};
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
const parsed = parseDeployPreviewOutput(`${proc.stdout}\n${proc.stderr}`);
|
|
268
|
-
|
|
269
|
-
const result: DeployPreviewResult = {
|
|
270
|
-
target,
|
|
271
|
-
mode: "dry-run",
|
|
272
|
-
artifact_list: parsed.artifacts,
|
|
273
|
-
warnings: parsed.warnings,
|
|
274
|
-
exit_code: proc.exitCode,
|
|
275
|
-
stdout_tail: tailString(proc.stdout),
|
|
276
|
-
stderr_tail: tailString(proc.stderr),
|
|
277
|
-
};
|
|
278
|
-
if (parsed.diff) result.diff = parsed.diff;
|
|
279
|
-
if (proc.timedOut) result.warnings.push("deploy preview timed out");
|
|
280
|
-
return result;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
284
|
-
// MCP tool definition + handler map
|
|
285
|
-
// ─────────────────────────────────────────────────────────────────────────
|
|
286
|
-
|
|
287
|
-
export const deployPreviewToolDefinitions: Tool[] = [
|
|
288
|
-
{
|
|
289
|
-
name: "mandu.deploy.preview",
|
|
290
|
-
description:
|
|
291
|
-
"Preview a deployment by running `mandu deploy --target=<t> --dry-run`. Returns the structured artifact list, parsed warnings, and any diff the adapter emits. Always dry-run — this tool cannot trigger a real deployment.",
|
|
292
|
-
annotations: {
|
|
293
|
-
readOnlyHint: true,
|
|
294
|
-
},
|
|
295
|
-
inputSchema: {
|
|
296
|
-
type: "object",
|
|
297
|
-
properties: {
|
|
298
|
-
target: {
|
|
299
|
-
type: "string",
|
|
300
|
-
enum: [...DEPLOY_TARGETS],
|
|
301
|
-
description:
|
|
302
|
-
"Deployment adapter target. Each adapter controls the artifact set — see `mandu deploy --help` for details.",
|
|
303
|
-
},
|
|
304
|
-
},
|
|
305
|
-
required: ["target"],
|
|
306
|
-
},
|
|
307
|
-
},
|
|
308
|
-
];
|
|
309
|
-
|
|
310
|
-
export function deployPreviewTools(projectRoot: string) {
|
|
311
|
-
const handlers: Record<string, (args: Record<string, unknown>) => Promise<unknown>> = {
|
|
312
|
-
"mandu.deploy.preview": async (args) =>
|
|
313
|
-
deployPreview(projectRoot, args as DeployPreviewInput),
|
|
314
|
-
};
|
|
315
|
-
return handlers;
|
|
316
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* MCP tool — `mandu.deploy.preview`
|
|
3
|
+
*
|
|
4
|
+
* Invokes `mandu deploy --target=<target> --dry-run` in a child process
|
|
5
|
+
* and parses the stdout into a structured artifact list.
|
|
6
|
+
*
|
|
7
|
+
* Safety:
|
|
8
|
+
* • `--dry-run` is *always* passed. The tool cannot be coerced into
|
|
9
|
+
* triggering a real deployment.
|
|
10
|
+
* • Target is validated against the known adapter list; unknown values
|
|
11
|
+
* fail fast without spawning a process.
|
|
12
|
+
* • The child has a 5-minute ceiling; it's killed if it overruns.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import type { Tool } from "@modelcontextprotocol/sdk/types.js";
|
|
16
|
+
import { spawn } from "bun";
|
|
17
|
+
import path from "path";
|
|
18
|
+
|
|
19
|
+
// Mirror the adapter list from `packages/cli/src/commands/deploy/types.ts`.
|
|
20
|
+
// Keep this in sync manually — imports from @mandujs/cli would introduce a
|
|
21
|
+
// cross-package coupling for a single string-union.
|
|
22
|
+
const DEPLOY_TARGETS = [
|
|
23
|
+
"docker",
|
|
24
|
+
"fly",
|
|
25
|
+
"vercel",
|
|
26
|
+
"railway",
|
|
27
|
+
"netlify",
|
|
28
|
+
"cf-pages",
|
|
29
|
+
"docker-compose",
|
|
30
|
+
] as const;
|
|
31
|
+
type DeployTarget = (typeof DEPLOY_TARGETS)[number];
|
|
32
|
+
const VALID_TARGET_SET = new Set<string>(DEPLOY_TARGETS);
|
|
33
|
+
|
|
34
|
+
interface DeployPreviewInput {
|
|
35
|
+
target?: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
interface ArtifactEntry {
|
|
39
|
+
path: string;
|
|
40
|
+
preserved: boolean;
|
|
41
|
+
description?: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
interface DeployPreviewResult {
|
|
45
|
+
target: DeployTarget;
|
|
46
|
+
mode: "dry-run";
|
|
47
|
+
artifact_list: ArtifactEntry[];
|
|
48
|
+
warnings: string[];
|
|
49
|
+
/** Text diff extracted from the preview output, if present. */
|
|
50
|
+
diff?: string;
|
|
51
|
+
exit_code: number;
|
|
52
|
+
/** Trailing 2000 chars of stdout for diagnostic context. */
|
|
53
|
+
stdout_tail?: string;
|
|
54
|
+
/** Trailing 2000 chars of stderr for diagnostic context. */
|
|
55
|
+
stderr_tail?: string;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
59
|
+
// Input validation
|
|
60
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
61
|
+
|
|
62
|
+
const COMMAND_TIMEOUT_MS = 5 * 60_000;
|
|
63
|
+
|
|
64
|
+
function validateInput(raw: Record<string, unknown>): {
|
|
65
|
+
ok: true;
|
|
66
|
+
target: DeployTarget;
|
|
67
|
+
} | { ok: false; error: string; field: string; hint: string } {
|
|
68
|
+
const target = raw.target;
|
|
69
|
+
if (typeof target !== "string" || target.length === 0) {
|
|
70
|
+
return {
|
|
71
|
+
ok: false,
|
|
72
|
+
error: "'target' is required",
|
|
73
|
+
field: "target",
|
|
74
|
+
hint: `Pass one of: ${DEPLOY_TARGETS.join(", ")}`,
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
if (!VALID_TARGET_SET.has(target)) {
|
|
78
|
+
return {
|
|
79
|
+
ok: false,
|
|
80
|
+
error: `Unknown deploy target: ${target}`,
|
|
81
|
+
field: "target",
|
|
82
|
+
hint: `Supported: ${DEPLOY_TARGETS.join(", ")}`,
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
return { ok: true, target: target as DeployTarget };
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
89
|
+
// Output parsing
|
|
90
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Parse the CLI's artifact-rendering block:
|
|
94
|
+
*
|
|
95
|
+
* 📦 Adapter prepare: docker
|
|
96
|
+
* + .mandu/deploy/docker/Dockerfile — production image
|
|
97
|
+
* • .mandu/deploy/docker/.dockerignore
|
|
98
|
+
* + .mandu/deploy/docker/entrypoint.sh
|
|
99
|
+
*
|
|
100
|
+
* Returns `preserved=true` for `•` (existing) and `false` for `+` (new).
|
|
101
|
+
*/
|
|
102
|
+
export function parseDeployPreviewOutput(raw: string): {
|
|
103
|
+
artifacts: ArtifactEntry[];
|
|
104
|
+
warnings: string[];
|
|
105
|
+
diff?: string;
|
|
106
|
+
} {
|
|
107
|
+
const lines = raw.split(/\r?\n/);
|
|
108
|
+
const artifacts: ArtifactEntry[] = [];
|
|
109
|
+
const warnings: string[] = [];
|
|
110
|
+
const diffLines: string[] = [];
|
|
111
|
+
|
|
112
|
+
let inDiff = false;
|
|
113
|
+
|
|
114
|
+
for (const rawLine of lines) {
|
|
115
|
+
const line = rawLine.replace(/\r$/, "");
|
|
116
|
+
const trimmed = line.trim();
|
|
117
|
+
|
|
118
|
+
// Diff mode gates the other regexes: inside a fenced block we don't
|
|
119
|
+
// re-interpret `+` / `•` as artifact markers.
|
|
120
|
+
if (inDiff) {
|
|
121
|
+
if (/^```$/.test(trimmed)) {
|
|
122
|
+
inDiff = false;
|
|
123
|
+
} else {
|
|
124
|
+
diffLines.push(line);
|
|
125
|
+
}
|
|
126
|
+
continue;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
if (!trimmed) continue;
|
|
130
|
+
|
|
131
|
+
// Opening of a diff block: triple-backtick (optionally language-tagged)
|
|
132
|
+
// or an unfenced `diff --git` header.
|
|
133
|
+
if (/^```\S*$/.test(trimmed)) {
|
|
134
|
+
inDiff = true;
|
|
135
|
+
continue;
|
|
136
|
+
}
|
|
137
|
+
if (/^diff\s+--git\s/.test(trimmed)) {
|
|
138
|
+
inDiff = true;
|
|
139
|
+
diffLines.push(trimmed);
|
|
140
|
+
continue;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// Artifact: prefix `+` or `•` after leading whitespace.
|
|
144
|
+
const artifactMatch = /^([+•])\s+(.+)$/.exec(trimmed);
|
|
145
|
+
if (artifactMatch) {
|
|
146
|
+
const marker = artifactMatch[1];
|
|
147
|
+
const rest = artifactMatch[2];
|
|
148
|
+
const emDashIdx = rest.indexOf(" — ");
|
|
149
|
+
const p = emDashIdx >= 0 ? rest.slice(0, emDashIdx).trim() : rest.trim();
|
|
150
|
+
const desc = emDashIdx >= 0 ? rest.slice(emDashIdx + 3).trim() : undefined;
|
|
151
|
+
artifacts.push({
|
|
152
|
+
path: p,
|
|
153
|
+
preserved: marker === "•",
|
|
154
|
+
...(desc ? { description: desc } : {}),
|
|
155
|
+
});
|
|
156
|
+
continue;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
// Warning: lines that start with ⚠️ or "Warning:"
|
|
160
|
+
if (/^\s*(?:⚠️|warning:)/i.test(trimmed)) {
|
|
161
|
+
warnings.push(trimmed.replace(/^⚠️\s*/u, "").replace(/^warning:\s*/i, "").trim());
|
|
162
|
+
continue;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
const result: { artifacts: ArtifactEntry[]; warnings: string[]; diff?: string } = {
|
|
167
|
+
artifacts,
|
|
168
|
+
warnings,
|
|
169
|
+
};
|
|
170
|
+
if (diffLines.length > 0) {
|
|
171
|
+
result.diff = diffLines.join("\n").trim();
|
|
172
|
+
}
|
|
173
|
+
return result;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
177
|
+
// Child process invocation
|
|
178
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
179
|
+
|
|
180
|
+
function tailString(s: string, max = 2000): string {
|
|
181
|
+
if (s.length <= max) return s;
|
|
182
|
+
return s.slice(-max);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
async function resolveManduCommand(projectRoot: string): Promise<string[]> {
|
|
186
|
+
const localBin = path.join(projectRoot, "node_modules", ".bin", "mandu");
|
|
187
|
+
try {
|
|
188
|
+
const f = Bun.file(localBin);
|
|
189
|
+
if (await f.exists()) {
|
|
190
|
+
return ["bun", "run", localBin];
|
|
191
|
+
}
|
|
192
|
+
} catch {}
|
|
193
|
+
|
|
194
|
+
const monorepoCli = path.resolve(projectRoot, "packages", "cli", "src", "main.ts");
|
|
195
|
+
try {
|
|
196
|
+
const f = Bun.file(monorepoCli);
|
|
197
|
+
if (await f.exists()) {
|
|
198
|
+
return ["bun", "run", monorepoCli];
|
|
199
|
+
}
|
|
200
|
+
} catch {}
|
|
201
|
+
|
|
202
|
+
return ["mandu"];
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
async function runProcess(
|
|
206
|
+
cmd: string[],
|
|
207
|
+
cwd: string,
|
|
208
|
+
timeoutMs: number,
|
|
209
|
+
): Promise<{ stdout: string; stderr: string; exitCode: number; timedOut: boolean }> {
|
|
210
|
+
const proc = spawn(cmd, {
|
|
211
|
+
cwd,
|
|
212
|
+
stdout: "pipe",
|
|
213
|
+
stderr: "pipe",
|
|
214
|
+
});
|
|
215
|
+
|
|
216
|
+
let timedOut = false;
|
|
217
|
+
const handle = setTimeout(() => {
|
|
218
|
+
timedOut = true;
|
|
219
|
+
try {
|
|
220
|
+
proc.kill();
|
|
221
|
+
} catch {}
|
|
222
|
+
}, timeoutMs);
|
|
223
|
+
|
|
224
|
+
try {
|
|
225
|
+
const [stdout, stderr, exitCode] = await Promise.all([
|
|
226
|
+
new Response(proc.stdout).text(),
|
|
227
|
+
new Response(proc.stderr).text(),
|
|
228
|
+
proc.exited,
|
|
229
|
+
]);
|
|
230
|
+
return { stdout, stderr, exitCode: exitCode ?? 1, timedOut };
|
|
231
|
+
} finally {
|
|
232
|
+
clearTimeout(handle);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
237
|
+
// Handler
|
|
238
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
239
|
+
|
|
240
|
+
async function deployPreview(
|
|
241
|
+
projectRoot: string,
|
|
242
|
+
input: DeployPreviewInput,
|
|
243
|
+
): Promise<DeployPreviewResult | { error: string; field?: string; hint?: string }> {
|
|
244
|
+
const validated = validateInput(input as Record<string, unknown>);
|
|
245
|
+
if (!validated.ok) {
|
|
246
|
+
return {
|
|
247
|
+
error: validated.error,
|
|
248
|
+
field: validated.field,
|
|
249
|
+
hint: validated.hint,
|
|
250
|
+
};
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
const { target } = validated;
|
|
254
|
+
const base = await resolveManduCommand(projectRoot);
|
|
255
|
+
const cmd = [...base, "deploy", `--target=${target}`, "--dry-run"];
|
|
256
|
+
|
|
257
|
+
let proc: { stdout: string; stderr: string; exitCode: number; timedOut: boolean };
|
|
258
|
+
try {
|
|
259
|
+
proc = await runProcess(cmd, projectRoot, COMMAND_TIMEOUT_MS);
|
|
260
|
+
} catch (err) {
|
|
261
|
+
return {
|
|
262
|
+
error: `Failed to spawn deploy preview: ${err instanceof Error ? err.message : String(err)}`,
|
|
263
|
+
hint: "Verify that @mandujs/cli is installed and accessible",
|
|
264
|
+
};
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
const parsed = parseDeployPreviewOutput(`${proc.stdout}\n${proc.stderr}`);
|
|
268
|
+
|
|
269
|
+
const result: DeployPreviewResult = {
|
|
270
|
+
target,
|
|
271
|
+
mode: "dry-run",
|
|
272
|
+
artifact_list: parsed.artifacts,
|
|
273
|
+
warnings: parsed.warnings,
|
|
274
|
+
exit_code: proc.exitCode,
|
|
275
|
+
stdout_tail: tailString(proc.stdout),
|
|
276
|
+
stderr_tail: tailString(proc.stderr),
|
|
277
|
+
};
|
|
278
|
+
if (parsed.diff) result.diff = parsed.diff;
|
|
279
|
+
if (proc.timedOut) result.warnings.push("deploy preview timed out");
|
|
280
|
+
return result;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
284
|
+
// MCP tool definition + handler map
|
|
285
|
+
// ─────────────────────────────────────────────────────────────────────────
|
|
286
|
+
|
|
287
|
+
export const deployPreviewToolDefinitions: Tool[] = [
|
|
288
|
+
{
|
|
289
|
+
name: "mandu.deploy.preview",
|
|
290
|
+
description:
|
|
291
|
+
"Preview a deployment by running `mandu deploy --target=<t> --dry-run`. Returns the structured artifact list, parsed warnings, and any diff the adapter emits. Always dry-run — this tool cannot trigger a real deployment.",
|
|
292
|
+
annotations: {
|
|
293
|
+
readOnlyHint: true,
|
|
294
|
+
},
|
|
295
|
+
inputSchema: {
|
|
296
|
+
type: "object",
|
|
297
|
+
properties: {
|
|
298
|
+
target: {
|
|
299
|
+
type: "string",
|
|
300
|
+
enum: [...DEPLOY_TARGETS],
|
|
301
|
+
description:
|
|
302
|
+
"Deployment adapter target. Each adapter controls the artifact set — see `mandu deploy --help` for details.",
|
|
303
|
+
},
|
|
304
|
+
},
|
|
305
|
+
required: ["target"],
|
|
306
|
+
},
|
|
307
|
+
},
|
|
308
|
+
];
|
|
309
|
+
|
|
310
|
+
export function deployPreviewTools(projectRoot: string) {
|
|
311
|
+
const handlers: Record<string, (args: Record<string, unknown>) => Promise<unknown>> = {
|
|
312
|
+
"mandu.deploy.preview": async (args) =>
|
|
313
|
+
deployPreview(projectRoot, args as DeployPreviewInput),
|
|
314
|
+
};
|
|
315
|
+
return handlers;
|
|
316
|
+
}
|