Search Unity project via uloop CLI. Use when you need to: (1) Find assets by name or type (scenes, prefabs, scripts, materials), (2) Search for project resources using Unity's search system, (3) Locate files within the Unity project.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
skills listSkill Instructions
name: uloop-unity-search description: Search Unity project via uloop CLI. Use when you need to: (1) Find assets by name or type (scenes, prefabs, scripts, materials), (2) Search for project resources using Unity's search system, (3) Locate files within the Unity project.
uloop unity-search
Search Unity project using Unity Search.
Usage
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 |
Examples
# 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.
More by hatayama
View allGet Unity Search provider details via uloop CLI. Use when you need to: (1) Discover available search providers, (2) Understand search capabilities and filters, (3) Configure searches with specific provider options.
Execute Unity Test Runner via uloop CLI. Use when you need to: (1) Run unit tests (EditMode tests), (2) Run integration tests (PlayMode tests), (3) Verify code changes don't break existing functionality.
Sample hello world tool via uloop CLI. Use when you need to test the MCP tool system or see an example of custom tool implementation.
Execute Unity MenuItem via uloop CLI. Use when you need to: (1) Trigger menu commands programmatically, (2) Automate editor actions (save, build, refresh), (3) Run custom menu items defined in scripts.
