cliinvoke-inner-loop
Daily development workflow for CliInvoke (restore, build, test)
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Daily development workflow for CliInvoke (restore, build, test)
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Validates that code changes adhere to the three primary CliInvoke invocation patterns (CliRun, IProcessInvoker, and IExternalProcess) to prevent architectural pattern bleed and maintain separation of concerns.
Release operations for CliInvoke including local NuGet packing and publishing
| name | cliinvoke-inner-loop |
| description | Daily development workflow for CliInvoke (restore, build, test) |
This skill provides the a standardized sequence for daily development and local validation of the CliInvoke library.
Run the main project restore and build to ensure the implementation is correct.
dotnet restore src/CliInvoke/
dotnet build --no-restore -c Debug src/CliInvoke/
Run tests for the main project to verify functionality.
dotnet test --no-build src/CliInvoke/
If changes affect multiple projects, build the entire solution.
dotnet build src/CliInvoke.sln -c Debug
Verify that the project builds in Release mode with SourceLink enabled.
dotnet build -c Release /p:ContinuousIntegrationBuild=true
dotnet build succeeds for src/CliInvoke/.src/CliInvoke/ pass.