Skip to content

refactor: move third-party migration rules to domain#1540

Merged
hatayama merged 3 commits into
v3-betafrom
codex/c4-11-third-party-rule-domain
Jul 6, 2026
Merged

refactor: move third-party migration rules to domain#1540
hatayama merged 3 commits into
v3-betafrom
codex/c4-11-third-party-rule-domain

Conversation

@hatayama

@hatayama hatayama commented Jul 6, 2026

Copy link
Copy Markdown
Owner

Summary

  • Move 31 pure ThirdPartyToolMigration rule classes plus RuleCatalog and CodeTextMaskBuilder from Infrastructure to Domain with .meta GUIDs preserved via git mv.
  • Keep the Infrastructure facade plus PathRules, AsmdefRules, and DetectionRules in Infrastructure; update the facade and adapters to reference Domain rule/data contracts.
  • Un-nest shared migration DTO contracts into Domain and extract pure code-text detection helpers from the JSON-backed DetectionRules.

Notes

  • The note's 17+ class estimate was stale: the current code has 35 *Rules files. PathRules remains in Infrastructure because it depends on System.IO.Path and current-directory resolution. AsmdefRules and DetectionRules remain in Infrastructure because they own Newtonsoft/JToken-based JSON parsing.
  • DTO un-nesting changes references from ThirdPartyToolMigrationRules.* nested types to top-level Domain data contracts.
  • New Domain files include doc comments added for the project comment policy.

Verification

  • dist/darwin-arm64/uloop compile --project-path <PROJECT_ROOT> -> 0 errors / 0 warnings
  • dist/darwin-arm64/uloop run-tests --project-path <PROJECT_ROOT> --test-mode EditMode --filter-type regex --filter-value ThirdPartyToolMigrationRulesTests -> 160 passed
  • grep checks: no Infrastructure namespace references from Domain rules; no old nested DTO qualifiers; new helper .meta GUIDs are unique

Review in cubic

@coderabbitai

coderabbitai Bot commented Jul 6, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Warning

Review limit reached

@hatayama, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 43 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 2f0ed1c8-37e4-4e22-a63a-878bd53f2c1f

📥 Commits

Reviewing files that changed from the base of the PR and between daf39ac and 04beaf1.

📒 Files selected for processing (1)
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleData.cs
📝 Walkthrough

Walkthrough

This PR relocates the ThirdPartyToolMigration rule set into the Domain namespace, adds new Domain helper and data types, removes duplicated Infrastructure implementations, and updates remaining Infrastructure call sites and tests to reference the Domain types.

Changes

Domain Namespace Migration

