check
SolidRun full quality checks on SwarmLLM (fmt, clippy, test, build)
AI & Automation 27 stars
7 forks Updated today Apache-2.0
Install
Quality Score: 85/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Quality Check Pipeline
Run the full SwarmLLM quality check pipeline in order. Report results for each step.
Working directory: `.`
## Steps
1. **Format check**: `cargo fmt --check`
- If formatting issues found, run `cargo fmt` to fix them and report what changed
2. **Lint**: `cargo clippy --all-targets -- -D warnings`
- Report any warnings/errors with file:line references
- Do NOT fix anything — just report
3. **Test**: `cargo test`
- Report pass/fail counts
- If failures, report test name and assertion message
4. **Build**: `cargo build --no-default-features --features dev,claude-subscription`
- Confirm clean build or report errors
## Output
Provide a concise summary table:
| Step | Status | Details |
|------|--------|---------|
| fmt | PASS/FAIL | ... |
| clippy | PASS/FAIL | N warnings |
| test | PASS/FAIL | N passed, N failed |
| build | PASS/FAIL | ... |
If all pass, say "All clear." If any fail, list only the failures with actionable details.
Details
- Author
- enapt
- Repository
- enapt/SwarmLLM
- Created
- 6 months ago
- Last Updated
- today
- Language
- Rust
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
review
Review recent changes against the SwarmLLM spec for correctness
27 Updated today
enapt Code & Development Featured
check
Auto-fix lint and formatting, then report types and tests. Run before every commit.
189 Updated today
ffroliva AI & Automation Listed
running-quality-checks
Mechanical verification procedure for the verifier agent — detect available checks from project configuration, run them fastest-first in speed order, capture evidence, and derive a PASS/FAIL verdict. Loaded when pre-completion quality checks need to run.
11 Updated today
bostonaholic