Why Use This This skill provides specialized capabilities for hatayama's codebase.
Use Cases Developing new features in the hatayama repository Refactoring existing code to follow hatayama standards Understanding and working with hatayama's codebase structure
Install Guide 2 steps 1 2 Install inside Ananke
Click Install Skill, paste the link below, then press Install.
https://github.com/hatayama/uLoopMCP/tree/main/.claude/skills/uloop-unity-search Skill Snapshot Auto scan of skill assets. Informational only.
Valid SKILL.md Checks against SKILL.md specification
Source & Community
Updated At Jan 18, 2026, 12:21 PM
Skill Stats
SKILL.md 52 Lines
Total Files 1
Total Size 0 B
License NOASSERTION
---
name: uloop-unity-search
description: "Search Unity project for assets. Use when: finding scenes, prefabs, scripts, materials, or other assets by name/type, or when user asks to search project files. Returns asset paths and metadata."
---
# uloop unity-search
Search Unity project using Unity Search.
## Usage
```bash
uloop unity-search [options]
```
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `--search-query` | string | - | Search query |
| `--providers` | array | - | Search providers (e.g., `asset`, `scene`, `find`) |
| `--max-results` | integer | `50` | Maximum number of results |
| `--save-to-file` | boolean | `false` | Save results to file |
## Global Options
| Option | Description |
|--------|-------------|
| `--project-path <path>` | Target a specific Unity project (mutually exclusive with `--port`). Path resolution follows the same rules as `cd` — absolute paths are used as-is, relative paths are resolved from cwd. |
| `-p, --port <port>` | Specify Unity TCP port directly (mutually exclusive with `--project-path`). |
## Examples
```bash
# Search for assets
uloop unity-search --search-query "Player"
# Search with specific provider
uloop unity-search --search-query "t:Prefab" --providers asset
# Limit results
uloop unity-search --search-query "*.cs" --max-results 20
```
## Output
Returns JSON array of search results with paths and metadata.
## Notes
Use `uloop get-provider-details` to discover available search providers.