@maestro-ai/mcp-server 5.6.5 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/dist/constants.d.ts +1 -1
  2. package/dist/constants.js +1 -1
  3. package/dist/content/skills/specialist-api-contract/SKILL.md +98 -0
  4. package/dist/content/skills/specialist-api-contract/resources/checklists/gate-checklist.md +38 -0
  5. package/dist/content/skills/specialist-api-contract/resources/reference/guide.md +109 -0
  6. package/dist/content/skills/specialist-architect/SKILL.md +111 -0
  7. package/dist/content/skills/specialist-architect/resources/checklists/gate-checklist.md +45 -0
  8. package/dist/content/skills/specialist-architect/resources/examples/example-architecture.md +345 -0
  9. package/dist/content/skills/specialist-architect/resources/reference/guide.md +86 -0
  10. package/dist/content/skills/specialist-architect/resources/templates/arquitetura.md +282 -0
  11. package/dist/content/skills/specialist-backend/SKILL.md +100 -0
  12. package/dist/content/skills/specialist-backend/resources/checklists/gate-checklist.md +38 -0
  13. package/dist/content/skills/specialist-backend/resources/reference/guide.md +160 -0
  14. package/dist/content/skills/specialist-design/SKILL.md +107 -0
  15. package/dist/content/skills/specialist-design/resources/checklists/gate-checklist.md +45 -0
  16. package/dist/content/skills/specialist-design/resources/examples/example-design.md +294 -0
  17. package/dist/content/skills/specialist-design/resources/reference/guide.md +67 -0
  18. package/dist/content/skills/specialist-design/resources/templates/design-doc.md +232 -0
  19. package/dist/content/skills/specialist-devops/SKILL.md +99 -0
  20. package/dist/content/skills/specialist-devops/resources/checklists/gate-checklist.md +38 -0
  21. package/dist/content/skills/specialist-devops/resources/reference/guide.md +116 -0
  22. package/dist/content/skills/specialist-discovery/SKILL.md +109 -0
  23. package/dist/content/skills/specialist-discovery/resources/checklists/gate-checklist.md +45 -0
  24. package/dist/content/skills/specialist-discovery/resources/examples/example-discovery.md +179 -0
  25. package/dist/content/skills/specialist-discovery/resources/reference/guide.md +48 -0
  26. package/dist/content/skills/specialist-discovery/resources/templates/discovery.md +187 -0
  27. package/dist/content/skills/specialist-domain/SKILL.md +105 -0
  28. package/dist/content/skills/specialist-domain/resources/checklists/gate-checklist.md +37 -0
  29. package/dist/content/skills/specialist-domain/resources/reference/guide.md +80 -0
  30. package/dist/content/skills/specialist-frontend/SKILL.md +99 -0
  31. package/dist/content/skills/specialist-frontend/resources/checklists/gate-checklist.md +38 -0
  32. package/dist/content/skills/specialist-frontend/resources/reference/guide.md +90 -0
  33. package/dist/content/skills/specialist-operations/SKILL.md +109 -0
  34. package/dist/content/skills/specialist-operations/resources/checklists/gate-checklist.md +38 -0
  35. package/dist/content/skills/specialist-operations/resources/reference/guide.md +129 -0
  36. package/dist/content/skills/specialist-planning/SKILL.md +100 -0
  37. package/dist/content/skills/specialist-planning/resources/checklists/gate-checklist.md +38 -0
  38. package/dist/content/skills/specialist-planning/resources/reference/guide.md +88 -0
  39. package/dist/content/skills/specialist-product/SKILL.md +113 -0
  40. package/dist/content/skills/specialist-product/resources/checklists/gate-checklist.md +40 -0
  41. package/dist/content/skills/specialist-product/resources/reference/guide.md +43 -0
  42. package/dist/content/skills/specialist-product/resources/templates/PRD.md +191 -0
  43. package/dist/content/skills/specialist-requirements/SKILL.md +107 -0
  44. package/dist/content/skills/specialist-requirements/resources/checklists/gate-checklist.md +36 -0
  45. package/dist/content/skills/specialist-requirements/resources/reference/guide.md +66 -0
  46. package/dist/content/skills/specialist-technical-design/SKILL.md +114 -0
  47. package/dist/content/skills/specialist-technical-design/resources/checklists/gate-checklist.md +38 -0
  48. package/dist/content/skills/specialist-technical-design/resources/reference/guide.md +86 -0
  49. package/dist/flows/types.d.ts +33 -3
  50. package/dist/flows/types.d.ts.map +1 -1
  51. package/dist/flows/types.js +288 -309
  52. package/dist/flows/types.js.map +1 -1
  53. package/dist/gates/code-validator.d.ts +47 -0
  54. package/dist/gates/code-validator.d.ts.map +1 -0
  55. package/dist/gates/code-validator.js +225 -0
  56. package/dist/gates/code-validator.js.map +1 -0
  57. package/dist/gates/readiness-gate.d.ts +48 -0
  58. package/dist/gates/readiness-gate.d.ts.map +1 -0
  59. package/dist/gates/readiness-gate.js +301 -0
  60. package/dist/gates/readiness-gate.js.map +1 -0
  61. package/dist/handlers/code-phase-handler.d.ts +1 -0
  62. package/dist/handlers/code-phase-handler.d.ts.map +1 -1
  63. package/dist/handlers/code-phase-handler.js +176 -27
  64. package/dist/handlers/code-phase-handler.js.map +1 -1
  65. package/dist/handlers/specialist-phase-handler.d.ts +11 -10
  66. package/dist/handlers/specialist-phase-handler.d.ts.map +1 -1
  67. package/dist/handlers/specialist-phase-handler.js +160 -64
  68. package/dist/handlers/specialist-phase-handler.js.map +1 -1
  69. package/dist/services/deliverable-gate.service.d.ts +40 -0
  70. package/dist/services/deliverable-gate.service.d.ts.map +1 -0
  71. package/dist/services/deliverable-gate.service.js +88 -0
  72. package/dist/services/deliverable-gate.service.js.map +1 -0
  73. package/dist/services/phase-config-loader.d.ts +28 -0
  74. package/dist/services/phase-config-loader.d.ts.map +1 -0
  75. package/dist/services/phase-config-loader.js +200 -0
  76. package/dist/services/phase-config-loader.js.map +1 -0
  77. package/dist/services/scoring-config.d.ts.map +1 -1
  78. package/dist/services/scoring-config.js +13 -10
  79. package/dist/services/scoring-config.js.map +1 -1
  80. package/dist/tools/consolidated/avancar.d.ts.map +1 -1
  81. package/dist/tools/consolidated/avancar.js +89 -8
  82. package/dist/tools/consolidated/avancar.js.map +1 -1
  83. package/dist/tools/iniciar-projeto.d.ts.map +1 -1
  84. package/dist/tools/iniciar-projeto.js +46 -0
  85. package/dist/tools/iniciar-projeto.js.map +1 -1
  86. package/dist/tools/proximo.d.ts +1 -0
  87. package/dist/tools/proximo.d.ts.map +1 -1
  88. package/dist/tools/proximo.js +41 -126
  89. package/dist/tools/proximo.js.map +1 -1
  90. package/dist/types/index.d.ts +2 -0
  91. package/dist/types/index.d.ts.map +1 -1
  92. package/dist/types/index.js.map +1 -1
  93. package/dist/types/phase-config.d.ts +65 -0
  94. package/dist/types/phase-config.d.ts.map +1 -0
  95. package/dist/types/phase-config.js +11 -0
  96. package/dist/types/phase-config.js.map +1 -0
  97. package/dist/utils/migration-v10.d.ts +31 -0
  98. package/dist/utils/migration-v10.d.ts.map +1 -0
  99. package/dist/utils/migration-v10.js +145 -0
  100. package/dist/utils/migration-v10.js.map +1 -0
  101. package/dist/utils/prompt-mapper.d.ts +6 -2
  102. package/dist/utils/prompt-mapper.d.ts.map +1 -1
  103. package/dist/utils/prompt-mapper.js +72 -91
  104. package/dist/utils/prompt-mapper.js.map +1 -1
  105. package/dist/utils/skill-deployer.d.ts +32 -0
  106. package/dist/utils/skill-deployer.d.ts.map +1 -0
  107. package/dist/utils/skill-deployer.js +150 -0
  108. package/dist/utils/skill-deployer.js.map +1 -0
  109. package/package.json +2 -2
