CI Prep
SkillDev toolsPrepares the current branch for CI by running the exact same checks locally, fixing issues at each step. Use before pushing a branch or when the user wants to verify the branch will pass CI.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the CI Prep skill
What this skill tells your AI
The instructions your AI receives, as published by melbournedeveloper/dart_node in .claude/skills/ci-prep/SKILL.md and read by ahel’s review.
Prepare the current state for CI. Ensures the branch will pass CI before pushing.
Steps
Step 1 — Analyze the CI workflow
- Read
.github/workflows/ci.yml - The CI runs these jobs in order:
- lint: format check, spell check, dart analyze
- test: tier 1, tier 2, tier 3 tests with coverage
- build:
make build - website: website build + Playwright tests (independent)
Step 2 — Run each CI step locally, in order
- Format check:
make fmt CHECK=1- If fails: run
make fmtto fix, then re-check
- If fails: run
- Spell check:
cspell "**/*.md" "**/*.dart" "**/*.ts" --no-progress- If fails: add words to cspell dictionary or fix typos
- Analyze:
dart analyze --no-fatal-warningson all packages- If fails: fix lint errors in the reported files
- Test Tier 1:
./tools/test.sh --tier 1 - Test Tier 2:
./tools/test.sh --tier 2 - Test Tier 3:
./tools/test.sh --tier 3 - Build:
make build
Step 3 — Report
- List every step that was run and its result (pass/fail/fixed)
- If any step could not be fixed, report what failed and why
- Confirm whether the branch is ready to push
Rules
- Do not push if any step fails
- Fix issues found in each step before moving to the next
- Never skip steps or suppress errors
Signals
- GitHub stars
- 113
- Forks
- 2
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
ci-prep- Source
- github.com/melbournedeveloper/dart_node