@polymorphism-tech/morph-spec 2.1.2 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +389 -40
- package/bin/morph-spec.js +121 -0
- package/bin/task-manager.js +368 -0
- package/bin/validate-agents-skills.js +17 -5
- package/bin/validate.js +268 -0
- package/content/.claude/skills/specialists/ef-modeler.md +11 -0
- package/content/.claude/skills/specialists/hangfire-orchestrator.md +10 -0
- package/content/.claude/skills/specialists/ui-ux-designer.md +40 -0
- package/content/.claude/skills/stacks/dotnet-blazor.md +18 -0
- package/content/.morph/examples/state-v3.json +188 -0
- package/detectors/structure-detector.js +32 -3
- package/package.json +1 -1
- package/src/commands/create-story.js +68 -0
- package/src/commands/init.js +59 -5
- package/src/commands/state.js +1 -1
- package/src/commands/task.js +75 -0
- package/src/lib/continuous-validator.js +440 -0
- package/src/lib/learning-system.js +520 -0
- package/src/lib/mockup-generator.js +366 -0
- package/src/lib/ui-detector.js +350 -0
- package/src/lib/validators/architecture-validator.js +387 -0
- package/src/lib/validators/package-validator.js +360 -0
- package/src/lib/validators/ui-contrast-validator.js +422 -0
- package/src/utils/file-copier.js +26 -0
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Package Compatibility Validator
|
|
3
|
+
*
|
|
4
|
+
* Validates NuGet package versions against .NET compatibility matrix.
|
|
5
|
+
* Critical for .NET 10 migration - prevents runtime errors.
|
|
6
|
+
*
|
|
7
|
+
* MORPH-SPEC 3.0 - Sprint 4
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
import { readFileSync } from 'fs';
|
|
11
|
+
import { glob } from 'glob';
|
|
12
|
+
import chalk from 'chalk';
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Compatibility matrix for .NET versions
|
|
16
|
+
* Source: framework/standards/dotnet10-compatibility.md
|
|
17
|
+
*/
|
|
18
|
+
const COMPATIBILITY_MATRIX = {
|
|
19
|
+
'MudBlazor': {
|
|
20
|
+
9: '6.21.0',
|
|
21
|
+
10: '8.15.0',
|
|
22
|
+
breaking: true,
|
|
23
|
+
reason: 'Theme API changed: Palette → PaletteLight/PaletteDark',
|
|
24
|
+
migration: 'See framework/standards/dotnet10-compatibility.md'
|
|
25
|
+
},
|
|
26
|
+
'Microsoft.FluentUI.AspNetCore.Components': {
|
|
27
|
+
9: '4.10.0',
|
|
28
|
+
10: '5.0.0',
|
|
29
|
+
breaking: false,
|
|
30
|
+
reason: 'API stable, version bump for .NET 10 compatibility'
|
|
31
|
+
},
|
|
32
|
+
'Hangfire.AspNetCore': {
|
|
33
|
+
9: '1.8.0',
|
|
34
|
+
10: '1.8.22',
|
|
35
|
+
breaking: false,
|
|
36
|
+
reason: '.NET 10 runtime compatibility'
|
|
37
|
+
},
|
|
38
|
+
'Hangfire.Core': {
|
|
39
|
+
9: '1.8.0',
|
|
40
|
+
10: '1.8.22',
|
|
41
|
+
breaking: false
|
|
42
|
+
},
|
|
43
|
+
'Microsoft.EntityFrameworkCore': {
|
|
44
|
+
9: '9.0.0',
|
|
45
|
+
10: '10.0.0',
|
|
46
|
+
breaking: true,
|
|
47
|
+
reason: 'EF Core 10 required for .NET 10 runtime'
|
|
48
|
+
},
|
|
49
|
+
'Microsoft.EntityFrameworkCore.SqlServer': {
|
|
50
|
+
9: '9.0.0',
|
|
51
|
+
10: '10.0.0',
|
|
52
|
+
breaking: true
|
|
53
|
+
},
|
|
54
|
+
'Microsoft.EntityFrameworkCore.Design': {
|
|
55
|
+
9: '9.0.0',
|
|
56
|
+
10: '10.0.0',
|
|
57
|
+
breaking: true
|
|
58
|
+
},
|
|
59
|
+
'Microsoft.AspNetCore.Components.WebAssembly': {
|
|
60
|
+
9: '9.0.0',
|
|
61
|
+
10: '10.0.0',
|
|
62
|
+
breaking: false
|
|
63
|
+
},
|
|
64
|
+
'Microsoft.SemanticKernel': {
|
|
65
|
+
9: null, // Not compatible with .NET 10
|
|
66
|
+
10: null,
|
|
67
|
+
deprecated: true,
|
|
68
|
+
replacement: 'Microsoft.Extensions.AI.Abstractions',
|
|
69
|
+
reason: 'Use Microsoft Agent Framework for .NET 10'
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Package Validator Class
|
|
75
|
+
*/
|
|
76
|
+
export class PackageValidator {
|
|
77
|
+
constructor(projectPath = '.') {
|
|
78
|
+
this.projectPath = projectPath;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Validate all .csproj files in project
|
|
83
|
+
*/
|
|
84
|
+
async validateAll() {
|
|
85
|
+
const csprojFiles = await glob('**/*.csproj', {
|
|
86
|
+
cwd: this.projectPath,
|
|
87
|
+
ignore: ['**/obj/**', '**/bin/**', '**/node_modules/**']
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
if (csprojFiles.length === 0) {
|
|
91
|
+
return {
|
|
92
|
+
status: 'ok',
|
|
93
|
+
message: 'No .csproj files found'
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
const results = [];
|
|
98
|
+
|
|
99
|
+
for (const file of csprojFiles) {
|
|
100
|
+
const result = await this.validateFile(file);
|
|
101
|
+
if (result.issues.length > 0) {
|
|
102
|
+
results.push({ file, ...result });
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
return {
|
|
107
|
+
status: results.length === 0 ? 'ok' : 'error',
|
|
108
|
+
totalFiles: csprojFiles.length,
|
|
109
|
+
filesWithIssues: results.length,
|
|
110
|
+
results
|
|
111
|
+
};
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Validate single .csproj file
|
|
116
|
+
*/
|
|
117
|
+
async validateFile(filePath) {
|
|
118
|
+
const content = readFileSync(filePath, 'utf-8');
|
|
119
|
+
|
|
120
|
+
// Extract .NET version
|
|
121
|
+
const tfmMatch = content.match(/<TargetFramework>(.*?)<\/TargetFramework>/);
|
|
122
|
+
if (!tfmMatch) {
|
|
123
|
+
return {
|
|
124
|
+
dotnetVersion: null,
|
|
125
|
+
issues: [{
|
|
126
|
+
level: 'warning',
|
|
127
|
+
message: 'Could not detect TargetFramework'
|
|
128
|
+
}]
|
|
129
|
+
};
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
const targetFramework = tfmMatch[1];
|
|
133
|
+
const dotnetVersion = parseInt(targetFramework.replace('net', ''));
|
|
134
|
+
|
|
135
|
+
if (dotnetVersion < 9) {
|
|
136
|
+
return {
|
|
137
|
+
dotnetVersion,
|
|
138
|
+
issues: [{
|
|
139
|
+
level: 'info',
|
|
140
|
+
message: `Using .NET ${dotnetVersion} (no validation rules for versions < 9)`
|
|
141
|
+
}]
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// Extract package references
|
|
146
|
+
const packages = this.extractPackages(content);
|
|
147
|
+
|
|
148
|
+
// Validate each package
|
|
149
|
+
const issues = [];
|
|
150
|
+
|
|
151
|
+
for (const pkg of packages) {
|
|
152
|
+
const issue = this.validatePackage(pkg, dotnetVersion);
|
|
153
|
+
if (issue) {
|
|
154
|
+
issues.push(issue);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
return {
|
|
159
|
+
dotnetVersion,
|
|
160
|
+
packages,
|
|
161
|
+
issues
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Extract package references from .csproj content
|
|
167
|
+
*/
|
|
168
|
+
extractPackages(csprojContent) {
|
|
169
|
+
const packages = [];
|
|
170
|
+
const packageRegex = /<PackageReference\s+Include="([^"]+)"\s+Version="([^"]+)"/g;
|
|
171
|
+
let match;
|
|
172
|
+
|
|
173
|
+
while ((match = packageRegex.exec(csprojContent)) !== null) {
|
|
174
|
+
packages.push({
|
|
175
|
+
name: match[1],
|
|
176
|
+
version: match[2]
|
|
177
|
+
});
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
return packages;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Validate single package against compatibility matrix
|
|
185
|
+
*/
|
|
186
|
+
validatePackage(pkg, dotnetVersion) {
|
|
187
|
+
const rule = COMPATIBILITY_MATRIX[pkg.name];
|
|
188
|
+
|
|
189
|
+
if (!rule) {
|
|
190
|
+
// Package not in matrix - no validation
|
|
191
|
+
return null;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
// Check if deprecated
|
|
195
|
+
if (rule.deprecated) {
|
|
196
|
+
return {
|
|
197
|
+
level: 'error',
|
|
198
|
+
package: pkg.name,
|
|
199
|
+
installedVersion: pkg.version,
|
|
200
|
+
message: `${pkg.name} is deprecated for .NET ${dotnetVersion}`,
|
|
201
|
+
reason: rule.reason,
|
|
202
|
+
replacement: rule.replacement,
|
|
203
|
+
autoFix: false
|
|
204
|
+
};
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// Check if version is sufficient
|
|
208
|
+
const requiredVersion = rule[dotnetVersion];
|
|
209
|
+
|
|
210
|
+
if (!requiredVersion) {
|
|
211
|
+
return {
|
|
212
|
+
level: 'info',
|
|
213
|
+
package: pkg.name,
|
|
214
|
+
installedVersion: pkg.version,
|
|
215
|
+
message: `No validation rule for ${pkg.name} on .NET ${dotnetVersion}`
|
|
216
|
+
};
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
const comparison = this.compareVersions(pkg.version, requiredVersion);
|
|
220
|
+
|
|
221
|
+
if (comparison < 0) {
|
|
222
|
+
return {
|
|
223
|
+
level: rule.breaking ? 'error' : 'warning',
|
|
224
|
+
package: pkg.name,
|
|
225
|
+
installedVersion: pkg.version,
|
|
226
|
+
requiredVersion,
|
|
227
|
+
message: `${pkg.name} ${pkg.version} is incompatible with .NET ${dotnetVersion} (requires ≥${requiredVersion})`,
|
|
228
|
+
reason: rule.reason,
|
|
229
|
+
migration: rule.migration,
|
|
230
|
+
breaking: rule.breaking,
|
|
231
|
+
autoFix: {
|
|
232
|
+
available: true,
|
|
233
|
+
command: `dotnet add package ${pkg.name} --version ${requiredVersion}`
|
|
234
|
+
}
|
|
235
|
+
};
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
return null; // Package is compatible
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Compare semantic versions
|
|
243
|
+
* Returns: -1 (v1 < v2), 0 (equal), 1 (v1 > v2)
|
|
244
|
+
*/
|
|
245
|
+
compareVersions(v1, v2) {
|
|
246
|
+
const parts1 = v1.split('.').map(p => parseInt(p.replace(/[^0-9]/g, '')) || 0);
|
|
247
|
+
const parts2 = v2.split('.').map(p => parseInt(p.replace(/[^0-9]/g, '')) || 0);
|
|
248
|
+
|
|
249
|
+
const maxLength = Math.max(parts1.length, parts2.length);
|
|
250
|
+
|
|
251
|
+
for (let i = 0; i < maxLength; i++) {
|
|
252
|
+
const p1 = parts1[i] || 0;
|
|
253
|
+
const p2 = parts2[i] || 0;
|
|
254
|
+
|
|
255
|
+
if (p1 < p2) return -1;
|
|
256
|
+
if (p1 > p2) return 1;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
return 0;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Format validation results for console output
|
|
264
|
+
*/
|
|
265
|
+
formatResults(results) {
|
|
266
|
+
if (results.status === 'ok') {
|
|
267
|
+
console.log(chalk.green('✅ All packages are compatible'));
|
|
268
|
+
return;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
console.log(chalk.yellow(`\n⚠️ Found issues in ${results.filesWithIssues} of ${results.totalFiles} .csproj files:\n`));
|
|
272
|
+
|
|
273
|
+
for (const fileResult of results.results) {
|
|
274
|
+
console.log(chalk.cyan(`📄 ${fileResult.file} (.NET ${fileResult.dotnetVersion})`));
|
|
275
|
+
|
|
276
|
+
const errors = fileResult.issues.filter(i => i.level === 'error');
|
|
277
|
+
const warnings = fileResult.issues.filter(i => i.level === 'warning');
|
|
278
|
+
const infos = fileResult.issues.filter(i => i.level === 'info');
|
|
279
|
+
|
|
280
|
+
if (errors.length > 0) {
|
|
281
|
+
console.log(chalk.red(`\n ❌ ${errors.length} error(s):`));
|
|
282
|
+
errors.forEach(e => {
|
|
283
|
+
console.log(chalk.red(` - ${e.message}`));
|
|
284
|
+
if (e.reason) {
|
|
285
|
+
console.log(chalk.gray(` Reason: ${e.reason}`));
|
|
286
|
+
}
|
|
287
|
+
if (e.replacement) {
|
|
288
|
+
console.log(chalk.cyan(` Use instead: ${e.replacement}`));
|
|
289
|
+
}
|
|
290
|
+
if (e.autoFix?.available) {
|
|
291
|
+
console.log(chalk.green(` Auto-fix: ${e.autoFix.command}`));
|
|
292
|
+
}
|
|
293
|
+
});
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
if (warnings.length > 0) {
|
|
297
|
+
console.log(chalk.yellow(`\n ⚠️ ${warnings.length} warning(s):`));
|
|
298
|
+
warnings.forEach(w => {
|
|
299
|
+
console.log(chalk.yellow(` - ${w.message}`));
|
|
300
|
+
if (w.autoFix?.available) {
|
|
301
|
+
console.log(chalk.green(` Auto-fix: ${w.autoFix.command}`));
|
|
302
|
+
}
|
|
303
|
+
});
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
if (infos.length > 0) {
|
|
307
|
+
console.log(chalk.gray(`\n ℹ️ ${infos.length} info(s):`));
|
|
308
|
+
infos.forEach(i => {
|
|
309
|
+
console.log(chalk.gray(` - ${i.message}`));
|
|
310
|
+
});
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
console.log('');
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* Auto-fix compatible issues
|
|
319
|
+
*/
|
|
320
|
+
async autoFix(results) {
|
|
321
|
+
const { execSync } = await import('child_process');
|
|
322
|
+
let fixedCount = 0;
|
|
323
|
+
|
|
324
|
+
for (const fileResult of results.results) {
|
|
325
|
+
for (const issue of fileResult.issues) {
|
|
326
|
+
if (issue.autoFix?.available) {
|
|
327
|
+
try {
|
|
328
|
+
console.log(chalk.cyan(`🔧 Fixing ${issue.package}...`));
|
|
329
|
+
execSync(issue.autoFix.command, { stdio: 'inherit' });
|
|
330
|
+
fixedCount++;
|
|
331
|
+
console.log(chalk.green(` ✅ Fixed: ${issue.package} → ${issue.requiredVersion}`));
|
|
332
|
+
} catch (error) {
|
|
333
|
+
console.log(chalk.red(` ❌ Failed to fix ${issue.package}: ${error.message}`));
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
return fixedCount;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* Quick validation function (for imports)
|
|
345
|
+
*/
|
|
346
|
+
export async function validatePackages(projectPath = '.', options = {}) {
|
|
347
|
+
const validator = new PackageValidator(projectPath);
|
|
348
|
+
const results = await validator.validateAll();
|
|
349
|
+
|
|
350
|
+
if (options.verbose) {
|
|
351
|
+
validator.formatResults(results);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
if (options.autoFix && results.status !== 'ok') {
|
|
355
|
+
const fixedCount = await validator.autoFix(results);
|
|
356
|
+
console.log(chalk.green(`\n✅ Auto-fixed ${fixedCount} issue(s)`));
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
return results;
|
|
360
|
+
}
|