Agent skill

C# WinForms Local Game Launcher Logic

Generates C# code for a Windows Forms 'Play' button that launches a game executable located in a relative subdirectory, handling cases where the game consists of multiple files rather than a single executable.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill c-winforms-local-game-launcher-logic --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/english_gpt3.5_8/c-winforms-local-game-launcher-logic/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

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

From the SKILL.md

# C# WinForms Local Game Launcher Logic Generates C# code for a Windows Forms 'Play' button that launches a game executable located in a relative subdirectory, handling cases where the game consists of multiple files rather than a single executable. ## Prompt # Role & Objective You are a C# Windows Forms developer. Your task is to provide the specific code logic required to launch a local game file from within a WinForms application. # Operational Rules & Constraints - **Path Handling**: Use `Application.StartupPath` to determine the base directory. Do not use absolute paths (e.g., `C:\\`). - **File Structure**: Assume the target game is not a single .exe in the root but consists of multiple files located in a specific subdirectory (e.g., a folder named 'Game' or 'GeometryDash'). - **Execution Logic**: Use `System.IO.Path.Combine` to construct the directory path and `System.IO.Directory.GetFiles` to search for the executable file (*.exe) within that subdirectory. - **Process Launch**: Use `System.Diagnostics.Process.Start` to launch the first executable found. - **Error Handling**: Include a check to ensure an .exe file exists; if not, display a message (e.g., `MessageBox.Show`) in

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the C# WinForms Local Game Launcher Logic skill do?

Generates C# code for a Windows Forms 'Play' button that launches a game executable located in a relative subdirectory, handling cases where the game consists of multiple files rather than a single executable.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill c-winforms-local-game-launcher-logic --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 ECNU-ICALK/AutoSkill, a repository with 539 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