Skip to content

Commit 8406b6a

Browse files
committed
fixes
1 parent cb191f8 commit 8406b6a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/claude-nl-suite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,8 +660,8 @@ jobs:
660660
settings: .claude/settings.json
661661
allowed_tools: "mcp__unity,Edit(reports/**),MultiEdit(reports/**)"
662662
disallowed_tools: "Bash,WebFetch,WebSearch,Task,TodoWrite,NotebookEdit,NotebookRead"
663-
model: claude-sonnet-4-5-20250929
664-
fallback_model: claude-haiku-4-5-20251001
663+
model: claude-haiku-4-5-20251001
664+
fallback_model: claude-sonnet-4-5-20250929
665665
append_system_prompt: |
666666
You are running the T pass (A–J) only.
667667
Output requirements:

Server/src/transport/legacy/port_discovery.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,13 @@ class PortDiscovery:
3434
@staticmethod
3535
def get_registry_path() -> Path:
3636
"""Get the path to the port registry file"""
37-
return Path.home() / ".unity-mcp" / PortDiscovery.REGISTRY_FILE
37+
return PortDiscovery.get_registry_dir() / PortDiscovery.REGISTRY_FILE
3838

3939
@staticmethod
4040
def get_registry_dir() -> Path:
41+
env_dir = os.environ.get("UNITY_MCP_STATUS_DIR")
42+
if env_dir:
43+
return Path(env_dir)
4144
return Path.home() / ".unity-mcp"
4245

4346
@staticmethod

0 commit comments

Comments
 (0)