docs(skill): add maintenance skill for routine maintenance workflow#40
Merged
Conversation
specs/maintenance.md defines the routine workflow (deps, models, code quality, spec alignment) but there was no skill to launch it. The load-test skill was the only entry under .claude/skills/, so an agent running maintenance had to read the spec and assemble the steps from scratch each time. The skill: - Lists the prerequisite tools (cargo-audit, cargo-deny) with install commands, since they are not in the default toolchain and were the only checks not runnable locally during the most recent maintenance pass. - Walks the four workflow phases (R1 deps, R2 models, R3 code quality, R5/R6 specs + AGENTS.md alignment) with the exact commands to run. - Documents the typical "three or four small PRs" shape and cites PRs #34-#37 as a worked example. Register the new skill in AGENTS.md alongside the existing load-test skill.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add a
.claude/skills/maintenance/skill that walks the routine-maintenance workflow defined inspecs/maintenance.md, and register it in AGENTS.md alongsideload-test.Why
specs/maintenance.mddefines the workflow (R1 deps, R2 models, R3 code quality, R5/R6 specs alignment) but there was no skill or runnable companion. The first thing an agent did during the most recent maintenance pass was discover thatcargo-auditandcargo-deny(R1.3, R1.4) are not installed by default and only run in CI — that knowledge had to be re-derived each time.How
The skill:
cargo install cargo-audit cargo-deny) with the rationale that CI runs them but local runs catch issues before pushing.+deprecatedbuild-metadata signal that surfacedserde_yaml, and thedtolnay/rust-toolchainrolling-toolchain gotcha (already fixed by ci: pin Rust toolchain to 1.95 across CI and local dev #38).AGENTS.md gets one new bullet under "Available skills".
Risk
Checklist
load-test/skill (front-matter + prerequisites + workflow)