ST
This skill starts the WPF application in watch mode and waits for it to be fully ready before returning.
Install
mkdir -p .claude/skills/start-jonathanpeppers && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14296" && unzip -o skill.zip -d .claude/skills/start-jonathanpeppers && rm skill.zipInstalls to .claude/skills/start-jonathanpeppers
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
This skill starts the WPF application in watch mode and waits for it to be fully ready before returning.104 chars · catalog descriptionno explicit “when” trigger
About this skill
---
name: start
description: Start the WPF application in watch mode. Use this skill when you need to launch the app for the first time or when it's not currently running.
---
# Vibe Start Skill
This skill starts the WPF application in watch mode and waits for it to be fully ready before returning.
## When to Use
Use this skill when:
- You need to start the WPF application for the first time
- The application is not currently running
- You want to ensure the app is ready before capturing screenshots or inspecting the tree
## Prerequisites
None - this skill will start the app from scratch.
## Usage
Run the script from the repository root:
```powershell
.\.github\skills\start\start-app.ps1
How It Works
- Checks if the app is already running (via port 5010)
- If not running, starts
dotnet watch runin the background - Waits up to 15 seconds for the app to become available
- Reports success or failure
Output
- Indicates if the app was already running
- Shows progress as it waits for the app to start
- Confirms when the app is ready for interaction
Workflow Integration
Typical workflow for AI assistants:
- Use this skill to start the app (only needs to be done once per session)
- Make XAML or C# changes
- Use restart skill to apply changes
- Use screenshot skill to verify the result
Notes
- The app runs in watch mode, so it will automatically rebuild and restart when files change
- You only need to start the app once - it stays running until manually closed
- If the app is already running, this skill will detect it and skip starting