What problem does it solve?
This Skill helps you create and verify C# Process plugins that run as isolated executable tools and communicate cleanly with the Madorin host, so you can ship richer plugins without hand-writing protocol plumbing.
Core Features & Use Cases
- Process-based plugin architecture: Build executable plugins with stdin and stdout JSON messaging for isolation and compatibility.
- Strongly typed development flow: Use the generated debugger, plugin metadata, and framework scaffolding instead of manual protocol code.
- Testing and release readiness: Validate every tool in DEBUG self-test mode, then publish JIT self-contained or AOT builds.
- Use Case: Create a reliable utility plugin that exposes several tools, confirms parameter binding locally, and then ships as an installable executable.
Quick Start
Ask the assistant to generate a C# Process plugin with a DEBUG-only self-test entry point, typed tools, and a complete build, test, and publish workflow.