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.