Agent skill
build-ci
Build scripts, CI pipelines, and versioning for the .NET 8 WPF widget host app. Use when setting up build workflows, CI checks, packaging gates, or semantic versioning rules.
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/build-ci
SKILL.md
Build CI
Overview
Automate builds, tests, and versioning for consistent releases.
This skill also defines “quality gates” expectations typically enforced in CI.
Workflow
- Define build steps (restore, build, test, pack).
- Configure CI pipeline stages and caching.
- Add versioning strategy (semver, git tags).
- Publish artifacts to CI outputs.
Definition of done (DoD)
- Local build script parity is maintained (prefer using
build.ps1when applicable) - CI steps are deterministic (no environment-dependent behavior)
- Minimum gates exist for relevant changes: build + nearest tests
- Packaging/signing steps are separated from compile/test steps
Guidance
- Keep CI deterministic and fast.
- Fail on warnings for release branches.
- Store build scripts in repo for local parity.
Quality gates (recommended)
- Restore/build/test are separate and cacheable
- Test runs are scoped (run the nearest test project(s) when possible)
- Security/quality scanning is additive (warn first, then enforce)
References
references/pipelines.mdfor CI flow.references/versioning.mdfor version rules.references/build-scripts.mdfor local build scripts.
Didn't find tool you were looking for?