# Uloop Compile

> uloop compile

- Skill: `hatayama/uloop-compile-3` (Agent Skill)
- Install (CLI): `npx skillmds@latest add hatayama/uloop-compile-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/hatayama/uloop-compile-3/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: hatayama (https://skillmd.com/u/hatayama)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/hatayama/uloop-compile-3

---


# uloop compile

Execute Unity project compilation.

## Usage

```bash
uloop compile [--force-recompile]
```

## Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `--force-recompile` | boolean | Force full recompilation (triggers Domain Reload) |

## Examples

```bash
# Check compilation
uloop compile

# Force full recompilation
uloop compile --force-recompile
```

## Output

Returns JSON:
- `Success`: boolean
- `ErrorCount`: number
- `WarningCount`: number

## Troubleshooting

If CLI hangs or shows "Unity is busy" errors after compilation, stale lock files may be preventing connection. Run the following to clean them up:

```bash
uloop fix
```

This removes any leftover lock files (`compiling.lock`, `domainreload.lock`, `serverstarting.lock`) from the Unity project's Temp directory.

