unity-cli-loop

mcp
SUMMARY

Your Unity project's AI autopilot. Compile, test, debug, repeat—until it just works.

README.md

Unity CLI Loop

日本語

Unity
License

ClaudeCode
Cursor
Codex
Antigravity
GitHubCopilot

logo

(Logo inspired by Daft Punk's Homework album art)

Let an AI agent compile, test, and operate your Unity project from popular LLM tools via CLI.

Designed to keep AI-driven development loops running autonomously inside your existing Unity projects.

Note: This project was formerly known as uLoopMCP.

Concept

Unity CLI Loop is a Unity integration tool designed so that AI can drive your Unity project forward with minimal human intervention.
Tasks that humans typically handle manually—compiling, running the Test Runner, checking logs, editing scenes, and capturing windows to verify UI layouts—are exposed as tools that LLMs can orchestrate.

Unity CLI Loop is built around four core ideas:

  1. A self-hosted development loop where AI autonomously compiles, tests, inspects logs, and fixes issues. Uses compile, run-tests, get-logs, clear-console.
  2. AI-driven Unity Editor operation—scene building, object manipulation, menu execution, and UI refinement from screenshots. Uses execute-dynamic-code, execute-menu-item, screenshot.
  3. PlayMode automated testing—AI clicks buttons, drags elements, presses keys, records and replays input, and verifies game behavior. Uses simulate-mouse-ui, simulate-mouse-input, simulate-keyboard, record-input, replay-input, execute-dynamic-code, screenshot.
  4. Achieving the above with a minimal set of tools. See Design Philosophy.

https://github.com/user-attachments/assets/569a2110-7351-4cf3-8281-3a83fe181817

Installation

[!WARNING]
The following software is required

  • Unity 2022.3 or later
  • Node.js 22.0 or later - Required for CLI execution
  • Install via the official site or your preferred version manager

Via Unity Package Manager

  1. Open Unity Editor
  2. Open Window > Package Manager
  3. Click the "+" button
  4. Select "Add package from git URL"
  5. Enter the following URL:
https://github.com/hatayama/unity-cli-loop.git?path=/Packages/src

If you installed via git URL before v1.0.0: The repository was renamed from uLoopMCP to unity-cli-loop in v1.0.0. Please update your manifest.json:

Old: https://github.com/hatayama/uLoopMCP.git?path=/Packages/src
New: https://github.com/hatayama/unity-cli-loop.git?path=/Packages/src

The old URL still works via GitHub redirect, but updating is recommended. OpenUPM users are not affected.

Via OpenUPM (Recommended)

Using Scoped registry in Unity Package Manager

  1. Open Project Settings window and go to Package Manager page
  2. Add the following entry to the Scoped Registries list:
Name: OpenUPM
URL: https://package.openupm.com
Scope(s): io.github.hatayama.uloopmcp
  1. Open Package Manager window and select OpenUPM in the My Registries section. Unity CLI Loop will be displayed.

Quickstart

Step 1: Install the CLI

Select Window > Unity CLI Loop > Settings. A dedicated window will open — confirm that the CLI button is highlighted in blue.

Press the Install CLI button.
1

If you see the following display, the installation was successful.
2

To install from terminal
npm install -g uloop-cli

See uloop-cli on npm for details.

Step 2: Install Skills

Select your target (Claude Code, Codex, etc.) and press the Install Skills button.
3

To install from terminal
# Install for Claude Code project
uloop skills install --claude

# Install for OpenAI Codex project
uloop skills install --codex

# Or install globally
uloop skills install --claude --global

That's it! After installing Skills, LLM tools can automatically handle instructions like these:

Your Instruction Skill Used by LLM Tools
"Launch Unity for this project" /uloop-launch
"Fix the compile errors" /uloop-compile
"Run the tests and tell me why they failed" /uloop-run-tests + /uloop-get-logs
"Check the scene hierarchy" /uloop-get-hierarchy
"Play the game and bring Unity to the front" /uloop-control-play-mode + /uloop-focus-window
"Bulk-update prefab parameters" /uloop-execute-dynamic-code
"Take a screenshot of Game View and adjust the UI layout" /uloop-screenshot + /uloop-execute-dynamic-code
"Record my gameplay input" /uloop-record-input
"Replay the recorded input" /uloop-replay-input
All 17 Bundled Skills
  • /uloop-launch - Launch Unity with correct version
  • /uloop-compile - Execute compilation
  • /uloop-get-logs - Get console logs
  • /uloop-run-tests - Run tests
  • /uloop-clear-console - Clear console
  • /uloop-focus-window - Bring Unity Editor to front
  • /uloop-get-hierarchy - Get scene hierarchy
  • /uloop-execute-menu-item - Execute menu item
  • /uloop-find-game-objects - Find GameObjects
  • /uloop-screenshot - Capture EditorWindow
  • /uloop-simulate-mouse-ui - Simulate mouse click, long-press, and drag on PlayMode UI elements
  • /uloop-simulate-mouse-input - Simulate mouse input in PlayMode via Input System
  • /uloop-simulate-keyboard - Simulate keyboard input in PlayMode via Input System
  • /uloop-record-input - Record keyboard and mouse input during PlayMode
  • /uloop-replay-input - Replay recorded input during PlayMode
  • /uloop-control-play-mode - Control Play Mode
  • /uloop-execute-dynamic-code - Execute dynamic C# code
Direct CLI Usage (Advanced)

You can also call the CLI directly without using Skills:

# List available tools
uloop list

# Launch Unity project with correct version
uloop launch

# Launch with build target (Android, iOS, StandaloneOSX, etc.)
uloop launch -p Android

# Kill running Unity and restart
uloop launch -r

# Execute compilation
uloop compile

# Compile and wait for Domain Reload to complete
uloop compile --wait-for-domain-reload true

# Get logs
uloop get-logs --max-count 10

# Run tests
uloop run-tests --filter-type all

# Execute dynamic code
uloop execute-dynamic-code --code 'using UnityEngine; Debug.Log("Hello from CLI!");'
Shell Completion (Optional)

You can install Bash/Zsh/PowerShell completion:

# Add completion script to shell config (auto-detects shell)
uloop completion --install

# Explicitly specify shell (when auto-detection fails on Windows)
uloop completion --shell bash --install        # Git Bash / MINGW64
uloop completion --shell powershell --install  # PowerShell

# Check completion script
uloop completion

Project Path / Port Specification

If --project-path / --port is omitted, the port is automatically selected from the Unity project detected in the current directory.

To operate multiple Unity instances from a single LLM tool, explicitly specify a project path or port:

# Specify by project path (absolute or relative)
uloop compile --project-path /Users/foo/my-unity-project
uloop compile --project-path ../other-project

# Specify by port number
uloop compile --port {target-port}

[!NOTE]

  • --project-path and --port cannot be used together.
  • You can find the port number in each Unity's uLoopMCP Window.
Using MCP instead of CLI

[!WARNING]
MCP connection may be deprecated or removed in a future release. We recommend using the CLI instead.

You can also connect via MCP (Model Context Protocol). CLI and Skills installation is not required for MCP.

MCP Connection Steps

  1. Select Window > Unity CLI Loop > Settings. A dedicated window will open — press the MCP button.
CleanShot 2026-02-26 at 20 37 16
  1. Next, select the target IDE in the LLM Tool Settings section. Press the yellow "Configure {LLM Tool Name}" button to automatically connect to the IDE.
image
  1. IDE Connection Verification
  • For example, with Cursor, check the Tools & MCP in the settings page and find uLoopMCP. Click the toggle to enable MCP.
image

[!WARNING]
About Windsurf
Project-level configuration is not supported; only a global configuration is available.

Manual Setup (Usually Unnecessary)

[!NOTE]
Usually automatic setup is sufficient, but if needed, you can manually edit the configuration file (e.g., mcp.json):

{
  "mcpServers": {
    "uLoopMCP": {
      "command": "node",
      "args": [
        "[Unity Package Path]/TypeScriptServer~/dist/server.bundle.js"
      ],
      "env": {
        "UNITY_TCP_PORT": "{port}"
      }
    }
  }
}

Path Examples:

  • Via Package Manager: "/Users/username/UnityProject/Library/PackageCache/io.github.hatayama.uloopmcp@[hash]/TypeScriptServer~/dist/server.bundle.js"

[!NOTE]
When installed via Package Manager, the package is placed in Library/PackageCache with a hashed directory name. Using the "Auto Configure Cursor" button will automatically set the correct path.

Multiple Unity Instance Support

[!NOTE]
Multiple Unity instances can be supported by changing port numbers. Unity CLI Loop automatically assigns unused ports when starting up.

Design Philosophy

Unity CLI Loop does not chase tool count. With dynamic C# code execution (execute-dynamic-code), almost any Unity Editor operation can be accomplished through a single tool.

Too many tools make it harder for AI to choose the right one. And even when tools are packaged as Skills, each tool's description still consumes the context window. We believe keeping tools to the essential minimum is good design.

Dedicated tools exist only for operations that dynamic code execution cannot handle by nature — such as frame-spanning input simulation and screenshot capture — and for operations called so frequently in the development loop, like compile and get-logs, that generating C# code each time would waste tokens.

Key Features

Development Loop Tools

1. compile - Execute Compilation

Performs AssetDatabase.Refresh() and then compiles, returning the results. Can detect errors and warnings that built-in linters cannot find.
You can choose between incremental compilation and forced full compilation.
With WaitForDomainReload=true, results are returned after Domain Reload completes, regardless of the ForceRecompile value.

→ Execute compile, analyze error and warning content
→ Automatically fix relevant files
→ Verify with compile again

2. get-logs - Retrieve Logs Same as Unity Console

Filter by LogType or search target string with advanced search capabilities. You can also choose whether to include stacktrace.
This allows you to retrieve logs while keeping the context small.
MaxCount behavior: Returns the latest logs (tail-like behavior). When MaxCount=10, returns the most recent 10 logs.
Advanced Search Features:

  • Regular Expression Support: Use UseRegex: true for powerful pattern matching
  • Stack Trace Search: Use SearchInStackTrace: true to search within stack traces
→ get-logs (LogType: Error, SearchText: "NullReference", MaxCount: 10)
→ get-logs (LogType: All, SearchText: "(?i).*error.*", UseRegex: true, MaxCount: 20)
→ get-logs (LogType: All, SearchText: "MyClass", SearchInStackTrace: true, MaxCount: 50)
→ Identify cause from stacktrace, fix relevant code

3. run-tests - Execute TestRunner (PlayMode, EditMode supported)

Executes Unity Test Runner and retrieves test results. You can set conditions with FilterType and FilterValue.

  • FilterType: all (all tests), exact (individual test method name), regex (class name or namespace), assembly (assembly name)
  • FilterValue: Value according to filter type (class name, namespace, etc.)
    Test results can be output as xml. The output path is returned so AI can read it.
    This is also a strategy to avoid consuming context.
→ run-tests (FilterType: exact, FilterValue: "PlayerControllerTests.TestJump")
→ Check failed tests, fix implementation to pass tests

[!WARNING]
During PlayMode test execution, Domain Reload is forcibly turned OFF. (Settings are restored after test completion)
Note that static variables will not be reset during this period.

Unity Editor Automation & Discovery Tools

4. clear-console - Log Cleanup

Clear logs that become noise during log searches.

→ clear-console
→ Start new debug session

5. execute-menu-item - Execute Menu Items

Execute menu items defined with [MenuItem("xxx")] attribute.

→ Execute project-specific tools
→ Check results with get-logs

6. find-game-objects - Search Scene Objects

Retrieve objects and examine component parameters. Also retrieve information about currently selected GameObjects (multiple selection supported) in Unity Editor.

→ find-game-objects (RequiredComponents: ["Camera"])
→ Investigate Camera component parameters

→ find-game-objects (SearchMode: "Selected")
→ Get detailed information about currently selected GameObjects in Unity Editor (supports multiple selection)

7. get-hierarchy - Analyze Scene Structure

Retrieve information about the currently active Hierarchy in nested JSON format. Works at runtime as well.
Automatic File Export: Retrieved hierarchy data is always saved as JSON in {project_root}/.uloop/outputs/HierarchyResults/ directory. The response only returns the file path, minimizing token consumption even for large datasets.
Selection Mode: Use UseSelection: true to get hierarchy starting from currently selected GameObject(s) in Unity Editor. Supports multiple selection - when parent and child are both selected, only the parent is used as root to avoid duplicate traversal.

→ Understand parent-child relationships between GameObjects, discover and fix structural issues
→ Regardless of scene size, hierarchy data is saved to a file and the path is returned instead of raw JSON
→ get-hierarchy (UseSelection: true)
→ Get hierarchy of currently selected GameObjects without specifying paths manually

8. focus-window - Bring Unity Editor Window to Front (macOS & Windows)

Ensures the Unity Editor window becomes the foreground application on macOS and Windows Editor builds.
Great for keeping visual feedback in sync after other apps steal focus. (Linux is currently unsupported.)

9. screenshot - Take a Screenshot of EditorWindow

Take a screenshot of any EditorWindow as a PNG. Specify the window name (the text displayed in the title bar/tab) to capture.
When multiple windows of the same type are open (e.g., 3 Inspector windows), all windows are saved with numbered filenames.
Supports three matching modes: exact (default), prefix, and contains - all case-insensitive.

→ screenshot (WindowName: "Console")
→ Save Console window state as PNG
→ Provide visual feedback to AI

10. control-play-mode - Control Play Mode

Control Unity Editor's Play Mode. Supports three actions: Play (start/resume), Stop, and Pause.

→ control-play-mode (Action: Play)
→ Start Play Mode to verify game behavior
→ control-play-mode (Action: Pause)
→ Pause to inspect state

11. execute-dynamic-code - Dynamic C# Code Execution

Execute C# code dynamically within Unity Editor.

Async support:

  • You can write await in your snippet (Task/ValueTask/UniTask and any awaitable type)
  • Cancellation is propagated when you pass a CancellationToken to the tool

Security Level Support: Implements 2-tier security control to restrict executable code. To disable this tool entirely, use the tool on/off toggle in the MCP tool settings UI.

  • Level 1 - Restricted 【Recommended Setting】

    • All Unity APIs and .NET standard libraries are generally available
    • User-defined assemblies (Assembly-CSharp, etc.) are also accessible
    • Only pinpoint blocking of security-critical operations:
      • File deletion: File.Delete, Directory.Delete, FileUtil.DeleteFileOrDirectory
      • File writing: File.WriteAllText, File.WriteAllBytes, File.Replace
      • Network communication: All HttpClient, WebClient, WebRequest, Socket, TcpClient operations
      • Process execution: Process.Start, Process.Kill
      • Dynamic code execution: Assembly.Load*, Type.InvokeMember, Activator.CreateComInstanceFrom
      • Thread manipulation: Direct Thread, Task manipulation
      • Registry operations: All Microsoft.Win32 namespace operations
    • Safe operations are allowed:
      • File reading (File.ReadAllText, File.Exists, etc.)
      • Path operations (all Path.* operations)
      • Information retrieval (Assembly.GetExecutingAssembly, Type.GetType, etc.)
    • Use cases: Normal Unity development, automation with safety assurance
  • Level 2 - FullAccess

    • All assemblies are accessible (no restrictions)
    • ⚠️ Warning: Security risks exist, use only with trusted code
→ execute-dynamic-code (Code: "GameObject cube = GameObject.CreatePrimitive(PrimitiveType.Cube); return \"Cube created\";")
→ Rapid prototype verification, batch processing automation
→ Unity API usage restricted according to security level

[!IMPORTANT]
Security Settings

Some tools are disabled by default for security reasons.
To use these tools, enable the corresponding items in the uLoopMCP window "Security Settings":

Basic Security Settings:

  • Allow Tests Execution: Enable run-tests tool
  • Allow Menu Item Execution: Enable execute-menu-item tool
  • Allow Third Party Tools: Enable user-developed custom tools

Dynamic Code Security Level (execute-dynamic-code tool):

  • Level 1 (Restricted): Unity API only, dangerous operations blocked (recommended)
  • Level 2 (FullAccess): All APIs available (use with caution)

To disable execute-dynamic-code entirely, turn it off using the tool on/off toggle.

Setting changes take effect immediately without server restart.

PlayMode Automated Testing Tools

12. simulate-mouse-ui - Simulate Mouse Input on PlayMode UI

Simulate mouse click, long-press, and drag on PlayMode UI elements. Uses EventSystem and ExecuteEvents to dispatch pointer events directly — works independently of both old and new Input System. For game logic that reads Input System (e.g. Mouse.current.leftButton.wasPressedThisFrame), use simulate-mouse-input instead.

Supports 6 actions: Click, LongPress, Drag (one-shot), DragStart/DragMove/DragEnd (split drag).

→ screenshot (CaptureMode: rendering, AnnotateElements: true)
→ Get element coordinates from AnnotatedElements (SimX/SimY)
→ simulate-mouse-ui (Action: Click, X: 400, Y: 300)
→ simulate-mouse-ui (Action: LongPress, X: 400, Y: 300, Duration: 5.0)
→ simulate-mouse-ui (Action: Drag, FromX: 100, FromY: 500, X: 400, Y: 300)
→ simulate-mouse-ui (Action: DragStart, X: 100, Y: 500)
→ simulate-mouse-ui (Action: DragMove, X: 200, Y: 400, DragSpeed: 300)
→ simulate-mouse-ui (Action: DragEnd, X: 400, Y: 300)

https://github.com/user-attachments/assets/c7ee9103-c282-4f90-8b01-64bb17400f3e

13. simulate-mouse-input - Simulate Mouse Input in PlayMode via Input System

Simulate mouse input in PlayMode via Input System. Injects button clicks, mouse delta, and scroll wheel directly into Mouse.current for game logic that reads Input System. Unlike simulate-mouse-ui which fires EventSystem pointer events for uGUI, this tool targets game logic that reads Mouse.current directly. Requires the Input System package, and Active Input Handling must be set to Input System Package (New) or Both in Player Settings.

Supports 5 actions: Click, LongPress, MoveDelta, SmoothDelta, Scroll.

→ simulate-mouse-input (Action: Click, X: 400, Y: 300)
→ simulate-mouse-input (Action: Click, X: 400, Y: 300, Button: Right)
→ simulate-mouse-input (Action: LongPress, X: 400, Y: 300, Duration: 2.0)
→ simulate-mouse-input (Action: MoveDelta, DeltaX: 100, DeltaY: 0)
→ simulate-mouse-input (Action: Scroll, ScrollY: 120)
→ simulate-mouse-input (Action: SmoothDelta, DeltaX: 300, DeltaY: 0, Duration: 0.5)

14. simulate-keyboard - Simulate Keyboard Input in PlayMode

Simulate keyboard key input in PlayMode via Input System. Supports single key taps, sustained holds, and multi-key combinations (e.g. Shift+W for sprinting). Requires the Input System package, and Active Input Handling must be set to Input System Package (New) or Both in Player Settings. Game code must read input via Input System API (e.g. Keyboard.current[Key.W].isPressed), not legacy Input.GetKey().

Supports 3 actions: Press (one-shot tap or timed hold), KeyDown (hold key down), KeyUp (release held key).

→ simulate-keyboard (Action: Press, Key: Space)
→ simulate-keyboard (Action: Press, Key: W, Duration: 2.0)
→ simulate-keyboard (Action: KeyDown, Key: LeftShift)
→ simulate-keyboard (Action: KeyDown, Key: W)
→ screenshot (CaptureMode: rendering)
→ simulate-keyboard (Action: KeyUp, Key: W)
→ simulate-keyboard (Action: KeyUp, Key: LeftShift)

15. record-input - Record Input During PlayMode

Record keyboard and mouse input during PlayMode frame-by-frame into a JSON file. Captures key presses, mouse movement, clicks, and scroll events via Input System device state diffing. Requires the Input System package.

→ record-input (Action: Start)
→ record-input (Action: Start, Keys: "W,A,S,D,Space")
→ record-input (Action: Stop)
→ JSON file saved to .uloop/outputs/InputRecordings/

16. replay-input - Replay Recorded Input During PlayMode

Replay recorded keyboard and mouse input during PlayMode. Loads a JSON recording and injects input frame-by-frame via Input System. Supports looping and progress monitoring. Requires the Input System package.

→ replay-input (Action: Start)
→ replay-input (Action: Start, InputPath: "scripts/my-play.json", Loop: true)
→ replay-input (Action: Status)
→ replay-input (Action: Stop)

Tool Reference

For detailed specifications of all tools (parameters, responses, examples), see TOOL_REFERENCE.md.

Unity CLI Loop Extension Development

Unity CLI Loop enables efficient development of project-specific tools without requiring changes to the core package.
The type-safe design allows for reliable custom tool implementation in minimal time.
(If you ask AI, they should be able to make it for you soon ✨)

You can publish your extension tools on GitHub and reuse them across other projects. See uLoopMCP-extensions-sample for an example.

[!TIP]
For AI-assisted development: Detailed implementation guides are available in .claude/rules/mcp-tools.md for tool development and .claude/rules/cli.md for CLI/Skills development. These guides are automatically loaded by Claude Code when working in the relevant directories.

[!IMPORTANT]
Security Settings

Project-specific tools require enabling Allow Third Party Tools in the uLoopMCP window "Security Settings".
When developing custom tools that involve dynamic code execution, also consider the Dynamic Code Security Level setting.

View Implementation Guide

Step 1: Create Schema Class (define parameters):

using System.ComponentModel;

public class MyCustomSchema : BaseToolSchema
{
    [Description("Parameter description")]
    public string MyParameter { get; set; } = "default_value";

    [Description("Example enum parameter")]
    public MyEnum EnumParameter { get; set; } = MyEnum.Option1;
}

public enum MyEnum
{
    Option1 = 0,
    Option2 = 1,
    Option3 = 2
}

Step 2: Create Response Class (define return data):

public class MyCustomResponse : BaseToolResponse
{
    public string Result { get; set; }
    public bool Success { get; set; }

    public MyCustomResponse(string result, bool success)
    {
        Result = result;
        Success = success;
    }

    // Required parameterless constructor
    public MyCustomResponse() { }
}

Step 3: Create Tool Class:

using System.Threading;
using System.Threading.Tasks;

[McpTool(Description = "Description of my custom tool")]  // ← Auto-registered with this attribute
public class MyCustomTool : AbstractUnityTool<MyCustomSchema, MyCustomResponse>
{
    public override string ToolName => "my-custom-tool";

    // Executed on main thread
    protected override Task<MyCustomResponse> ExecuteAsync(MyCustomSchema parameters, CancellationToken cancellationToken)
    {
        // Type-safe parameter access
        string param = parameters.MyParameter;
        MyEnum enumValue = parameters.EnumParameter;

        // Check for cancellation before long-running operations
        cancellationToken.ThrowIfCancellationRequested();

        // Implement custom logic here
        string result = ProcessCustomLogic(param, enumValue);
        bool success = !string.IsNullOrEmpty(result);

        // For long-running operations, periodically check for cancellation
        // cancellationToken.ThrowIfCancellationRequested();

        return Task.FromResult(new MyCustomResponse(result, success));
    }

    private string ProcessCustomLogic(string input, MyEnum enumValue)
    {
        // Implement custom logic
        return $"Processed '{input}' with enum '{enumValue}'";
    }
}

[!IMPORTANT]
Important Notes:

  • Thread Safety: Tools execute on Unity's main thread, so Unity API calls are safe without additional synchronization.

Please also refer to Custom Tool Samples.

Custom Skills for Your Tools

When you create a custom tool, you can create a Skill/ subfolder within the tool folder and place a SKILL.md file there. This allows LLM tools to automatically discover and use your custom tool through the Skills system.

How it works:

  1. Create a Skill/ subfolder in your custom tool's folder
  2. Place SKILL.md inside the Skill/ folder
  3. Run uloop skills install --claude to install all skills (bundled + project)
  4. LLM tools will automatically recognize your custom skill

Directory structure:

Assets/Editor/CustomTools/MyTool/
├── MyTool.cs           # Tool implementation
└── Skill/
    ├── SKILL.md        # Skill definition (required)
    └── references/     # Additional files (optional)
        └── usage.md

SKILL.md format:

---
name: uloop-my-custom-tool
description: "Description of what the tool does and when to use it."
---

# uloop my-custom-tool

Detailed documentation for the tool...

Scanned locations (searches for Skill/SKILL.md files):

  • Assets/**/Editor/<ToolFolder>/Skill/SKILL.md
  • Packages/*/Editor/<ToolFolder>/Skill/SKILL.md
  • Library/PackageCache/*/Editor/<ToolFolder>/Skill/SKILL.md

[!TIP]

  • Add internal: true to the frontmatter to exclude a skill from installation (useful for internal/debug tools)
  • Additional files in the Skill/ folder (such as references/, scripts/, assets/) are also copied during installation

See HelloWorld sample for a complete example.

For a more comprehensive example project, see uLoopMCP-extensions-sample.

Other

Unity CLI Loop Files

UserSettings/UnityMcpSettings.json stores per-user editor session state and should always remain local-only.

The .uloop/ directory at the project root stores CLI cache, tool registry, and runtime outputs. Most of its contents are local-only, but some files can optionally be git-tracked for team sharing.

File Purpose Git-track?
settings.permissions.json Team-wide security policy (third-party tool access, dynamic code security level) Optional
settings.tools.json Per-tool enable/disable preferences Optional
tools.json Auto-generated MCP tool registry No
outputs/ Runtime outputs (test results, screenshots, hierarchy dumps) No

[!TIP]
Recommended .gitignore pattern

**/.uloop/*
!**/.uloop/settings.permissions.json
!**/.uloop/settings.tools.json

This ignores auto-generated files and runtime outputs while allowing team-shared configuration to be tracked.
Adjust the ! lines to match your team's needs — you can remove either line if you don't need to share that file.

License

MIT License

Reviews (0)

No results found