@@ -0,0 +1,150 @@
1
+ /**
2
+ * Skill Deployer (v10.0)
3
+ *
4
+ * Copia skills de content/skills/ para o diretório da IDE no projeto.
5
+ * Suporta múltiplas IDEs: Windsurf, Cursor, Antigravity.
6
+ *
7
+ * Windsurf: .windsurf/skills/<skill-name>/
8
+ * Cursor: .cursor/rules/<skill-name>.mdc (conversão SKILL.md → .mdc)
9
+ * Antigravity: .agent/skills/<skill-name>/
10
+ *
11
+ * @since v10.0
12
+ */
13
+ import { existsSync, readdirSync, mkdirSync, copyFileSync, readFileSync, writeFileSync } from "fs";
14
+ import { join } from "path";
15
+ import { getFluxoComStitch } from "../flows/types.js";
16
+ import { getSkillsDir } from "../utils/ide-paths.js";
17
+ /**
18
+ * Copia skills relevantes de contentDir para o diretório da IDE no projeto.
19
+ * Filtra por nível de complexidade — só copia skills usadas no fluxo.
20
+ *
21
+ * @param contentSkillsDir Caminho absoluto para content/skills/
22
+ * @param projectDir Diretório raiz do projeto
23
+ * @param ide IDE ativa (windsurf, cursor, antigravity)
24
+ * @param nivel Nível de complexidade (simples, medio, complexo)
25
+ * @param usarStitch Se deve incluir skill de prototipagem
26
+ * @returns Lista de skills deployadas
27
+ */
28
+ export async function deploySkillsToProject(contentSkillsDir, projectDir, ide, nivel, usarStitch = false) {
29
+ const deployedSkills = [];
30
+ // Obter lista de skills necessárias para o fluxo
31
+ const fluxo = getFluxoComStitch(nivel, usarStitch);
32
+ const requiredSkills = new Set();
33
+ for (const fase of fluxo.fases) {
34
+ if (fase.skill) {
35
+ requiredSkills.add(fase.skill);
36
+ }
37
+ }
38
+ // Adicionar skills utilitárias (sempre deployadas)
39
+ requiredSkills.add('specialist-debugging-troubleshooting');
40
+ requiredSkills.add('specialist-exploracao-codebase');
41
+ const targetDir = getSkillsDir(ide);
42
+ const targetBase = join(projectDir, targetDir);
43
+ for (const skillName of requiredSkills) {
44
+ const sourceDir = join(contentSkillsDir, skillName);
45
+ if (!existsSync(sourceDir)) {
46
+ console.warn(`[skill-deployer] Skill ${skillName} não encontrada em ${contentSkillsDir}`);
47
+ continue;
48
+ }
49
+ try {
50
+ if (ide === 'cursor') {
51
+ // Cursor: converter SKILL.md → .mdc
52
+ await deployCursorRule(sourceDir, projectDir, skillName);
53
+ }
54
+ else {
55
+ // Windsurf/Antigravity: copiar diretório completo
56
+ const targetSkillDir = join(targetBase, skillName);
57
+ copyDirectoryRecursive(sourceDir, targetSkillDir);
58
+ }
59
+ deployedSkills.push(skillName);
60
+ }
61
+ catch (err) {
62
+ console.warn(`[skill-deployer] Falha ao deployar ${skillName}:`, err);
63
+ }
64
+ }
65
+ console.log(`[skill-deployer] ${deployedSkills.length}/${requiredSkills.size} skills deployadas para ${ide} em ${projectDir}`);
66
+ return deployedSkills;
67
+ }
68
+ /**
69
+ * Converte SKILL.md em .mdc para Cursor.
70
+ * Cursor usa .cursor/rules/ com frontmatter description + alwaysApply.
71
+ */
72
+ async function deployCursorRule(sourceDir, projectDir, skillName) {
73
+ const skillMdPath = join(sourceDir, 'SKILL.md');
74
+ if (!existsSync(skillMdPath))
75
+ return;
76
+ const content = readFileSync(skillMdPath, 'utf-8');
77
+ // Extrair description do frontmatter YAML
78
+ const frontmatterMatch = content.match(/^---\s*\n([\s\S]*?)\n---/);
79
+ let description = skillName;
80
+ let body = content;
81
+ if (frontmatterMatch) {
82
+ const yaml = frontmatterMatch[1];
83
+ const descMatch = yaml.match(/description:\s*(.+)/);
84
+ if (descMatch) {
85
+ description = descMatch[1].trim().replace(/^["']|["']$/g, '');
86
+ }
87
+ body = content.substring(frontmatterMatch[0].length).trim();
88
+ }
89
+ // Gerar .mdc com frontmatter do Cursor
90
+ const mdcContent = `---
91
+ description: "${description}"
92
+ alwaysApply: false
93
+ ---
94
+
95
+ ${body}
96
+ `;
97
+ const targetDir = join(projectDir, '.cursor', 'rules');
98
+ mkdirSync(targetDir, { recursive: true });
99
+ writeFileSync(join(targetDir, `${skillName}.mdc`), mdcContent, 'utf-8');
100
+ // Copiar resources como arquivos separados referenciáveis
101
+ const resourcesDir = join(sourceDir, 'resources');
102
+ if (existsSync(resourcesDir)) {
103
+ const targetResourcesDir = join(projectDir, '.cursor', 'rules', `${skillName}-resources`);
104
+ copyDirectoryRecursive(resourcesDir, targetResourcesDir);
105
+ }
106
+ }
107
+ /**
108
+ * Copia diretório recursivamente.
109
+ */
110
+ function copyDirectoryRecursive(source, target) {
111
+ mkdirSync(target, { recursive: true });
112
+ const entries = readdirSync(source, { withFileTypes: true });
113
+ for (const entry of entries) {
114
+ const sourcePath = join(source, entry.name);
115
+ const targetPath = join(target, entry.name);
116
+ if (entry.isDirectory()) {
117
+ copyDirectoryRecursive(sourcePath, targetPath);
118
+ }
119
+ else {
120
+ copyFileSync(sourcePath, targetPath);
121
+ }
122
+ }
123
+ }
124
+ /**
125
+ * Verifica se as skills estão deployadas no projeto.
126
+ * Retorna lista de skills faltantes.
127
+ */
128
+ export function checkSkillsDeployed(projectDir, ide, nivel, usarStitch = false) {
129
+ const fluxo = getFluxoComStitch(nivel, usarStitch);
130
+ const missingSkills = [];
131
+ const targetDir = getSkillsDir(ide);
132
+ for (const fase of fluxo.fases) {
133
+ if (!fase.skill)
134
+ continue;
135
+ if (ide === 'cursor') {
136
+ const rulePath = join(projectDir, '.cursor', 'rules', `${fase.skill}.mdc`);
137
+ if (!existsSync(rulePath)) {
138
+ missingSkills.push(fase.skill);
139
+ }
140
+ }
141
+ else {
142
+ const skillPath = join(projectDir, targetDir, fase.skill, 'SKILL.md');
143
+ if (!existsSync(skillPath)) {
144
+ missingSkills.push(fase.skill);
145
+ }
146
+ }
147
+ }
148
+ return missingSkills;
149
+ }
150
+ //# sourceMappingURL=skill-deployer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"skill-deployer.js","sourceRoot":"","sources":["../../src/utils/skill-deployer.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@maestro-ai/mcp-server",
3
- "version": "5.6.5",
4
- "description": "MCP Server do Maestro v2.0 com otimizações, frontend-first e gerenciamento de tarefas",
3
+ "version": "6.0.0",
4
+ "description": "MCP Server do Maestro v6.0 com fluxos enxutos, especialistas dedicados e gates consolidados",
5
5
  "type": "module",
6
6
  "main": "dist/stdio.js",
7
7
  "bin": {