build-zfall
Runs a build script to compile the C# WinUI application and C++ monitor component.
Install
mkdir -p .claude/skills/build-zfall && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/17928" && unzip -o skill.zip -d .claude/skills/build-zfall && rm skill.zipInstalls to .claude/skills/build-zfall
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.
Builds both ZombieForge (C#, x86) and BlackOpsMonitor (C++, Win32) in Debug configuration. Use when asked to "build everything", "full build", "build ZombieForge and BlackOpsMonitor", or "run Build-ZFAll".Key capabilities
- →Build the C# WinUI 3 application
- →Compile the C++ DLL for BlackOpsMonitor
- →Verify C# build success before C++ compilation
- →Report overall build status
How it works
This skill executes a PowerShell script that first builds the C# WinUI 3 app and then, if the C# build succeeds, compiles the BlackOpsMonitor C++ DLL.
Inputs & outputs
When to use build-zfall
- →Full project build
- →Build ZombieForge and BlackOpsMonitor
- →Run full build verification
About this skill
Build-ZFAll
Builds the full ZombieForge solution: the C# WinUI 3 app first, then the BlackOpsMonitor C++ DLL. BlackOpsMonitor is only built if the C# build succeeds.
Step 1 — Run the full build
Run the helper script from this skill's base directory:
.\Build-ZFAll.ps1
This runs in order:
dotnet build ZombieForge\ZombieForge.csproj -c Debug -p:Platform=x86MSBuild BlackOpsMonitor\BlackOpsMonitor.vcxproj /p:Configuration=Debug /p:Platform=Win32
Step 2 — Report result
- Success: Report "✅ Full build succeeded (ZombieForge + BlackOpsMonitor)."
- C# failure: Show dotnet errors. MSBuild step is skipped.
- MSBuild failure: Show MSBuild errors. Note that the C# build passed.
When not to use it
- →When only a partial build is required
- →When building a different project than ZombieForge or BlackOpsMonitor
Limitations
- →Only builds ZombieForge and BlackOpsMonitor
- →Only builds in Debug configuration
- →Only targets x86 for C# and Win32 for C++
How it compares
This skill automates the sequential build process for two distinct projects, ensuring conditional execution of the second based on the first, unlike manual compilation which would require separate commands and checks.
Compared to similar skills
build-zfall side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| build-zfall (this skill) | 0 | 3mo | No flags | Beginner |
| generate-changes | 0 | 3mo | Review | Intermediate |
| upgrade-deps | 0 | 4mo | Review | Advanced |
| dotnet-cli-packaging | 0 | 4mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
generate-changes
dotnet
>
upgrade-deps
sorayuki
Follow the upstream plugin template and OBS version for this plugin.
dotnet-cli-packaging
rudironsoni
>-
dotnet-github-releases
rudironsoni
>-
build
rdkcentral
Build BartonCore from source. Use when the user wants to compile the project, rebuild after code changes, reconfigure CMake options, or understand the build system. Covers the build.sh convenience script, incremental cmake builds, CMake configuration flags, and the development build profile.
add-new-jit-ee-api
dotnet
Add a new API to the JIT-VM (aka JIT-EE) interface in the codebase.