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.