Agent skill
ci-and-releases
A lightweight checklist for CI, toolchain bumps, and version/release hygiene for the ComputationalPaths Lean 4 project (Lake + lean-action CI).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/ci-and-releases
SKILL.md
CI & Releases
This skill provides a repeatable checklist for keeping the repo green on CI and preparing small “release-like” changes (toolchain bump, version bump, dependency updates).
CI mental model
CI is essentially “clean checkout + lake build”. Keep changes compatible with:
- current toolchain in
lean-toolchain - dependencies pinned by
lake-manifest.json - the project’s “zero-warning” expectations (treat warnings as failures to fix immediately)
Local verification (Windows)
From the Lean project root (computational_paths/):
.\lake.cmd build
.\lake.cmd exe computational_paths
If you suspect stale artifacts:
.\lake.cmd clean
.\lake.cmd build
Version bump checklist
This repo exposes a version string:
ComputationalPaths/Basic.leandefineslibraryVersionMain.leanprints it via the executable
When bumping version:
- Update
ComputationalPaths/Basic.lean(libraryVersion) - Run
.\lake.cmd build - Run
.\lake.cmd exe computational_pathsand confirm the output - If the bump is user-visible, update
README.md(or add a short changelog note)
Toolchain bump checklist
When updating lean-toolchain:
- Edit
lean-toolchain - Run
.\lake.cmd build - If dependencies need repinning, run
lake updateand re-build - Ensure CI config still matches expectations (
.github/workflows/*)
Dependency update checklist
If updating deps (manifest changes):
- Run
lake update - Build (
.\lake.cmd build) - Fix any breakage by updating imports/lemmas or pinning versions back as needed
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?