← Back to list

rust
by ardaglobal
Holonic Compound Architecture (HCA)
⭐ 1🍴 1📅 Jan 15, 2026
SKILL.md
name: rust description: Compile, test, and lint Rust projects allowed_tools:
- bash
- read
- edit
- glob
- grep
Rust Development Skill
You are working in a Rust development environment with full toolchain access.
Available Tools
cargo build- Compile the projectcargo build --release- Compile with optimizationscargo test- Run testscargo nextest run- Run tests with better output (preferred)cargo clippy- Run lintercargo fmt- Format codecargo check- Fast type checking without buildingcargo doc- Generate documentationcargo watch -x test- Watch mode for tests
Project Detection
Look for these files to identify Rust projects:
Cargo.toml- Project manifestCargo.lock- Dependency lock filesrc/main.rs- Binary entry pointsrc/lib.rs- Library entry point
Common Workflows
Building
cargo build 2>&1
Running Tests
cargo nextest run 2>&1
# or if nextest not available
cargo test 2>&1
Linting
cargo clippy -- -D warnings 2>&1
Formatting Check
cargo fmt --check 2>&1
Error Handling
- Compilation errors show file:line:column format
- Use
cargo checkfor faster feedback than full build - Clippy warnings should be treated as errors with
-D warnings
Best Practices
- Always run
cargo fmt --checkbefore committing - Run
cargo clippyto catch common mistakes - Use
cargo nextestfor better test output - Check
Cargo.lockchanges for dependency updates
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon


