console-clear-logs

Clears the Unity Editor Console and MCP log cache for isolated log capture.

Updated May 27, 2026
One-click install
npx skills add https://github.com/AdielMag/ClashUp --skill console-clear-logs-adielmag
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: console-clear-logs
Source: https://github.com/AdielMag/ClashUp/tree/main/client/ClashUp.Unity/.claude/skills/console-clear-logs
Command: npx skills add https://github.com/AdielMag/ClashUp --skill console-clear-logs-adielmag

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires unity-mcp-cli.

What problem does it solve? When debugging in Unity, the Editor Console and MCP log cache accumulate old entries, making it hard to isolate errors tied to a specific action. This Skill wipes both so you only see fresh log output. ## Core Features & Use Cases - Editor Console Clearing: Calls Debug.ClearDeveloperConsole() to wipe the Unity Editor Console window. - MCP Log Cache Reset: Clears the MCP-side LogCollector cache so subsequent console-get-logs calls return only new entries. - Use Case: Before reproducing a bug in your Unity project, clear all logs, perform the action, then run console-get-logs to see only the errors generated by that exact action. ## Quick Start Ask the AI to clear the Unity console and MCP log cache before reproducing a bug so only new log entries are captured.

Frequently Asked Questions about console-clear-logs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I clear the Unity Editor Console programmatically?▼

Use Debug.ClearDeveloperConsole() to wipe the Unity Editor Console window. This Skill wraps that call and also clears the MCP-side LogCollector cache in one step.

How to isolate Unity logs for a specific action?▼

Clear the console and MCP log cache first, then perform the action you want to debug. Subsequent console-get-logs calls will only return entries generated after the clear.

Does console-clear-logs require any input parameters?▼

No required parameters. The input schema accepts an optional 'nothing' string field, but the tool works with an empty JSON object passed to unity-mcp-cli run-tool.

Why is unity-mcp-cli not found when running the tool?▼

The CLI is not installed globally. Install it with npm install -g unity-mcp-cli, or prefix commands with npx unity-mcp-cli instead.

Does clearing logs return any structured output?▼

No, this tool does not return structured output. It performs the clearing action only; use console-get-logs afterward to retrieve new log entries.