Unity UI Toolkit skill for runtime UI development, USS styling, UXML templates, and custom visual elements.
Creates Unity runtime UIs with UI Toolkit using UXML templates, USS styling, and custom visual elements.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdUI Toolkit development for Unity runtime and editor interfaces.
This skill provides capabilities for building user interfaces using Unity's UI Toolkit, including UXML templates, USS styling, and custom visual elements.
<ui:UXML xmlns:ui="UnityEngine.UIElements">
<ui:VisualElement class="container">
<ui:Label name="health-label" text="Health: 100" />
<ui:ProgressBar name="health-bar" value="100" />
<ui:Button name="heal-button" text="Heal" />
</ui:VisualElement>
</ui:UXML>
.container {
flex-direction: column;
padding: 10px;
background-color: rgba(0, 0, 0, 0.8);
}
#health-bar {
height: 20px;
margin: 5px 0;
}
#heal-button:hover {
background-color: #4CAF50;
}
public class HealthUI : MonoBehaviour
{
[SerializeField] private UIDocument uiDocument;
private ProgressBar healthBar;
void Start()
{
var root = uiDocument.rootVisualElement;
healthBar = root.Q<ProgressBar>("health-bar");
root.Q<Button>("heal-button").clicked += OnHealClicked;
}
void OnHealClicked() { /* Handle heal */ }
}
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.