@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
package/src/tools/negotiate.ts
CHANGED
|
@@ -1,263 +1,263 @@
|
|
|
1
|
-
import type { Tool } from "@modelcontextprotocol/sdk/types.js";
|
|
2
|
-
import {
|
|
3
|
-
negotiate,
|
|
4
|
-
generateScaffold,
|
|
5
|
-
analyzeExistingStructure,
|
|
6
|
-
type NegotiationRequest,
|
|
7
|
-
type FeatureCategory,
|
|
8
|
-
type GuardPreset,
|
|
9
|
-
} from "@mandujs/core";
|
|
10
|
-
|
|
11
|
-
export const negotiateToolDefinitions: Tool[] = [
|
|
12
|
-
{
|
|
13
|
-
name: "mandu.negotiate",
|
|
14
|
-
description:
|
|
15
|
-
"Negotiate recommended structure and file templates before implementing a feature. " +
|
|
16
|
-
"IMPORTANT: featureName must be a short English kebab-case slug.",
|
|
17
|
-
annotations: {
|
|
18
|
-
readOnlyHint: true,
|
|
19
|
-
},
|
|
20
|
-
inputSchema: {
|
|
21
|
-
type: "object",
|
|
22
|
-
properties: {
|
|
23
|
-
intent: {
|
|
24
|
-
type: "string",
|
|
25
|
-
description: "What you want to implement, in any language (e.g., '사용자 인증 기능 추가', 'Add payment integration')",
|
|
26
|
-
},
|
|
27
|
-
featureName: {
|
|
28
|
-
type: "string",
|
|
29
|
-
description: "REQUIRED: Short English slug for the feature name (e.g., 'chat', 'user-auth', 'payment', 'file-upload'). " +
|
|
30
|
-
"You MUST translate the user's intent to a concise English identifier. " +
|
|
31
|
-
"Use lowercase kebab-case. This becomes the directory/module name.",
|
|
32
|
-
},
|
|
33
|
-
requirements: {
|
|
34
|
-
type: "array",
|
|
35
|
-
items: { type: "string" },
|
|
36
|
-
description: "Specific requirements (e.g., ['JWT-based', 'OAuth support'])",
|
|
37
|
-
},
|
|
38
|
-
constraints: {
|
|
39
|
-
type: "array",
|
|
40
|
-
items: { type: "string" },
|
|
41
|
-
description: "Constraints to respect (e.g., ['use existing User model', 'Redis sessions'])",
|
|
42
|
-
},
|
|
43
|
-
category: {
|
|
44
|
-
type: "string",
|
|
45
|
-
enum: ["auth", "crud", "api", "ui", "integration", "data", "util", "config", "other"],
|
|
46
|
-
description: "Feature category (auto-detected if not specified)",
|
|
47
|
-
},
|
|
48
|
-
preset: {
|
|
49
|
-
type: "string",
|
|
50
|
-
enum: ["fsd", "clean", "hexagonal", "atomic", "cqrs", "mandu"],
|
|
51
|
-
description: "Architecture preset (default: mandu). Use 'cqrs' for Command/Query separation.",
|
|
52
|
-
},
|
|
53
|
-
},
|
|
54
|
-
required: ["intent"],
|
|
55
|
-
},
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
name: "mandu.negotiate.scaffold",
|
|
59
|
-
description:
|
|
60
|
-
"Generate scaffold files from a negotiation plan. Use after mandu.negotiate.",
|
|
61
|
-
annotations: {
|
|
62
|
-
destructiveHint: true,
|
|
63
|
-
readOnlyHint: false,
|
|
64
|
-
},
|
|
65
|
-
inputSchema: {
|
|
66
|
-
type: "object",
|
|
67
|
-
properties: {
|
|
68
|
-
intent: {
|
|
69
|
-
type: "string",
|
|
70
|
-
description: "Feature intent (used to get the structure plan)",
|
|
71
|
-
},
|
|
72
|
-
category: {
|
|
73
|
-
type: "string",
|
|
74
|
-
enum: ["auth", "crud", "api", "ui", "integration", "data", "util", "config", "other"],
|
|
75
|
-
description: "Feature category",
|
|
76
|
-
},
|
|
77
|
-
dryRun: {
|
|
78
|
-
type: "boolean",
|
|
79
|
-
description: "If true, only show what would be created without actually creating files",
|
|
80
|
-
},
|
|
81
|
-
overwrite: {
|
|
82
|
-
type: "boolean",
|
|
83
|
-
description: "If true, overwrite existing files (default: false)",
|
|
84
|
-
},
|
|
85
|
-
preset: {
|
|
86
|
-
type: "string",
|
|
87
|
-
enum: ["fsd", "clean", "hexagonal", "atomic", "cqrs", "mandu"],
|
|
88
|
-
description: "Architecture preset (default: mandu)",
|
|
89
|
-
},
|
|
90
|
-
},
|
|
91
|
-
required: ["intent"],
|
|
92
|
-
},
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
name: "mandu.negotiate.analyze",
|
|
96
|
-
description:
|
|
97
|
-
"Analyze the existing project structure and return detected layers, features, and recommendations.",
|
|
98
|
-
annotations: {
|
|
99
|
-
readOnlyHint: true,
|
|
100
|
-
},
|
|
101
|
-
inputSchema: {
|
|
102
|
-
type: "object",
|
|
103
|
-
properties: {},
|
|
104
|
-
required: [],
|
|
105
|
-
},
|
|
106
|
-
},
|
|
107
|
-
];
|
|
108
|
-
|
|
109
|
-
export function negotiateTools(projectRoot: string) {
|
|
110
|
-
const handlers: Record<string, (args: Record<string, unknown>) => Promise<unknown>> = {
|
|
111
|
-
"mandu.negotiate": async (args: Record<string, unknown>) => {
|
|
112
|
-
const { intent, featureName, requirements, constraints, category, preset } = args as {
|
|
113
|
-
intent: string;
|
|
114
|
-
featureName?: string;
|
|
115
|
-
requirements?: string[];
|
|
116
|
-
constraints?: string[];
|
|
117
|
-
category?: FeatureCategory;
|
|
118
|
-
preset?: GuardPreset;
|
|
119
|
-
};
|
|
120
|
-
|
|
121
|
-
if (!intent) {
|
|
122
|
-
return {
|
|
123
|
-
error: "Intent is required",
|
|
124
|
-
tip: "Describe what you want to implement (e.g., '사용자 인증 기능 추가')",
|
|
125
|
-
};
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
const request: NegotiationRequest = {
|
|
129
|
-
intent,
|
|
130
|
-
featureName,
|
|
131
|
-
requirements,
|
|
132
|
-
constraints,
|
|
133
|
-
category,
|
|
134
|
-
preset,
|
|
135
|
-
};
|
|
136
|
-
|
|
137
|
-
const result = await negotiate(request, projectRoot);
|
|
138
|
-
|
|
139
|
-
return {
|
|
140
|
-
approved: result.approved,
|
|
141
|
-
intent,
|
|
142
|
-
detectedCategory: category || "auto",
|
|
143
|
-
preset: result.preset,
|
|
144
|
-
|
|
145
|
-
// Structure summary
|
|
146
|
-
structure: result.structure.map((dir) => ({
|
|
147
|
-
path: dir.path,
|
|
148
|
-
purpose: dir.purpose,
|
|
149
|
-
layer: dir.layer,
|
|
150
|
-
files: dir.files.map((f) => ({
|
|
151
|
-
name: f.name,
|
|
152
|
-
purpose: f.purpose,
|
|
153
|
-
isSlot: f.isSlot || false,
|
|
154
|
-
})),
|
|
155
|
-
})),
|
|
156
|
-
|
|
157
|
-
// Slots to implement
|
|
158
|
-
slots: result.slots,
|
|
159
|
-
|
|
160
|
-
// Context
|
|
161
|
-
relatedDecisions: result.relatedDecisions,
|
|
162
|
-
warnings: result.warnings,
|
|
163
|
-
recommendations: result.recommendations,
|
|
164
|
-
|
|
165
|
-
// Summary
|
|
166
|
-
summary: {
|
|
167
|
-
estimatedFiles: result.estimatedFiles,
|
|
168
|
-
slotsToImplement: result.slots.length,
|
|
169
|
-
relatedDecisionsCount: result.relatedDecisions.length,
|
|
170
|
-
},
|
|
171
|
-
|
|
172
|
-
// Next steps
|
|
173
|
-
nextSteps: result.nextSteps,
|
|
174
|
-
tip: "Use mandu.negotiate.scaffold to create the file structure, then implement the TODO sections.",
|
|
175
|
-
relatedSkills: ["mandu-create-feature", "mandu-guard-guide"],
|
|
176
|
-
};
|
|
177
|
-
},
|
|
178
|
-
|
|
179
|
-
"mandu.negotiate.scaffold": async (args: Record<string, unknown>) => {
|
|
180
|
-
const { intent, featureName, category, dryRun = false, overwrite = false, preset } = args as {
|
|
181
|
-
intent: string;
|
|
182
|
-
featureName?: string;
|
|
183
|
-
category?: FeatureCategory;
|
|
184
|
-
dryRun?: boolean;
|
|
185
|
-
overwrite?: boolean;
|
|
186
|
-
preset?: GuardPreset;
|
|
187
|
-
};
|
|
188
|
-
|
|
189
|
-
if (!intent) {
|
|
190
|
-
return {
|
|
191
|
-
error: "Intent is required",
|
|
192
|
-
tip: "Provide the same intent you used with mandu.negotiate",
|
|
193
|
-
};
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
// 먼저 협상하여 구조 계획 얻기
|
|
197
|
-
const plan = await negotiate({ intent, featureName, category, preset }, projectRoot);
|
|
198
|
-
|
|
199
|
-
if (!plan.approved) {
|
|
200
|
-
return {
|
|
201
|
-
error: "Negotiation not approved",
|
|
202
|
-
reason: plan.rejectionReason,
|
|
203
|
-
};
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
// Scaffold 생성
|
|
207
|
-
const result = await generateScaffold(plan.structure, projectRoot, {
|
|
208
|
-
dryRun,
|
|
209
|
-
overwrite,
|
|
210
|
-
});
|
|
211
|
-
|
|
212
|
-
return {
|
|
213
|
-
success: result.success,
|
|
214
|
-
dryRun,
|
|
215
|
-
created: {
|
|
216
|
-
directories: result.createdDirs,
|
|
217
|
-
files: result.createdFiles,
|
|
218
|
-
},
|
|
219
|
-
skipped: result.skippedFiles,
|
|
220
|
-
errors: result.errors,
|
|
221
|
-
summary: {
|
|
222
|
-
dirsCreated: result.createdDirs.length,
|
|
223
|
-
filesCreated: result.createdFiles.length,
|
|
224
|
-
filesSkipped: result.skippedFiles.length,
|
|
225
|
-
},
|
|
226
|
-
nextSteps: [
|
|
227
|
-
"1. Review the generated files",
|
|
228
|
-
"2. Implement the TODO sections in each file",
|
|
229
|
-
"3. Run mandu_guard_heal to verify architecture compliance",
|
|
230
|
-
"4. Add tests for your implementation",
|
|
231
|
-
],
|
|
232
|
-
tip: dryRun
|
|
233
|
-
? "This was a dry run. Remove dryRun: true to actually create files."
|
|
234
|
-
: "Files created! Start implementing the TODO sections.",
|
|
235
|
-
};
|
|
236
|
-
},
|
|
237
|
-
|
|
238
|
-
"mandu.negotiate.analyze": async () => {
|
|
239
|
-
const result = await analyzeExistingStructure(projectRoot);
|
|
240
|
-
|
|
241
|
-
return {
|
|
242
|
-
projectRoot,
|
|
243
|
-
detected: {
|
|
244
|
-
layers: result.layers,
|
|
245
|
-
layerCount: result.layers.length,
|
|
246
|
-
existingFeatures: result.existingFeatures,
|
|
247
|
-
featureCount: result.existingFeatures.length,
|
|
248
|
-
},
|
|
249
|
-
recommendations: result.recommendations,
|
|
250
|
-
tip: result.layers.length > 0
|
|
251
|
-
? "Use mandu.negotiate to add new features following the existing structure."
|
|
252
|
-
: "Use mandu.negotiate to establish your project structure.",
|
|
253
|
-
};
|
|
254
|
-
},
|
|
255
|
-
};
|
|
256
|
-
|
|
257
|
-
// Backward-compatible aliases
|
|
258
|
-
handlers["mandu_negotiate"] = handlers["mandu.negotiate"];
|
|
259
|
-
handlers["mandu_generate_scaffold"] = handlers["mandu.negotiate.scaffold"];
|
|
260
|
-
handlers["mandu_analyze_structure"] = handlers["mandu.negotiate.analyze"];
|
|
261
|
-
|
|
262
|
-
return handlers;
|
|
263
|
-
}
|
|
1
|
+
import type { Tool } from "@modelcontextprotocol/sdk/types.js";
|
|
2
|
+
import {
|
|
3
|
+
negotiate,
|
|
4
|
+
generateScaffold,
|
|
5
|
+
analyzeExistingStructure,
|
|
6
|
+
type NegotiationRequest,
|
|
7
|
+
type FeatureCategory,
|
|
8
|
+
type GuardPreset,
|
|
9
|
+
} from "@mandujs/core";
|
|
10
|
+
|
|
11
|
+
export const negotiateToolDefinitions: Tool[] = [
|
|
12
|
+
{
|
|
13
|
+
name: "mandu.negotiate",
|
|
14
|
+
description:
|
|
15
|
+
"Negotiate recommended structure and file templates before implementing a feature. " +
|
|
16
|
+
"IMPORTANT: featureName must be a short English kebab-case slug.",
|
|
17
|
+
annotations: {
|
|
18
|
+
readOnlyHint: true,
|
|
19
|
+
},
|
|
20
|
+
inputSchema: {
|
|
21
|
+
type: "object",
|
|
22
|
+
properties: {
|
|
23
|
+
intent: {
|
|
24
|
+
type: "string",
|
|
25
|
+
description: "What you want to implement, in any language (e.g., '사용자 인증 기능 추가', 'Add payment integration')",
|
|
26
|
+
},
|
|
27
|
+
featureName: {
|
|
28
|
+
type: "string",
|
|
29
|
+
description: "REQUIRED: Short English slug for the feature name (e.g., 'chat', 'user-auth', 'payment', 'file-upload'). " +
|
|
30
|
+
"You MUST translate the user's intent to a concise English identifier. " +
|
|
31
|
+
"Use lowercase kebab-case. This becomes the directory/module name.",
|
|
32
|
+
},
|
|
33
|
+
requirements: {
|
|
34
|
+
type: "array",
|
|
35
|
+
items: { type: "string" },
|
|
36
|
+
description: "Specific requirements (e.g., ['JWT-based', 'OAuth support'])",
|
|
37
|
+
},
|
|
38
|
+
constraints: {
|
|
39
|
+
type: "array",
|
|
40
|
+
items: { type: "string" },
|
|
41
|
+
description: "Constraints to respect (e.g., ['use existing User model', 'Redis sessions'])",
|
|
42
|
+
},
|
|
43
|
+
category: {
|
|
44
|
+
type: "string",
|
|
45
|
+
enum: ["auth", "crud", "api", "ui", "integration", "data", "util", "config", "other"],
|
|
46
|
+
description: "Feature category (auto-detected if not specified)",
|
|
47
|
+
},
|
|
48
|
+
preset: {
|
|
49
|
+
type: "string",
|
|
50
|
+
enum: ["fsd", "clean", "hexagonal", "atomic", "cqrs", "mandu"],
|
|
51
|
+
description: "Architecture preset (default: mandu). Use 'cqrs' for Command/Query separation.",
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
required: ["intent"],
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: "mandu.negotiate.scaffold",
|
|
59
|
+
description:
|
|
60
|
+
"Generate scaffold files from a negotiation plan. Use after mandu.negotiate.",
|
|
61
|
+
annotations: {
|
|
62
|
+
destructiveHint: true,
|
|
63
|
+
readOnlyHint: false,
|
|
64
|
+
},
|
|
65
|
+
inputSchema: {
|
|
66
|
+
type: "object",
|
|
67
|
+
properties: {
|
|
68
|
+
intent: {
|
|
69
|
+
type: "string",
|
|
70
|
+
description: "Feature intent (used to get the structure plan)",
|
|
71
|
+
},
|
|
72
|
+
category: {
|
|
73
|
+
type: "string",
|
|
74
|
+
enum: ["auth", "crud", "api", "ui", "integration", "data", "util", "config", "other"],
|
|
75
|
+
description: "Feature category",
|
|
76
|
+
},
|
|
77
|
+
dryRun: {
|
|
78
|
+
type: "boolean",
|
|
79
|
+
description: "If true, only show what would be created without actually creating files",
|
|
80
|
+
},
|
|
81
|
+
overwrite: {
|
|
82
|
+
type: "boolean",
|
|
83
|
+
description: "If true, overwrite existing files (default: false)",
|
|
84
|
+
},
|
|
85
|
+
preset: {
|
|
86
|
+
type: "string",
|
|
87
|
+
enum: ["fsd", "clean", "hexagonal", "atomic", "cqrs", "mandu"],
|
|
88
|
+
description: "Architecture preset (default: mandu)",
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
required: ["intent"],
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: "mandu.negotiate.analyze",
|
|
96
|
+
description:
|
|
97
|
+
"Analyze the existing project structure and return detected layers, features, and recommendations.",
|
|
98
|
+
annotations: {
|
|
99
|
+
readOnlyHint: true,
|
|
100
|
+
},
|
|
101
|
+
inputSchema: {
|
|
102
|
+
type: "object",
|
|
103
|
+
properties: {},
|
|
104
|
+
required: [],
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
];
|
|
108
|
+
|
|
109
|
+
export function negotiateTools(projectRoot: string) {
|
|
110
|
+
const handlers: Record<string, (args: Record<string, unknown>) => Promise<unknown>> = {
|
|
111
|
+
"mandu.negotiate": async (args: Record<string, unknown>) => {
|
|
112
|
+
const { intent, featureName, requirements, constraints, category, preset } = args as {
|
|
113
|
+
intent: string;
|
|
114
|
+
featureName?: string;
|
|
115
|
+
requirements?: string[];
|
|
116
|
+
constraints?: string[];
|
|
117
|
+
category?: FeatureCategory;
|
|
118
|
+
preset?: GuardPreset;
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
if (!intent) {
|
|
122
|
+
return {
|
|
123
|
+
error: "Intent is required",
|
|
124
|
+
tip: "Describe what you want to implement (e.g., '사용자 인증 기능 추가')",
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
const request: NegotiationRequest = {
|
|
129
|
+
intent,
|
|
130
|
+
featureName,
|
|
131
|
+
requirements,
|
|
132
|
+
constraints,
|
|
133
|
+
category,
|
|
134
|
+
preset,
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
const result = await negotiate(request, projectRoot);
|
|
138
|
+
|
|
139
|
+
return {
|
|
140
|
+
approved: result.approved,
|
|
141
|
+
intent,
|
|
142
|
+
detectedCategory: category || "auto",
|
|
143
|
+
preset: result.preset,
|
|
144
|
+
|
|
145
|
+
// Structure summary
|
|
146
|
+
structure: result.structure.map((dir) => ({
|
|
147
|
+
path: dir.path,
|
|
148
|
+
purpose: dir.purpose,
|
|
149
|
+
layer: dir.layer,
|
|
150
|
+
files: dir.files.map((f) => ({
|
|
151
|
+
name: f.name,
|
|
152
|
+
purpose: f.purpose,
|
|
153
|
+
isSlot: f.isSlot || false,
|
|
154
|
+
})),
|
|
155
|
+
})),
|
|
156
|
+
|
|
157
|
+
// Slots to implement
|
|
158
|
+
slots: result.slots,
|
|
159
|
+
|
|
160
|
+
// Context
|
|
161
|
+
relatedDecisions: result.relatedDecisions,
|
|
162
|
+
warnings: result.warnings,
|
|
163
|
+
recommendations: result.recommendations,
|
|
164
|
+
|
|
165
|
+
// Summary
|
|
166
|
+
summary: {
|
|
167
|
+
estimatedFiles: result.estimatedFiles,
|
|
168
|
+
slotsToImplement: result.slots.length,
|
|
169
|
+
relatedDecisionsCount: result.relatedDecisions.length,
|
|
170
|
+
},
|
|
171
|
+
|
|
172
|
+
// Next steps
|
|
173
|
+
nextSteps: result.nextSteps,
|
|
174
|
+
tip: "Use mandu.negotiate.scaffold to create the file structure, then implement the TODO sections.",
|
|
175
|
+
relatedSkills: ["mandu-create-feature", "mandu-guard-guide"],
|
|
176
|
+
};
|
|
177
|
+
},
|
|
178
|
+
|
|
179
|
+
"mandu.negotiate.scaffold": async (args: Record<string, unknown>) => {
|
|
180
|
+
const { intent, featureName, category, dryRun = false, overwrite = false, preset } = args as {
|
|
181
|
+
intent: string;
|
|
182
|
+
featureName?: string;
|
|
183
|
+
category?: FeatureCategory;
|
|
184
|
+
dryRun?: boolean;
|
|
185
|
+
overwrite?: boolean;
|
|
186
|
+
preset?: GuardPreset;
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
if (!intent) {
|
|
190
|
+
return {
|
|
191
|
+
error: "Intent is required",
|
|
192
|
+
tip: "Provide the same intent you used with mandu.negotiate",
|
|
193
|
+
};
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
// 먼저 협상하여 구조 계획 얻기
|
|
197
|
+
const plan = await negotiate({ intent, featureName, category, preset }, projectRoot);
|
|
198
|
+
|
|
199
|
+
if (!plan.approved) {
|
|
200
|
+
return {
|
|
201
|
+
error: "Negotiation not approved",
|
|
202
|
+
reason: plan.rejectionReason,
|
|
203
|
+
};
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
// Scaffold 생성
|
|
207
|
+
const result = await generateScaffold(plan.structure, projectRoot, {
|
|
208
|
+
dryRun,
|
|
209
|
+
overwrite,
|
|
210
|
+
});
|
|
211
|
+
|
|
212
|
+
return {
|
|
213
|
+
success: result.success,
|
|
214
|
+
dryRun,
|
|
215
|
+
created: {
|
|
216
|
+
directories: result.createdDirs,
|
|
217
|
+
files: result.createdFiles,
|
|
218
|
+
},
|
|
219
|
+
skipped: result.skippedFiles,
|
|
220
|
+
errors: result.errors,
|
|
221
|
+
summary: {
|
|
222
|
+
dirsCreated: result.createdDirs.length,
|
|
223
|
+
filesCreated: result.createdFiles.length,
|
|
224
|
+
filesSkipped: result.skippedFiles.length,
|
|
225
|
+
},
|
|
226
|
+
nextSteps: [
|
|
227
|
+
"1. Review the generated files",
|
|
228
|
+
"2. Implement the TODO sections in each file",
|
|
229
|
+
"3. Run mandu_guard_heal to verify architecture compliance",
|
|
230
|
+
"4. Add tests for your implementation",
|
|
231
|
+
],
|
|
232
|
+
tip: dryRun
|
|
233
|
+
? "This was a dry run. Remove dryRun: true to actually create files."
|
|
234
|
+
: "Files created! Start implementing the TODO sections.",
|
|
235
|
+
};
|
|
236
|
+
},
|
|
237
|
+
|
|
238
|
+
"mandu.negotiate.analyze": async () => {
|
|
239
|
+
const result = await analyzeExistingStructure(projectRoot);
|
|
240
|
+
|
|
241
|
+
return {
|
|
242
|
+
projectRoot,
|
|
243
|
+
detected: {
|
|
244
|
+
layers: result.layers,
|
|
245
|
+
layerCount: result.layers.length,
|
|
246
|
+
existingFeatures: result.existingFeatures,
|
|
247
|
+
featureCount: result.existingFeatures.length,
|
|
248
|
+
},
|
|
249
|
+
recommendations: result.recommendations,
|
|
250
|
+
tip: result.layers.length > 0
|
|
251
|
+
? "Use mandu.negotiate to add new features following the existing structure."
|
|
252
|
+
: "Use mandu.negotiate to establish your project structure.",
|
|
253
|
+
};
|
|
254
|
+
},
|
|
255
|
+
};
|
|
256
|
+
|
|
257
|
+
// Backward-compatible aliases
|
|
258
|
+
handlers["mandu_negotiate"] = handlers["mandu.negotiate"];
|
|
259
|
+
handlers["mandu_generate_scaffold"] = handlers["mandu.negotiate.scaffold"];
|
|
260
|
+
handlers["mandu_analyze_structure"] = handlers["mandu.negotiate.analyze"];
|
|
261
|
+
|
|
262
|
+
return handlers;
|
|
263
|
+
}
|