Layer / File(s) Summary
New Domain data and helpers
Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleData.cs, .../ThirdPartyToolMigrationAliasRules.cs, .../ThirdPartyToolMigrationCodeTextDetectionRules.cs, .../ThirdPartyToolMigrationConstructorArgumentRules.cs, .../ThirdPartyToolMigrationToolContractDetectionRules.cs
Adds public Domain DTOs and helper classes for alias extraction, code-text-aware matching, constructor-argument migration, and tool-contract detection.
Parsing rules and rule catalog
.../ThirdPartyToolMigrationParsingRules.cs, .../ThirdPartyToolMigrationRuleCatalog.cs
Moves parsing helpers and the rule catalog into Domain, promotes nested parsing types, and exposes expanded regex and replacement tables.
Code-text masking and rewrite helpers
.../ThirdPartyToolMigrationCodeTextMaskBuilder.cs, .../ThirdPartyToolMigrationCodeTextMaskInterpolationRules.cs, .../ThirdPartyToolMigrationRegexRewriteRules.cs, .../ThirdPartyToolMigrationInterpolatedStringRules.cs, .../ThirdPartyToolMigrationTypeReplacementRules.cs
Moves code-text masking, interpolated-string masking, regex rewrite, interpolated-string parsing, and type-replacement helpers into Domain with public methods.
API, application, domain, and screenshot detection rules
.../ThirdPartyToolMigrationApiDetectionRules.cs, .../ThirdPartyToolMigrationApplicationDetectionRules.cs, .../ThirdPartyToolMigrationDomainDetectionRules.cs, .../ThirdPartyToolMigrationScreenshotDetectionRules.cs
Moves the detection rule classes into Domain and exposes their detection helpers as public methods.
Argument, attribute, CSharp, delay, metadata, and screenshot transforms
.../ThirdPartyToolMigrationArgumentRules.cs, .../ThirdPartyToolMigrationAttributeRules.cs, .../ThirdPartyToolMigrationCSharpRules.cs, .../ThirdPartyToolMigrationDelayRules.cs, .../ThirdPartyToolMigrationEditorDelayRules.cs, .../ThirdPartyToolMigrationMetadataConstructorRules.cs, .../ThirdPartyToolMigrationScreenshotArgumentRules.cs, .../ThirdPartyToolMigrationScreenshotDeconstructionRules.cs, .../ThirdPartyToolMigrationScreenshotRules.cs
Moves source-rewriting rule classes into Domain and exposes their migration entry points and helpers as public methods.
PlayerLoopTiming migration rule cluster
.../ThirdPartyToolMigrationTiming*Rules.cs
Moves all ThirdPartyToolMigrationTiming* rule classes into Domain, exposes their methods publicly, and switches them to the new removed-signature DTOs.
Infrastructure wiring and duplicate cleanup
Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/*, Assets/Tests/Editor/ThirdPartyToolMigrationRulesTests.cs
Infrastructure call sites are updated to use Domain types, duplicate Infrastructure implementations are removed, and the test file imports the Domain namespace.

Estimated code review effort: 5 (Critical) | ~120 minutes

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main refactor: moving third-party migration rules to Domain.
Description check ✅ Passed The description is directly related to the refactor and matches the files and objectives in the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch codex/c4-11-third-party-rule-domain

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Keep the moved rule surface limited to Infrastructure-forced public APIs and remove residual orphan using directives while preserving the Domain DTO alias needed by AsmdefRules.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (2)
Packages/src/Editor/Domain/ThirdPartyToolMigrationAliasRules.cs (1)

87-156: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Extract shared combine logic to remove 5x duplication.

Each GetCombined*Aliases method repeats the identical Concat(...).Distinct(StringComparer.Ordinal).ToArray() pattern. Consider factoring a private helper.

♻️ Proposed refactor
+        private static string[] CombineAliases(IEnumerable<string> sourceAliases, string[] additionalAliases)
+        {
+            return sourceAliases.Concat(additionalAliases).Distinct(StringComparer.Ordinal).ToArray();
+        }
+
         public static string[] GetCombinedLegacyNamespaceAliases(
             string source,
             string[] legacyAssemblyAliases)
         {
             Debug.Assert(source != null, "source must not be null");
             Debug.Assert(legacyAssemblyAliases != null, "legacyAssemblyAliases must not be null");
 
-            return GetLegacyNamespaceAliases(source)
-                .Concat(legacyAssemblyAliases)
-                .Distinct(StringComparer.Ordinal)
-                .ToArray();
+            return CombineAliases(GetLegacyNamespaceAliases(source), legacyAssemblyAliases);
         }

Apply the equivalent simplification to the other four GetCombined*Aliases methods.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@Packages/src/Editor/Domain/ThirdPartyToolMigrationAliasRules.cs` around lines
87 - 156, The five GetCombined*Aliases methods in
ThirdPartyToolMigrationAliasRules all repeat the same Concat/Distinct/ToArray
combination logic, so factor that shared behavior into a private helper and have
GetCombinedLegacyNamespaceAliases, GetCombinedLegacyToolInfoTypeAliases,
GetCombinedCurrentApplicationNamespaceAliases,
GetCombinedCurrentDomainNamespaceAliases, and
GetCombinedCurrentFirstPartyToolsNamespaceAliases call it with their specific
source aliases and arrays. Keep the existing null assertions and
StringComparer.Ordinal de-duplication semantics unchanged while removing the
duplicated implementation.
Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleCatalog.cs (1)

226-230: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Reference the LegacyNamespace constant instead of a hardcoded literal.

LegacyNamespaceAliasRegex spells out io\.github\.hatayama\.uLoopMCP literally, while every sibling pattern in this catalog (LegacyNamespacePattern, LegacyGlobalUsingRegex, LegacyNamespaceUsingRegex, etc.) derives from Regex.Escape(LegacyNamespace). If LegacyNamespace is ever updated, this pattern will silently keep matching the old value.

♻️ Proposed fix
         public static readonly Regex LegacyNamespaceAliasRegex =
             new(
                 @"\busing\s+(?<alias>[A-Za-z_][A-Za-z0-9_]*)\s*=\s*(?:global::)?" +
-                @"io\.github\.hatayama\.uLoopMCP\s*;",
+                $@"{Regex.Escape(LegacyNamespace)}\s*;",
                 RegexOptions.Compiled);
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleCatalog.cs` around
lines 226 - 230, The LegacyNamespaceAliasRegex pattern hardcodes the old
namespace instead of using the shared LegacyNamespace constant. Update the regex
construction in ThirdPartyToolMigrationRuleCatalog so this alias pattern is
built from Regex.Escape(LegacyNamespace), matching the approach used by
LegacyNamespacePattern, LegacyGlobalUsingRegex, and LegacyNamespaceUsingRegex.
Keep the alias capture logic intact, but replace the literal namespace text with
the constant-derived expression so future namespace changes propagate
automatically.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@Packages/src/Editor/Domain/ThirdPartyToolMigrationAliasRules.cs`:
- Around line 87-156: The five GetCombined*Aliases methods in
ThirdPartyToolMigrationAliasRules all repeat the same Concat/Distinct/ToArray
combination logic, so factor that shared behavior into a private helper and have
GetCombinedLegacyNamespaceAliases, GetCombinedLegacyToolInfoTypeAliases,
GetCombinedCurrentApplicationNamespaceAliases,
GetCombinedCurrentDomainNamespaceAliases, and
GetCombinedCurrentFirstPartyToolsNamespaceAliases call it with their specific
source aliases and arrays. Keep the existing null assertions and
StringComparer.Ordinal de-duplication semantics unchanged while removing the
duplicated implementation.

In `@Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleCatalog.cs`:
- Around line 226-230: The LegacyNamespaceAliasRegex pattern hardcodes the old
namespace instead of using the shared LegacyNamespace constant. Update the regex
construction in ThirdPartyToolMigrationRuleCatalog so this alias pattern is
built from Regex.Escape(LegacyNamespace), matching the approach used by
LegacyNamespacePattern, LegacyGlobalUsingRegex, and LegacyNamespaceUsingRegex.
Keep the alias capture logic intact, but replace the literal namespace text with
the constant-derived expression so future namespace changes propagate
automatically.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 089c05d6-22ce-4a2c-abb0-e7bc132bf507

📥 Commits

Reviewing files that changed from the base of the PR and between 6127ba5 and 809124f.

⛔ Files ignored due to path filters (35)
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationAliasRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationApiDetectionRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationApplicationDetectionRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationArgumentRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationAttributeRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationCSharpRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationCodeTextDetectionRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationCodeTextMaskBuilder.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationCodeTextMaskInterpolationRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationConstructorArgumentRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationDelayRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationDomainDetectionRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationEditorDelayRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationInterpolatedStringRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationMetadataConstructorRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationParsingRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationRegexRewriteRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleCatalog.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleData.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationScreenshotArgumentRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationScreenshotDeconstructionRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationScreenshotDetectionRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationScreenshotRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingArgumentRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingCallerRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingCleanupRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingDeclarationRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingInvocationRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingMethodBodyRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingMethodDeclarationRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingTypeNameRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingTypeResolutionRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingTypeScopeRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationToolContractDetectionRules.cs.meta is excluded by none and included by none
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTypeReplacementRules.cs.meta is excluded by none and included by none
📒 Files selected for processing (49)
  • Assets/Tests/Editor/ThirdPartyToolMigrationRulesTests.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationAliasRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationApiDetectionRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationApplicationDetectionRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationArgumentRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationAttributeRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationCSharpRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationCodeTextDetectionRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationCodeTextMaskBuilder.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationCodeTextMaskInterpolationRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationConstructorArgumentRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationDelayRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationDomainDetectionRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationEditorDelayRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationInterpolatedStringRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationMetadataConstructorRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationParsingRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationRegexRewriteRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleCatalog.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleData.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationScreenshotArgumentRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationScreenshotDeconstructionRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationScreenshotDetectionRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationScreenshotRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingArgumentRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingCallerRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingCleanupRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingDeclarationRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingInvocationRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingMethodBodyRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingMethodDeclarationRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingTypeNameRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingTypeResolutionRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTimingTypeScopeRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationToolContractDetectionRules.cs
  • Packages/src/Editor/Domain/ThirdPartyToolMigrationTypeReplacementRules.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationAliasRules.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationAsmdefMigrationRequirementResolver.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationAsmdefRules.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationAssemblyUsageScanState.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationConstructorArgumentRules.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationCrossFileTimingMigrationPlanner.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationDetectionRules.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationFastAssemblyRequirementCollector.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationFastSourceTargetDetector.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationPlanBuilder.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationPreflightScanner.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationRules.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationToolContractDetectionRules.cs
💤 Files with no reviewable changes (3)
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationAliasRules.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationConstructorArgumentRules.cs
  • Packages/src/Editor/Infrastructure/ThirdPartyToolMigration/ThirdPartyToolMigrationToolContractDetectionRules.cs

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 issue found and verified against the latest diff

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread Packages/src/Editor/Domain/ThirdPartyToolMigrationRuleData.cs Outdated
Remove the fallback that masked null content in the migrated source DTO so programmer mistakes remain visible outside debug assertions.
@hatayama
hatayama merged commit 4b2fd44 into v3-beta Jul 6, 2026
10 checks passed
@hatayama
hatayama deleted the codex/c4-11-third-party-rule-domain branch July 6, 2026 06:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant