pumuki 6.3.333 → 6.3.334

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.
@@ -269,6 +269,24 @@ const normalizeScopedRuleEngineFindings = (params: {
269
269
  });
270
270
  };
271
271
 
272
+ const normalizeNonBlockingSwiftTestingMigrationWarnings = (
273
+ findings: ReadonlyArray<Finding>
274
+ ): ReadonlyArray<Finding> => findings.map((finding) => {
275
+ if (
276
+ finding.ruleId !== 'skills.ios.prefer-swift-testing' ||
277
+ finding.severity !== 'WARN'
278
+ ) {
279
+ return finding;
280
+ }
281
+ return {
282
+ ...finding,
283
+ blocking: false,
284
+ expected_fix:
285
+ finding.expected_fix ??
286
+ 'Mantén XCTest en suites legacy, UI o brownfield. Planifica una migración a Swift Testing en una slice dedicada si el repo lo decide.',
287
+ };
288
+ });
289
+
272
290
  const buildDefaultMemoryShadowRecommendation = (params: {
273
291
  findings: ReadonlyArray<Finding>;
274
292
  tddBddSnapshot?: TddBddSnapshot;
@@ -1196,7 +1214,10 @@ export async function runPlatformGate(params: {
1196
1214
  stage: params.policy.stage,
1197
1215
  changedLinesByPath: stagedChangedLinesByPath,
1198
1216
  });
1199
- const findings = [...aiGateRepoPolicyFindings, ...scopedRuleEngineFindings];
1217
+ const findings = normalizeNonBlockingSwiftTestingMigrationWarnings([
1218
+ ...aiGateRepoPolicyFindings,
1219
+ ...scopedRuleEngineFindings,
1220
+ ]);
1200
1221
  const evaluationMetrics: SnapshotEvaluationMetrics = coverage
1201
1222
  ? {
1202
1223
  facts_total: coverage.factsTotal,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pumuki",
3
- "version": "6.3.333",
3
+ "version": "6.3.334",
4
4
  "description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
5
5
  "main": "index.js",
6
6
  "bin": {