unity-profiler
Unity Profiler skill for performance analysis, frame debugging, memory profiling, and optimization workflows.
npx skills add a5c-ai/babysitter --skill unity-profiler --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Unity Profiler Skill Performance profiling and optimization using Unity Profiler tools. ## Overview This skill provides capabilities for analyzing and optimizing Unity game performance using the Profiler, Frame Debugger, and Memory Profiler. ## Capabilities ### CPU Profiling - Analyze frame timing - Identify bottlenecks - Profile custom code markers - Handle deep profiling ### GPU Profiling - Analyze render passes - Profile shader performance - Identify overdraw - Debug draw calls ### Memory Profiling - Track allocations - Identify memory leaks - Analyze texture memory - Profile managed heap ### Automated Analysis - Create profiler scripts - Set up performance tests - Generate reports - Monitor regressions ## Prerequisites - Unity 2021.3+ - Profiler module (built-in) - Memory Profiler package (optional) ## Usage Patterns ### Custom Profiler Markers ```csharp using Unity.Profiling; public class OptimizedSystem : MonoBehaviour { static readonly ProfilerMarker s_UpdateMarker = new ProfilerMarker("MySystem.Update"); void Update() { using (s_UpdateMarker.Auto()) { // Code to profile ProcessEntities(); } } } ``` ### Performance Test ```csharp [Test, Performance] public void TestSpawnPe
- Overview
- Capabilities
- CPU Profiling
- GPU Profiling
- Memory Profiling
- Automated Analysis
- Prerequisites
- Usage Patterns
- Custom Profiler Markers
- Performance Test
- Best Practices
- References
What does the unity-profiler skill do?
Unity Profiler skill for performance analysis, frame debugging, memory profiling, and optimization workflows.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill unity-profiler --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
