Agent Skill
2/7/2026

uloop-clear-console

Clear Unity console logs. Use when: clearing console before tests, starting fresh debugging session, or when user asks to clear logs. Removes all log entries from Unity Console.

H
hatayama
138GitHub Stars
1Views
npx skills add hatayama/uLoopMCP

SKILL.md

Nameuloop-clear-console
DescriptionClear Unity console logs. Use when: clearing console before tests, starting fresh debugging session, or when user asks to clear logs. Removes all log entries from Unity Console.

name: uloop-clear-console description: "Clear all Unity Console log entries. Use when you need to: (1) Clear console before running tests or compilation, (2) Start a fresh debugging session, (3) Remove noisy logs to isolate specific output."

uloop clear-console

Clear Unity console logs.

Usage

uloop clear-console [--add-confirmation-message]

Parameters

ParameterTypeDefaultDescription
--add-confirmation-messagebooleanfalseAdd confirmation message after clearing

Global Options

OptionDescription
--project-path <path>Optional. Use only when the target Unity project is not the current directory.

Examples

# Clear console
uloop clear-console

# Clear with confirmation
uloop clear-console --add-confirmation-message

Output

Returns JSON with:

  • Success (boolean): Whether the clear operation succeeded
  • ClearedLogCount (number): Total number of log entries that were cleared
  • ClearedCounts (object): Breakdown by log type
    • ErrorCount (number): Errors cleared
    • WarningCount (number): Warnings cleared
    • LogCount (number): Info logs cleared
  • Message (string): Description of the result; carries the failure summary when the operation fails (e.g. "Failed to clear console: ...")
  • ErrorMessage (string): Currently always empty for this tool — read Message for failure details
Skills Info
Original Name:uloop-clear-consoleAuthor:hatayama