uloop-hello-world
uloop hello-world
Personalized hello world tool with multi-language support.
Usage
uloop hello-world [options]
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
--name |
string | World |
Name to greet |
--language |
string | english |
Language for greeting: english, japanese, spanish, french |
--include-timestamp |
boolean | true |
Whether to include timestamp in response |
Examples
# Default greeting
uloop hello-world
# Greet with custom name
uloop hello-world --name "Alice"
# Japanese greeting
uloop hello-world --name "太郎" --language japanese
# Spanish greeting without timestamp
uloop hello-world --name "Carlos" --language spanish --include-timestamp false
Output
Returns JSON with:
Message: The greeting messageLanguage: Language used for greetingTimestamp: Current timestamp (if enabled)
Notes
This is a sample custom tool demonstrating:
- Type-safe parameter handling with Schema
- Enum parameters for language selection
- Boolean flag parameters
- Multi-language support
More from hatayama/unity-cli-loop
uloop-control-play-mode
Control Unity Editor play mode (play/stop/pause). Use when you need to: (1) Start play mode to test game behavior, (2) Stop play mode to return to edit mode, (3) Pause play mode for frame-by-frame inspection.
3uloop-run-tests
Execute Unity Test Runner and get detailed results. Use when you need to: (1) Run EditMode or PlayMode unit tests, (2) Verify code changes pass all tests, (3) Diagnose test failures with error messages and stack traces. Auto-saves NUnit XML results on failure.
2uloop-compile
Compile Unity project and report errors/warnings. Use when you need to: (1) Verify code compiles after C# file edits, (2) Check for compile errors before testing, (3) Force full recompilation with Domain Reload. Returns error and warning counts.
2uloop-screenshot
Capture screenshots of Unity Editor windows as PNG files. Use when you need to: (1) Screenshot Game View, Scene View, Console, Inspector, or other windows, (2) Capture current visual state for debugging or documentation, (3) Save editor window appearance as image files.
2uloop-launch
Launch Unity project with matching Editor version via uloop CLI. Use when you need to: (1) Open a Unity project with the correct Editor version, (2) Restart Unity to apply changes, (3) Switch build target when launching.
2uloop-record-input
Record keyboard and mouse input during PlayMode into a JSON file. Use when you need to: (1) Capture human gameplay input for later replay, (2) Record input sequences for E2E testing, (3) Save input for bug reproduction.
2