cliinvoke-inner-loop
Daily development workflow for CliInvoke (restore, build, test)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Daily development workflow for CliInvoke (restore, build, test)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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.