mcp-ai-agent-guidelines 0.7.2 → 0.7.4
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 +236 -9
- package/dist/index.js +487 -5
- package/dist/index.js.map +1 -1
- package/dist/prompts/index.d.ts +18 -0
- package/dist/prompts/index.d.ts.map +1 -1
- package/dist/prompts/index.js +127 -492
- package/dist/prompts/index.js.map +1 -1
- package/dist/resources/structured.d.ts.map +1 -1
- package/dist/resources/structured.js +410 -0
- package/dist/resources/structured.js.map +1 -1
- package/dist/schemas/flow-tool-schemas.d.ts +167 -0
- package/dist/schemas/flow-tool-schemas.d.ts.map +1 -0
- package/dist/schemas/flow-tool-schemas.js +149 -0
- package/dist/schemas/flow-tool-schemas.js.map +1 -0
- package/dist/tools/bridge/index.d.ts +83 -0
- package/dist/tools/bridge/index.d.ts.map +1 -0
- package/dist/tools/bridge/index.js +85 -0
- package/dist/tools/bridge/index.js.map +1 -0
- package/dist/tools/bridge/project-onboarding-bridge.d.ts +54 -0
- package/dist/tools/bridge/project-onboarding-bridge.d.ts.map +1 -0
- package/dist/tools/bridge/project-onboarding-bridge.js +220 -0
- package/dist/tools/bridge/project-onboarding-bridge.js.map +1 -0
- package/dist/tools/bridge/semantic-analyzer-bridge.d.ts +47 -0
- package/dist/tools/bridge/semantic-analyzer-bridge.d.ts.map +1 -0
- package/dist/tools/bridge/semantic-analyzer-bridge.js +174 -0
- package/dist/tools/bridge/semantic-analyzer-bridge.js.map +1 -0
- package/dist/tools/clean-code-scorer.d.ts +7 -0
- package/dist/tools/clean-code-scorer.d.ts.map +1 -0
- package/dist/tools/clean-code-scorer.js +359 -0
- package/dist/tools/clean-code-scorer.js.map +1 -0
- package/dist/tools/code-hygiene-analyzer.js +181 -9
- package/dist/tools/code-hygiene-analyzer.js.map +1 -1
- package/dist/tools/config/guidelines-config.d.ts +2 -14
- package/dist/tools/config/guidelines-config.d.ts.map +1 -1
- package/dist/tools/config/guidelines-config.js +45 -6
- package/dist/tools/config/guidelines-config.js.map +1 -1
- package/dist/tools/config/model-config.d.ts +2 -23
- package/dist/tools/config/model-config.d.ts.map +1 -1
- package/dist/tools/config/model-config.js.map +1 -1
- package/dist/tools/config/types/guidelines.types.d.ts +15 -0
- package/dist/tools/config/types/guidelines.types.d.ts.map +1 -0
- package/dist/tools/config/types/guidelines.types.js +3 -0
- package/dist/tools/config/types/guidelines.types.js.map +1 -0
- package/dist/tools/config/types/index.d.ts +3 -0
- package/dist/tools/config/types/index.d.ts.map +1 -0
- package/dist/tools/config/types/index.js +3 -0
- package/dist/tools/config/types/index.js.map +1 -0
- package/dist/tools/config/types/model.types.d.ts +24 -0
- package/dist/tools/config/types/model.types.d.ts.map +1 -0
- package/dist/tools/config/types/model.types.js +3 -0
- package/dist/tools/config/types/model.types.js.map +1 -0
- package/dist/tools/design/adr-generator.d.ts +1 -1
- package/dist/tools/design/adr-generator.d.ts.map +1 -1
- package/dist/tools/design/adr-generator.js +5 -1
- package/dist/tools/design/adr-generator.js.map +1 -1
- package/dist/tools/design/confirmation-module.d.ts +1 -1
- package/dist/tools/design/confirmation-module.d.ts.map +1 -1
- package/dist/tools/design/confirmation-module.js +2 -0
- package/dist/tools/design/confirmation-module.js.map +1 -1
- package/dist/tools/design/confirmation-prompt-builder.d.ts +1 -1
- package/dist/tools/design/confirmation-prompt-builder.d.ts.map +1 -1
- package/dist/tools/design/confirmation-prompt-builder.js +5 -1
- package/dist/tools/design/confirmation-prompt-builder.js.map +1 -1
- package/dist/tools/design/constraint-consistency-enforcer.d.ts +1 -1
- package/dist/tools/design/constraint-consistency-enforcer.d.ts.map +1 -1
- package/dist/tools/design/constraint-consistency-enforcer.js +6 -1
- package/dist/tools/design/constraint-consistency-enforcer.js.map +1 -1
- package/dist/tools/design/constraint-manager.d.ts +9 -9
- package/dist/tools/design/constraint-manager.d.ts.map +1 -1
- package/dist/tools/design/coverage-enforcer.d.ts +1 -1
- package/dist/tools/design/coverage-enforcer.d.ts.map +1 -1
- package/dist/tools/design/cross-session-consistency-enforcer.d.ts +1 -1
- package/dist/tools/design/cross-session-consistency-enforcer.d.ts.map +1 -1
- package/dist/tools/design/design-assistant.d.ts +1 -15
- package/dist/tools/design/design-assistant.d.ts.map +1 -1
- package/dist/tools/design/design-assistant.js +29 -853
- package/dist/tools/design/design-assistant.js.map +1 -1
- package/dist/tools/design/design-phase-workflow.d.ts +1 -1
- package/dist/tools/design/design-phase-workflow.d.ts.map +1 -1
- package/dist/tools/design/design-phase-workflow.js +15 -8
- package/dist/tools/design/design-phase-workflow.js.map +1 -1
- package/dist/tools/design/index.d.ts +1 -1
- package/dist/tools/design/index.d.ts.map +1 -1
- package/dist/tools/design/methodology-selector.d.ts +1 -1
- package/dist/tools/design/methodology-selector.d.ts.map +1 -1
- package/dist/tools/design/pivot-module.d.ts +1 -1
- package/dist/tools/design/pivot-module.d.ts.map +1 -1
- package/dist/tools/design/roadmap-generator.d.ts +1 -1
- package/dist/tools/design/roadmap-generator.d.ts.map +1 -1
- package/dist/tools/design/roadmap-generator.js.map +1 -1
- package/dist/tools/design/services/additional-operations.service.d.ts +23 -0
- package/dist/tools/design/services/additional-operations.service.d.ts.map +1 -0
- package/dist/tools/design/services/additional-operations.service.js +215 -0
- package/dist/tools/design/services/additional-operations.service.js.map +1 -0
- package/dist/tools/design/services/artifact-generation.service.d.ts +19 -0
- package/dist/tools/design/services/artifact-generation.service.d.ts.map +1 -0
- package/dist/tools/design/services/artifact-generation.service.js +171 -0
- package/dist/tools/design/services/artifact-generation.service.js.map +1 -0
- package/dist/tools/design/services/consistency.service.d.ts +24 -0
- package/dist/tools/design/services/consistency.service.d.ts.map +1 -0
- package/dist/tools/design/services/consistency.service.js +196 -0
- package/dist/tools/design/services/consistency.service.js.map +1 -0
- package/dist/tools/design/services/index.d.ts +7 -0
- package/dist/tools/design/services/index.d.ts.map +1 -0
- package/dist/tools/design/services/index.js +9 -0
- package/dist/tools/design/services/index.js.map +1 -0
- package/dist/tools/design/services/phase-management.service.d.ts +25 -0
- package/dist/tools/design/services/phase-management.service.d.ts.map +1 -0
- package/dist/tools/design/services/phase-management.service.js +133 -0
- package/dist/tools/design/services/phase-management.service.js.map +1 -0
- package/dist/tools/design/services/session-management.service.d.ts +23 -0
- package/dist/tools/design/services/session-management.service.d.ts.map +1 -0
- package/dist/tools/design/services/session-management.service.js +190 -0
- package/dist/tools/design/services/session-management.service.js.map +1 -0
- package/dist/tools/design/spec-generator.d.ts +1 -1
- package/dist/tools/design/spec-generator.d.ts.map +1 -1
- package/dist/tools/design/spec-generator.js +3 -3
- package/dist/tools/design/spec-generator.js.map +1 -1
- package/dist/tools/design/strategic-pivot-prompt-builder.d.ts +1 -1
- package/dist/tools/design/strategic-pivot-prompt-builder.d.ts.map +1 -1
- package/dist/tools/design/types/artifact.types.d.ts +16 -0
- package/dist/tools/design/types/artifact.types.d.ts.map +1 -0
- package/dist/tools/design/types/artifact.types.js +3 -0
- package/dist/tools/design/types/artifact.types.js.map +1 -0
- package/dist/tools/design/types/common.types.d.ts +8 -0
- package/dist/tools/design/types/common.types.d.ts.map +1 -0
- package/dist/tools/design/types/common.types.js +3 -0
- package/dist/tools/design/types/common.types.js.map +1 -0
- package/dist/tools/design/types/consistency.types.d.ts +130 -0
- package/dist/tools/design/types/consistency.types.d.ts.map +1 -0
- package/dist/tools/design/types/consistency.types.js +3 -0
- package/dist/tools/design/types/consistency.types.js.map +1 -0
- package/dist/tools/design/types/constraint.types.d.ts +53 -0
- package/dist/tools/design/types/constraint.types.d.ts.map +1 -0
- package/dist/tools/design/types/constraint.types.js +3 -0
- package/dist/tools/design/types/constraint.types.js.map +1 -0
- package/dist/tools/design/types/coverage.types.d.ts +59 -0
- package/dist/tools/design/types/coverage.types.d.ts.map +1 -0
- package/dist/tools/design/types/coverage.types.js +3 -0
- package/dist/tools/design/types/coverage.types.js.map +1 -0
- package/dist/tools/design/types/index.d.ts +9 -0
- package/dist/tools/design/types/index.d.ts.map +1 -0
- package/dist/tools/design/types/index.js +4 -0
- package/dist/tools/design/types/index.js.map +1 -0
- package/dist/tools/design/types/methodology.types.d.ts +53 -0
- package/dist/tools/design/types/methodology.types.d.ts.map +1 -0
- package/dist/tools/design/types/methodology.types.js +3 -0
- package/dist/tools/design/types/methodology.types.js.map +1 -0
- package/dist/tools/design/types/pivot.types.d.ts +56 -0
- package/dist/tools/design/types/pivot.types.d.ts.map +1 -0
- package/dist/tools/design/types/pivot.types.js +3 -0
- package/dist/tools/design/types/pivot.types.js.map +1 -0
- package/dist/tools/design/types/session.types.d.ts +50 -0
- package/dist/tools/design/types/session.types.d.ts.map +1 -0
- package/dist/tools/design/types/session.types.js +3 -0
- package/dist/tools/design/types/session.types.js.map +1 -0
- package/dist/tools/design/types.d.ts +18 -401
- package/dist/tools/design/types.d.ts.map +1 -1
- package/dist/tools/design/types.js +17 -1
- package/dist/tools/design/types.js.map +1 -1
- package/dist/tools/guidelines-validator.js +3 -3
- package/dist/tools/mermaid-diagram-generator.d.ts.map +1 -1
- package/dist/tools/mermaid-diagram-generator.js +712 -58
- package/dist/tools/mermaid-diagram-generator.js.map +1 -1
- package/dist/tools/mode-switcher.d.ts +21 -0
- package/dist/tools/mode-switcher.d.ts.map +1 -0
- package/dist/tools/mode-switcher.js +383 -0
- package/dist/tools/mode-switcher.js.map +1 -0
- package/dist/tools/project-onboarding.d.ts +7 -0
- package/dist/tools/project-onboarding.d.ts.map +1 -0
- package/dist/tools/project-onboarding.js +344 -0
- package/dist/tools/project-onboarding.js.map +1 -0
- package/dist/tools/prompt/architecture-design-prompt-builder.d.ts +7 -0
- package/dist/tools/prompt/architecture-design-prompt-builder.d.ts.map +1 -0
- package/dist/tools/prompt/architecture-design-prompt-builder.js +143 -0
- package/dist/tools/prompt/architecture-design-prompt-builder.js.map +1 -0
- package/dist/tools/prompt/code-analysis-prompt-builder.d.ts +7 -0
- package/dist/tools/prompt/code-analysis-prompt-builder.d.ts.map +1 -0
- package/dist/tools/prompt/code-analysis-prompt-builder.js +292 -0
- package/dist/tools/prompt/code-analysis-prompt-builder.js.map +1 -0
- package/dist/tools/prompt/debugging-assistant-prompt-builder.d.ts +7 -0
- package/dist/tools/prompt/debugging-assistant-prompt-builder.d.ts.map +1 -0
- package/dist/tools/prompt/debugging-assistant-prompt-builder.js +360 -0
- package/dist/tools/prompt/debugging-assistant-prompt-builder.js.map +1 -0
- package/dist/tools/prompt/documentation-generator-prompt-builder.d.ts +7 -0
- package/dist/tools/prompt/documentation-generator-prompt-builder.d.ts.map +1 -0
- package/dist/tools/prompt/documentation-generator-prompt-builder.js +152 -0
- package/dist/tools/prompt/documentation-generator-prompt-builder.js.map +1 -0
- package/dist/tools/prompt/domain-neutral-prompt-builder.d.ts +39 -39
- package/dist/tools/prompt/hierarchical-prompt-builder.d.ts +20 -20
- package/dist/tools/prompt/hierarchical-prompt-builder.d.ts.map +1 -1
- package/dist/tools/prompt/hierarchical-prompt-builder.js +275 -17
- package/dist/tools/prompt/hierarchical-prompt-builder.js.map +1 -1
- package/dist/tools/prompt/hierarchy-level-selector.d.ts +7 -0
- package/dist/tools/prompt/hierarchy-level-selector.d.ts.map +1 -0
- package/dist/tools/prompt/hierarchy-level-selector.js +256 -0
- package/dist/tools/prompt/hierarchy-level-selector.js.map +1 -0
- package/dist/tools/prompt/prompt-chaining-builder.d.ts +29 -0
- package/dist/tools/prompt/prompt-chaining-builder.d.ts.map +1 -0
- package/dist/tools/prompt/prompt-chaining-builder.js +212 -0
- package/dist/tools/prompt/prompt-chaining-builder.js.map +1 -0
- package/dist/tools/prompt/prompt-flow-builder.d.ts +24 -0
- package/dist/tools/prompt/prompt-flow-builder.d.ts.map +1 -0
- package/dist/tools/prompt/prompt-flow-builder.js +426 -0
- package/dist/tools/prompt/prompt-flow-builder.js.map +1 -0
- package/dist/tools/prompt/prompting-hierarchy-evaluator.d.ts +13 -0
- package/dist/tools/prompt/prompting-hierarchy-evaluator.d.ts.map +1 -0
- package/dist/tools/prompt/prompting-hierarchy-evaluator.js +372 -0
- package/dist/tools/prompt/prompting-hierarchy-evaluator.js.map +1 -0
- package/dist/tools/prompt/spark-prompt-builder.d.ts +54 -54
- package/dist/tools/prompt/types/hierarchy.types.d.ts +42 -0
- package/dist/tools/prompt/types/hierarchy.types.d.ts.map +1 -0
- package/dist/tools/prompt/types/hierarchy.types.js +23 -0
- package/dist/tools/prompt/types/hierarchy.types.js.map +1 -0
- package/dist/tools/prompt/types/index.d.ts +2 -0
- package/dist/tools/prompt/types/index.d.ts.map +1 -0
- package/dist/tools/prompt/types/index.js +3 -0
- package/dist/tools/prompt/types/index.js.map +1 -0
- package/dist/tools/semantic-code-analyzer.d.ts +7 -0
- package/dist/tools/semantic-code-analyzer.d.ts.map +1 -0
- package/dist/tools/semantic-code-analyzer.js +380 -0
- package/dist/tools/semantic-code-analyzer.js.map +1 -0
- package/dist/tools/shared/errors.d.ts +101 -0
- package/dist/tools/shared/errors.d.ts.map +1 -0
- package/dist/tools/shared/errors.js +176 -0
- package/dist/tools/shared/errors.js.map +1 -0
- package/dist/tools/shared/logger.d.ts +40 -0
- package/dist/tools/shared/logger.d.ts.map +1 -0
- package/dist/tools/shared/logger.js +53 -0
- package/dist/tools/shared/logger.js.map +1 -0
- package/dist/tools/shared/prompt-sections.d.ts +3 -7
- package/dist/tools/shared/prompt-sections.d.ts.map +1 -1
- package/dist/tools/shared/prompt-sections.js +2 -26
- package/dist/tools/shared/prompt-sections.js.map +1 -1
- package/dist/tools/shared/prompt-utils.d.ts +2 -6
- package/dist/tools/shared/prompt-utils.d.ts.map +1 -1
- package/dist/tools/shared/prompt-utils.js.map +1 -1
- package/dist/tools/shared/types/index.d.ts +3 -0
- package/dist/tools/shared/types/index.d.ts.map +1 -0
- package/dist/tools/shared/types/index.js +3 -0
- package/dist/tools/shared/types/index.js.map +1 -0
- package/dist/tools/shared/types/prompt-sections.types.d.ts +8 -0
- package/dist/tools/shared/types/prompt-sections.types.d.ts.map +1 -0
- package/dist/tools/shared/types/prompt-sections.types.js +28 -0
- package/dist/tools/shared/types/prompt-sections.types.js.map +1 -0
- package/dist/tools/shared/types/prompt-utils.types.d.ts +7 -0
- package/dist/tools/shared/types/prompt-utils.types.d.ts.map +1 -0
- package/dist/tools/shared/types/prompt-utils.types.js +3 -0
- package/dist/tools/shared/types/prompt-utils.types.js.map +1 -0
- package/dist/tools/sprint-timeline-calculator.d.ts.map +1 -1
- package/dist/tools/sprint-timeline-calculator.js +134 -28
- package/dist/tools/sprint-timeline-calculator.js.map +1 -1
- package/package.json +9 -3
package/dist/index.js
CHANGED
|
@@ -18,20 +18,34 @@ import { CallToolRequestSchema, GetPromptRequestSchema, ListPromptsRequestSchema
|
|
|
18
18
|
import { getPrompt, listPrompts } from "./prompts/index.js";
|
|
19
19
|
// Import resources
|
|
20
20
|
import { getResource, listResources } from "./resources/index.js";
|
|
21
|
+
// Import tool schemas
|
|
22
|
+
import { promptChainingBuilderSchema, promptFlowBuilderSchema, } from "./schemas/flow-tool-schemas.js";
|
|
21
23
|
import { gapFrameworksAnalyzers } from "./tools/analysis/gap-frameworks-analyzers.js";
|
|
22
24
|
import { strategyFrameworksBuilder } from "./tools/analysis/strategy-frameworks-builder.js";
|
|
25
|
+
import { cleanCodeScorer } from "./tools/clean-code-scorer.js";
|
|
23
26
|
import { codeHygieneAnalyzer } from "./tools/code-hygiene-analyzer.js";
|
|
24
27
|
import { designAssistant, } from "./tools/design/index.js";
|
|
25
28
|
import { guidelinesValidator } from "./tools/guidelines-validator.js";
|
|
26
29
|
import { iterativeCoverageEnhancer } from "./tools/iterative-coverage-enhancer.js";
|
|
27
30
|
import { memoryContextOptimizer } from "./tools/memory-context-optimizer.js";
|
|
28
31
|
import { mermaidDiagramGenerator } from "./tools/mermaid-diagram-generator.js";
|
|
32
|
+
import { modeSwitcher } from "./tools/mode-switcher.js";
|
|
29
33
|
import { modelCompatibilityChecker } from "./tools/model-compatibility-checker.js";
|
|
34
|
+
import { projectOnboarding } from "./tools/project-onboarding.js";
|
|
35
|
+
import { architectureDesignPromptBuilder } from "./tools/prompt/architecture-design-prompt-builder.js";
|
|
36
|
+
import { codeAnalysisPromptBuilder } from "./tools/prompt/code-analysis-prompt-builder.js";
|
|
37
|
+
import { debuggingAssistantPromptBuilder } from "./tools/prompt/debugging-assistant-prompt-builder.js";
|
|
38
|
+
import { documentationGeneratorPromptBuilder } from "./tools/prompt/documentation-generator-prompt-builder.js";
|
|
30
39
|
import { domainNeutralPromptBuilder } from "./tools/prompt/domain-neutral-prompt-builder.js";
|
|
31
40
|
// Import tool implementations
|
|
32
41
|
import { hierarchicalPromptBuilder } from "./tools/prompt/hierarchical-prompt-builder.js";
|
|
42
|
+
import { hierarchyLevelSelector } from "./tools/prompt/hierarchy-level-selector.js";
|
|
43
|
+
import { promptChainingBuilder } from "./tools/prompt/prompt-chaining-builder.js";
|
|
44
|
+
import { promptFlowBuilder } from "./tools/prompt/prompt-flow-builder.js";
|
|
45
|
+
import { promptingHierarchyEvaluator } from "./tools/prompt/prompting-hierarchy-evaluator.js";
|
|
33
46
|
import { securityHardeningPromptBuilder } from "./tools/prompt/security-hardening-prompt-builder.js";
|
|
34
47
|
import { sparkPromptBuilder } from "./tools/prompt/spark-prompt-builder.js";
|
|
48
|
+
import { semanticCodeAnalyzer } from "./tools/semantic-code-analyzer.js";
|
|
35
49
|
import { sprintTimelineCalculator } from "./tools/sprint-timeline-calculator.js";
|
|
36
50
|
const server = new Server({
|
|
37
51
|
name: "ai-agent-guidelines",
|
|
@@ -139,6 +153,128 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
139
153
|
required: ["context", "goal"],
|
|
140
154
|
},
|
|
141
155
|
},
|
|
156
|
+
{
|
|
157
|
+
name: "code-analysis-prompt-builder",
|
|
158
|
+
description: "Generate comprehensive code analysis prompts with customizable focus areas (security, performance, maintainability)",
|
|
159
|
+
inputSchema: {
|
|
160
|
+
type: "object",
|
|
161
|
+
properties: {
|
|
162
|
+
codebase: {
|
|
163
|
+
type: "string",
|
|
164
|
+
description: "The codebase or code snippet to analyze",
|
|
165
|
+
},
|
|
166
|
+
focusArea: {
|
|
167
|
+
type: "string",
|
|
168
|
+
enum: ["security", "performance", "maintainability", "general"],
|
|
169
|
+
description: "Specific area to focus on",
|
|
170
|
+
},
|
|
171
|
+
language: {
|
|
172
|
+
type: "string",
|
|
173
|
+
description: "Programming language of the code",
|
|
174
|
+
},
|
|
175
|
+
mode: { type: "string" },
|
|
176
|
+
model: { type: "string" },
|
|
177
|
+
tools: { type: "array", items: { type: "string" } },
|
|
178
|
+
includeFrontmatter: { type: "boolean" },
|
|
179
|
+
includeReferences: { type: "boolean" },
|
|
180
|
+
includeMetadata: { type: "boolean" },
|
|
181
|
+
inputFile: { type: "string" },
|
|
182
|
+
forcePromptMdStyle: { type: "boolean" },
|
|
183
|
+
},
|
|
184
|
+
required: ["codebase"],
|
|
185
|
+
},
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
name: "architecture-design-prompt-builder",
|
|
189
|
+
description: "Generate system architecture design prompts with scale-appropriate guidance",
|
|
190
|
+
inputSchema: {
|
|
191
|
+
type: "object",
|
|
192
|
+
properties: {
|
|
193
|
+
systemRequirements: {
|
|
194
|
+
type: "string",
|
|
195
|
+
description: "System requirements and constraints",
|
|
196
|
+
},
|
|
197
|
+
scale: {
|
|
198
|
+
type: "string",
|
|
199
|
+
enum: ["small", "medium", "large"],
|
|
200
|
+
description: "Expected system scale",
|
|
201
|
+
},
|
|
202
|
+
technologyStack: {
|
|
203
|
+
type: "string",
|
|
204
|
+
description: "Preferred or required technology stack",
|
|
205
|
+
},
|
|
206
|
+
mode: { type: "string" },
|
|
207
|
+
model: { type: "string" },
|
|
208
|
+
tools: { type: "array", items: { type: "string" } },
|
|
209
|
+
includeFrontmatter: { type: "boolean" },
|
|
210
|
+
includeReferences: { type: "boolean" },
|
|
211
|
+
includeMetadata: { type: "boolean" },
|
|
212
|
+
inputFile: { type: "string" },
|
|
213
|
+
forcePromptMdStyle: { type: "boolean" },
|
|
214
|
+
},
|
|
215
|
+
required: ["systemRequirements"],
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
name: "debugging-assistant-prompt-builder",
|
|
220
|
+
description: "Generate systematic debugging and troubleshooting prompts with structured analysis",
|
|
221
|
+
inputSchema: {
|
|
222
|
+
type: "object",
|
|
223
|
+
properties: {
|
|
224
|
+
errorDescription: {
|
|
225
|
+
type: "string",
|
|
226
|
+
description: "Description of the error or issue",
|
|
227
|
+
},
|
|
228
|
+
context: {
|
|
229
|
+
type: "string",
|
|
230
|
+
description: "Additional context about the problem",
|
|
231
|
+
},
|
|
232
|
+
attemptedSolutions: {
|
|
233
|
+
type: "string",
|
|
234
|
+
description: "Solutions already attempted",
|
|
235
|
+
},
|
|
236
|
+
mode: { type: "string" },
|
|
237
|
+
model: { type: "string" },
|
|
238
|
+
tools: { type: "array", items: { type: "string" } },
|
|
239
|
+
includeFrontmatter: { type: "boolean" },
|
|
240
|
+
includeReferences: { type: "boolean" },
|
|
241
|
+
includeMetadata: { type: "boolean" },
|
|
242
|
+
inputFile: { type: "string" },
|
|
243
|
+
forcePromptMdStyle: { type: "boolean" },
|
|
244
|
+
},
|
|
245
|
+
required: ["errorDescription"],
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
name: "documentation-generator-prompt-builder",
|
|
250
|
+
description: "Generate technical documentation prompts tailored to content type and audience",
|
|
251
|
+
inputSchema: {
|
|
252
|
+
type: "object",
|
|
253
|
+
properties: {
|
|
254
|
+
contentType: {
|
|
255
|
+
type: "string",
|
|
256
|
+
description: "Type of documentation (API, user guide, technical spec)",
|
|
257
|
+
},
|
|
258
|
+
targetAudience: {
|
|
259
|
+
type: "string",
|
|
260
|
+
description: "Intended audience for the documentation",
|
|
261
|
+
},
|
|
262
|
+
existingContent: {
|
|
263
|
+
type: "string",
|
|
264
|
+
description: "Any existing content to build upon",
|
|
265
|
+
},
|
|
266
|
+
mode: { type: "string" },
|
|
267
|
+
model: { type: "string" },
|
|
268
|
+
tools: { type: "array", items: { type: "string" } },
|
|
269
|
+
includeFrontmatter: { type: "boolean" },
|
|
270
|
+
includeReferences: { type: "boolean" },
|
|
271
|
+
includeMetadata: { type: "boolean" },
|
|
272
|
+
inputFile: { type: "string" },
|
|
273
|
+
forcePromptMdStyle: { type: "boolean" },
|
|
274
|
+
},
|
|
275
|
+
required: ["contentType"],
|
|
276
|
+
},
|
|
277
|
+
},
|
|
142
278
|
{
|
|
143
279
|
name: "strategy-frameworks-builder",
|
|
144
280
|
description: "Compose strategy analysis sections from selected frameworks (SWOT, BSC, VRIO, etc.) with compliant aliases for certain trademarks",
|
|
@@ -412,6 +548,66 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
412
548
|
],
|
|
413
549
|
},
|
|
414
550
|
},
|
|
551
|
+
{
|
|
552
|
+
name: "clean-code-scorer",
|
|
553
|
+
description: "Calculate comprehensive Clean Code score (0-100) based on multiple quality metrics including code hygiene, test coverage, TypeScript, linting, documentation, and security",
|
|
554
|
+
inputSchema: {
|
|
555
|
+
type: "object",
|
|
556
|
+
properties: {
|
|
557
|
+
projectPath: {
|
|
558
|
+
type: "string",
|
|
559
|
+
description: "Path to the project root directory",
|
|
560
|
+
},
|
|
561
|
+
codeContent: {
|
|
562
|
+
type: "string",
|
|
563
|
+
description: "Code content to analyze",
|
|
564
|
+
},
|
|
565
|
+
language: {
|
|
566
|
+
type: "string",
|
|
567
|
+
description: "Programming language",
|
|
568
|
+
},
|
|
569
|
+
framework: {
|
|
570
|
+
type: "string",
|
|
571
|
+
description: "Framework or technology stack",
|
|
572
|
+
},
|
|
573
|
+
coverageMetrics: {
|
|
574
|
+
type: "object",
|
|
575
|
+
description: "Test coverage metrics",
|
|
576
|
+
properties: {
|
|
577
|
+
statements: {
|
|
578
|
+
type: "number",
|
|
579
|
+
description: "Statement coverage percentage (0-100)",
|
|
580
|
+
},
|
|
581
|
+
branches: {
|
|
582
|
+
type: "number",
|
|
583
|
+
description: "Branch coverage percentage (0-100)",
|
|
584
|
+
},
|
|
585
|
+
functions: {
|
|
586
|
+
type: "number",
|
|
587
|
+
description: "Function coverage percentage (0-100)",
|
|
588
|
+
},
|
|
589
|
+
lines: {
|
|
590
|
+
type: "number",
|
|
591
|
+
description: "Line coverage percentage (0-100)",
|
|
592
|
+
},
|
|
593
|
+
},
|
|
594
|
+
},
|
|
595
|
+
includeReferences: {
|
|
596
|
+
type: "boolean",
|
|
597
|
+
description: "Include external best-practice links",
|
|
598
|
+
},
|
|
599
|
+
includeMetadata: {
|
|
600
|
+
type: "boolean",
|
|
601
|
+
description: "Include metadata in output",
|
|
602
|
+
},
|
|
603
|
+
inputFile: {
|
|
604
|
+
type: "string",
|
|
605
|
+
description: "Input file path for reference",
|
|
606
|
+
},
|
|
607
|
+
},
|
|
608
|
+
required: [],
|
|
609
|
+
},
|
|
610
|
+
},
|
|
415
611
|
{
|
|
416
612
|
name: "code-hygiene-analyzer",
|
|
417
613
|
description: "Analyze codebase for outdated patterns, unused dependencies, and code hygiene issues",
|
|
@@ -512,22 +708,50 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
512
708
|
},
|
|
513
709
|
{
|
|
514
710
|
name: "mermaid-diagram-generator",
|
|
515
|
-
description: "Generate Mermaid diagrams from text descriptions following best practices",
|
|
711
|
+
description: "Generate Mermaid diagrams from text descriptions following best practices. Supports advanced diagram types and customization options for richer documentation.",
|
|
516
712
|
inputSchema: {
|
|
517
713
|
type: "object",
|
|
518
714
|
properties: {
|
|
519
715
|
description: {
|
|
520
716
|
type: "string",
|
|
521
|
-
description: "Description of the system or process to diagram",
|
|
717
|
+
description: "Description of the system or process to diagram. Be specific and detailed for better diagram generation.",
|
|
522
718
|
},
|
|
523
719
|
diagramType: {
|
|
524
720
|
type: "string",
|
|
525
|
-
enum: [
|
|
721
|
+
enum: [
|
|
722
|
+
"flowchart",
|
|
723
|
+
"sequence",
|
|
724
|
+
"class",
|
|
725
|
+
"state",
|
|
726
|
+
"gantt",
|
|
727
|
+
"pie",
|
|
728
|
+
"er",
|
|
729
|
+
"journey",
|
|
730
|
+
"quadrant",
|
|
731
|
+
"git-graph",
|
|
732
|
+
"mindmap",
|
|
733
|
+
"timeline",
|
|
734
|
+
],
|
|
526
735
|
description: "Type of diagram to generate",
|
|
527
736
|
},
|
|
528
737
|
theme: {
|
|
529
738
|
type: "string",
|
|
530
|
-
description: "Visual theme for the diagram",
|
|
739
|
+
description: "Visual theme for the diagram (e.g., 'default', 'dark', 'forest', 'neutral')",
|
|
740
|
+
},
|
|
741
|
+
direction: {
|
|
742
|
+
type: "string",
|
|
743
|
+
enum: ["TD", "TB", "BT", "LR", "RL"],
|
|
744
|
+
description: "Direction for flowcharts: TD/TB (top-down), BT (bottom-top), LR (left-right), RL (right-left)",
|
|
745
|
+
},
|
|
746
|
+
strict: {
|
|
747
|
+
type: "boolean",
|
|
748
|
+
description: "If true, never emit invalid diagram; fallback to minimal diagram if needed (default: true)",
|
|
749
|
+
default: true,
|
|
750
|
+
},
|
|
751
|
+
repair: {
|
|
752
|
+
type: "boolean",
|
|
753
|
+
description: "Attempt auto-repair on diagram validation failure (default: true)",
|
|
754
|
+
default: true,
|
|
531
755
|
},
|
|
532
756
|
accTitle: {
|
|
533
757
|
type: "string",
|
|
@@ -537,6 +761,14 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
537
761
|
type: "string",
|
|
538
762
|
description: "Accessibility description (added as a Mermaid comment)",
|
|
539
763
|
},
|
|
764
|
+
customStyles: {
|
|
765
|
+
type: "string",
|
|
766
|
+
description: "Custom CSS/styling directives for advanced customization",
|
|
767
|
+
},
|
|
768
|
+
advancedFeatures: {
|
|
769
|
+
type: "object",
|
|
770
|
+
description: "Type-specific advanced features (e.g., {autonumber: true} for sequence diagrams)",
|
|
771
|
+
},
|
|
540
772
|
},
|
|
541
773
|
required: ["description", "diagramType"],
|
|
542
774
|
},
|
|
@@ -846,7 +1078,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
846
1078
|
},
|
|
847
1079
|
{
|
|
848
1080
|
name: "sprint-timeline-calculator",
|
|
849
|
-
description: "Calculate optimal development cycles and sprint timelines",
|
|
1081
|
+
description: "Calculate optimal development cycles and sprint timelines with dependency-aware scheduling",
|
|
850
1082
|
inputSchema: {
|
|
851
1083
|
type: "object",
|
|
852
1084
|
properties: {
|
|
@@ -864,6 +1096,19 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
864
1096
|
type: "number",
|
|
865
1097
|
description: "Team velocity (story points per sprint)",
|
|
866
1098
|
},
|
|
1099
|
+
optimizationStrategy: {
|
|
1100
|
+
type: "string",
|
|
1101
|
+
enum: ["greedy", "linear-programming"],
|
|
1102
|
+
description: "Optimization strategy: 'greedy' (default, deterministic bin-packing) or 'linear-programming' (future MILP optimization)",
|
|
1103
|
+
},
|
|
1104
|
+
includeMetadata: {
|
|
1105
|
+
type: "boolean",
|
|
1106
|
+
description: "Include metadata in output",
|
|
1107
|
+
},
|
|
1108
|
+
inputFile: {
|
|
1109
|
+
type: "string",
|
|
1110
|
+
description: "Input file reference",
|
|
1111
|
+
},
|
|
867
1112
|
},
|
|
868
1113
|
required: ["tasks", "teamSize"],
|
|
869
1114
|
},
|
|
@@ -934,6 +1179,219 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
934
1179
|
required: ["practiceDescription", "category"],
|
|
935
1180
|
},
|
|
936
1181
|
},
|
|
1182
|
+
{
|
|
1183
|
+
name: "semantic-code-analyzer",
|
|
1184
|
+
description: "Perform semantic code analysis to identify symbols, structure, dependencies, and patterns. Inspired by Serena's language server-based approach for precise code understanding.",
|
|
1185
|
+
inputSchema: {
|
|
1186
|
+
type: "object",
|
|
1187
|
+
properties: {
|
|
1188
|
+
codeContent: {
|
|
1189
|
+
type: "string",
|
|
1190
|
+
description: "Code content to analyze",
|
|
1191
|
+
},
|
|
1192
|
+
language: {
|
|
1193
|
+
type: "string",
|
|
1194
|
+
description: "Programming language (auto-detected if not provided)",
|
|
1195
|
+
},
|
|
1196
|
+
analysisType: {
|
|
1197
|
+
type: "string",
|
|
1198
|
+
enum: ["symbols", "structure", "dependencies", "patterns", "all"],
|
|
1199
|
+
description: "Type of semantic analysis to perform",
|
|
1200
|
+
},
|
|
1201
|
+
includeReferences: {
|
|
1202
|
+
type: "boolean",
|
|
1203
|
+
description: "Include external reference links",
|
|
1204
|
+
},
|
|
1205
|
+
includeMetadata: {
|
|
1206
|
+
type: "boolean",
|
|
1207
|
+
description: "Include metadata section",
|
|
1208
|
+
},
|
|
1209
|
+
inputFile: {
|
|
1210
|
+
type: "string",
|
|
1211
|
+
description: "Optional input file path",
|
|
1212
|
+
},
|
|
1213
|
+
},
|
|
1214
|
+
required: ["codeContent"],
|
|
1215
|
+
},
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
name: "project-onboarding",
|
|
1219
|
+
description: "Perform comprehensive project onboarding including structure analysis, dependency detection, and memory generation. Based on Serena's onboarding system for efficient project familiarization.",
|
|
1220
|
+
inputSchema: {
|
|
1221
|
+
type: "object",
|
|
1222
|
+
properties: {
|
|
1223
|
+
projectPath: {
|
|
1224
|
+
type: "string",
|
|
1225
|
+
description: "Path to the project directory",
|
|
1226
|
+
},
|
|
1227
|
+
projectName: {
|
|
1228
|
+
type: "string",
|
|
1229
|
+
description: "Name of the project",
|
|
1230
|
+
},
|
|
1231
|
+
projectType: {
|
|
1232
|
+
type: "string",
|
|
1233
|
+
enum: ["library", "application", "service", "tool", "other"],
|
|
1234
|
+
description: "Type of project",
|
|
1235
|
+
},
|
|
1236
|
+
analysisDepth: {
|
|
1237
|
+
type: "string",
|
|
1238
|
+
enum: ["quick", "standard", "deep"],
|
|
1239
|
+
description: "Depth of analysis",
|
|
1240
|
+
},
|
|
1241
|
+
includeMemories: {
|
|
1242
|
+
type: "boolean",
|
|
1243
|
+
description: "Generate project memories",
|
|
1244
|
+
},
|
|
1245
|
+
includeReferences: {
|
|
1246
|
+
type: "boolean",
|
|
1247
|
+
description: "Include external reference links",
|
|
1248
|
+
},
|
|
1249
|
+
includeMetadata: {
|
|
1250
|
+
type: "boolean",
|
|
1251
|
+
description: "Include metadata section",
|
|
1252
|
+
},
|
|
1253
|
+
},
|
|
1254
|
+
required: ["projectPath"],
|
|
1255
|
+
},
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
name: "mode-switcher",
|
|
1259
|
+
description: "Switch between different agent operation modes (planning, editing, analysis, debugging, etc.) with tailored tool sets and prompting strategies. Based on Serena's flexible mode/context system.",
|
|
1260
|
+
inputSchema: {
|
|
1261
|
+
type: "object",
|
|
1262
|
+
properties: {
|
|
1263
|
+
currentMode: {
|
|
1264
|
+
type: "string",
|
|
1265
|
+
enum: [
|
|
1266
|
+
"planning",
|
|
1267
|
+
"editing",
|
|
1268
|
+
"analysis",
|
|
1269
|
+
"interactive",
|
|
1270
|
+
"one-shot",
|
|
1271
|
+
"debugging",
|
|
1272
|
+
"refactoring",
|
|
1273
|
+
"documentation",
|
|
1274
|
+
],
|
|
1275
|
+
description: "Current active mode",
|
|
1276
|
+
},
|
|
1277
|
+
targetMode: {
|
|
1278
|
+
type: "string",
|
|
1279
|
+
enum: [
|
|
1280
|
+
"planning",
|
|
1281
|
+
"editing",
|
|
1282
|
+
"analysis",
|
|
1283
|
+
"interactive",
|
|
1284
|
+
"one-shot",
|
|
1285
|
+
"debugging",
|
|
1286
|
+
"refactoring",
|
|
1287
|
+
"documentation",
|
|
1288
|
+
],
|
|
1289
|
+
description: "Mode to switch to",
|
|
1290
|
+
},
|
|
1291
|
+
context: {
|
|
1292
|
+
type: "string",
|
|
1293
|
+
enum: [
|
|
1294
|
+
"desktop-app",
|
|
1295
|
+
"ide-assistant",
|
|
1296
|
+
"agent",
|
|
1297
|
+
"terminal",
|
|
1298
|
+
"collaborative",
|
|
1299
|
+
],
|
|
1300
|
+
description: "Operating context",
|
|
1301
|
+
},
|
|
1302
|
+
reason: {
|
|
1303
|
+
type: "string",
|
|
1304
|
+
description: "Reason for mode switch",
|
|
1305
|
+
},
|
|
1306
|
+
includeReferences: {
|
|
1307
|
+
type: "boolean",
|
|
1308
|
+
description: "Include external reference links",
|
|
1309
|
+
},
|
|
1310
|
+
includeMetadata: {
|
|
1311
|
+
type: "boolean",
|
|
1312
|
+
description: "Include metadata section",
|
|
1313
|
+
},
|
|
1314
|
+
},
|
|
1315
|
+
required: ["targetMode"],
|
|
1316
|
+
},
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
name: "prompting-hierarchy-evaluator",
|
|
1320
|
+
description: "Evaluate prompts using hierarchical taxonomy and provide numeric scoring based on clarity, specificity, completeness, and cognitive complexity. Implements reinforcement learning-inspired evaluation metrics.",
|
|
1321
|
+
inputSchema: {
|
|
1322
|
+
type: "object",
|
|
1323
|
+
properties: {
|
|
1324
|
+
promptText: {
|
|
1325
|
+
type: "string",
|
|
1326
|
+
description: "The prompt text to evaluate",
|
|
1327
|
+
},
|
|
1328
|
+
targetLevel: {
|
|
1329
|
+
type: "string",
|
|
1330
|
+
enum: [
|
|
1331
|
+
"independent",
|
|
1332
|
+
"indirect",
|
|
1333
|
+
"direct",
|
|
1334
|
+
"modeling",
|
|
1335
|
+
"scaffolding",
|
|
1336
|
+
"full-physical",
|
|
1337
|
+
],
|
|
1338
|
+
description: "Expected hierarchy level (if known)",
|
|
1339
|
+
},
|
|
1340
|
+
context: {
|
|
1341
|
+
type: "string",
|
|
1342
|
+
description: "Additional context about the task",
|
|
1343
|
+
},
|
|
1344
|
+
includeRecommendations: {
|
|
1345
|
+
type: "boolean",
|
|
1346
|
+
description: "Include improvement recommendations",
|
|
1347
|
+
},
|
|
1348
|
+
includeReferences: {
|
|
1349
|
+
type: "boolean",
|
|
1350
|
+
description: "Include reference links",
|
|
1351
|
+
},
|
|
1352
|
+
},
|
|
1353
|
+
required: ["promptText"],
|
|
1354
|
+
},
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
name: "hierarchy-level-selector",
|
|
1358
|
+
description: "Select the most appropriate prompting hierarchy level (independent, indirect, direct, modeling, scaffolding, full-physical) based on task characteristics, agent capability, and autonomy preferences.",
|
|
1359
|
+
inputSchema: {
|
|
1360
|
+
type: "object",
|
|
1361
|
+
properties: {
|
|
1362
|
+
taskDescription: {
|
|
1363
|
+
type: "string",
|
|
1364
|
+
description: "Description of the task the prompt will address",
|
|
1365
|
+
},
|
|
1366
|
+
agentCapability: {
|
|
1367
|
+
type: "string",
|
|
1368
|
+
enum: ["novice", "intermediate", "advanced", "expert"],
|
|
1369
|
+
description: "Agent's capability level",
|
|
1370
|
+
},
|
|
1371
|
+
taskComplexity: {
|
|
1372
|
+
type: "string",
|
|
1373
|
+
enum: ["simple", "moderate", "complex", "very-complex"],
|
|
1374
|
+
description: "Complexity of the task",
|
|
1375
|
+
},
|
|
1376
|
+
autonomyPreference: {
|
|
1377
|
+
type: "string",
|
|
1378
|
+
enum: ["low", "medium", "high"],
|
|
1379
|
+
description: "Desired level of agent autonomy",
|
|
1380
|
+
},
|
|
1381
|
+
includeExamples: {
|
|
1382
|
+
type: "boolean",
|
|
1383
|
+
description: "Include example prompts for the recommended level",
|
|
1384
|
+
},
|
|
1385
|
+
includeReferences: {
|
|
1386
|
+
type: "boolean",
|
|
1387
|
+
description: "Include reference links",
|
|
1388
|
+
},
|
|
1389
|
+
},
|
|
1390
|
+
required: ["taskDescription"],
|
|
1391
|
+
},
|
|
1392
|
+
},
|
|
1393
|
+
promptChainingBuilderSchema,
|
|
1394
|
+
promptFlowBuilderSchema,
|
|
937
1395
|
{
|
|
938
1396
|
name: "design-assistant",
|
|
939
1397
|
description: "Deterministic, context-driven design assistant with constraint framework for structured design sessions",
|
|
@@ -1011,6 +1469,14 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
1011
1469
|
switch (name) {
|
|
1012
1470
|
case "hierarchical-prompt-builder":
|
|
1013
1471
|
return hierarchicalPromptBuilder(args);
|
|
1472
|
+
case "code-analysis-prompt-builder":
|
|
1473
|
+
return codeAnalysisPromptBuilder(args);
|
|
1474
|
+
case "architecture-design-prompt-builder":
|
|
1475
|
+
return architectureDesignPromptBuilder(args);
|
|
1476
|
+
case "debugging-assistant-prompt-builder":
|
|
1477
|
+
return debuggingAssistantPromptBuilder(args);
|
|
1478
|
+
case "documentation-generator-prompt-builder":
|
|
1479
|
+
return documentationGeneratorPromptBuilder(args);
|
|
1014
1480
|
case "strategy-frameworks-builder":
|
|
1015
1481
|
return strategyFrameworksBuilder(args);
|
|
1016
1482
|
case "gap-frameworks-analyzers":
|
|
@@ -1021,6 +1487,8 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
1021
1487
|
return domainNeutralPromptBuilder(args);
|
|
1022
1488
|
case "security-hardening-prompt-builder":
|
|
1023
1489
|
return securityHardeningPromptBuilder(args);
|
|
1490
|
+
case "clean-code-scorer":
|
|
1491
|
+
return cleanCodeScorer(args);
|
|
1024
1492
|
case "code-hygiene-analyzer":
|
|
1025
1493
|
return codeHygieneAnalyzer(args);
|
|
1026
1494
|
case "iterative-coverage-enhancer":
|
|
@@ -1035,6 +1503,20 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
|
|
|
1035
1503
|
return modelCompatibilityChecker(args);
|
|
1036
1504
|
case "guidelines-validator":
|
|
1037
1505
|
return guidelinesValidator(args);
|
|
1506
|
+
case "semantic-code-analyzer":
|
|
1507
|
+
return semanticCodeAnalyzer(args);
|
|
1508
|
+
case "project-onboarding":
|
|
1509
|
+
return projectOnboarding(args);
|
|
1510
|
+
case "mode-switcher":
|
|
1511
|
+
return modeSwitcher(args);
|
|
1512
|
+
case "prompting-hierarchy-evaluator":
|
|
1513
|
+
return promptingHierarchyEvaluator(args);
|
|
1514
|
+
case "hierarchy-level-selector":
|
|
1515
|
+
return hierarchyLevelSelector(args);
|
|
1516
|
+
case "prompt-chaining-builder":
|
|
1517
|
+
return promptChainingBuilder(args);
|
|
1518
|
+
case "prompt-flow-builder":
|
|
1519
|
+
return promptFlowBuilder(args);
|
|
1038
1520
|
case "design-assistant": {
|
|
1039
1521
|
const result = await designAssistant.processRequest(args);
|
|
1040
1522
|
return {
|