
Maintainer Sweep
- 8 installs
- 5.7k repo stars
- Updated August 2, 2026
- tw93/kaku
Helps with ai & agent building tasks during AI-assisted development.
About
maintainer-sweep is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- maintainer-sweep
- AI & Agent Building
- AI-coding skill
Maintainer Sweep by the numbers
- 8 all-time installs (skills.sh)
- +2 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #12,321 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/tw93/kaku --skill maintainer-sweepAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 8 |
|---|---|
| repo stars | ★ 5.7k |
| Last updated | August 2, 2026 |
| Repository | tw93/kaku ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
Kaku Maintainer Sweep
Use this skill for maintenance work that spans GitHub issues, pull requests, local fixes, main CI, and public follow-up. It is not the notarized release flow, and it must not contain private signing credentials or local machine setup.
Workflow
1. Refresh live state
- Run
gh issue list --state open --limit 20andgh pr list --state open --limit 20. - For each actionable item, read
gh issue view <n>orgh pr view <n>and confirm title, author, state, body, and recent comments. - If the task asks for the latest state, refresh the lists again before final decisions.
2. Map reports to code
- Find the latest release tag with
git tag --sort=-version:refname | head -1; ignore rolling tags such asnightlyunless the maintainer asks about them. - Compare relevant changes with
git log <tag>..HEAD --oneline,git show, and targetedrg. - Do not treat a closed issue as proof. Identify the fix mechanism, the commit, or the remaining gap.
3. Fix and verify
- Keep fixes scoped. For unrelated issues, prefer one commit per issue or behavior.
- For shell integration changes, run the affected smoke test and the shell smoke group when feasible.
- For AI provider, transport, or config changes, run targeted Cargo tests before repository-level checks.
- For release-adjacent work, prefer
git diff --check,make fmt-check,make check,make test, andmake appunless the maintainer narrows the gate.
4. Push safely
- Confirm the tree contains only intended changes.
- Run
git fetch origin main, then verifyorigin/mainstill matches the expected base beforegit push origin main. - If
origin/mainmoved, stop and revieworigin/main..HEAD. - After pushing, locate the new run with
gh run list --branch main --limit 5and watch it withgh run watch <id> --exit-status.
5. Follow up publicly
- Post fixed/closed replies only after the relevant GitHub Actions run on
mainis green. - Confirm each item identity again before posting.
- Match the opener's language when it is Chinese or English. Use English for Japanese or Korean unless the maintainer says otherwise.
- Start with
@login, one short thanks, the concrete fix or reason, and the next release, nightly, or verification step. - Use Nightly as a test path only after verifying it was rebuilt for the fix.
nightlyis a rolling GitHub prerelease produced by./scripts/nightly.sh; a push tomainalone does not refresh the DMG. - For merged contributor PRs, leave at most one short thanks comment after merge or Nightly availability, and avoid duplicating bot or deployment noise.
- Close fixed issues with
--reason completed. - Close PRs without merging only when the fix is already covered on
main, the direction is no longer needed, the patch is unsafe, the work is duplicate, or the maintainer explicitly rejects it. - If an accepted contributor fix lands through a maintainer commit, mention the landed commit and co-author credit in the PR comment.
Final Report
Report the pushed branch and commit, the CI run URL and conclusion, any verified Nightly URL when used, each issue/PR decision, and whether any open issues or PRs remain.