Agent skill · Design & Presentation

unity-profiler

Unity Profiler skill for performance analysis, frame debugging, memory profiling, and optimization workflows.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill unity-profiler --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Allowed tools: ReadGrepWriteBashEditGlobWebFetch
Path: library/specializations/game-development/skills/unity-profiler/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Capabilities
  3. CPU Profiling
  4. GPU Profiling
  5. Memory Profiling
  6. Automated Analysis
  7. Prerequisites
  8. Usage Patterns
  9. Custom Profiler Markers
  10. Performance Test
  11. Best Practices
  12. References
Ships with 1 file
  • README.md
More from babysitter
All skills →
About this skill
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.

Keep going