← スキル一覧に戻る

quality
by mgreenly
An AI Coding Agent
⭐ 1🍴 0📅 2026年1月24日
SKILL.md
name: quality description: Quality skill for the ikigai project
Quality
Description
Testing and quality requirements for development phase. Focus on high coverage.
Pre-Commit Requirements
Before creating commits:
make fmt- Format codemake check- All tests passmake lint- Complexity/file size checks pass
Test Execution
By Default: Tests run in parallel, with 24 parallel tests on this machine.
MAKE_JOBS=24- up to 24 concurrent tests
When you need clear debug output (serialize execution):
PARALLEL=0 MAKE_JOBS=1 make check
Best practice: Test individual files during development, run full suite before commits.
Example:
make build/tests/unit/array/basic_test && ./build/tests/unit/array/basic_test
Build Modes
make BUILD={debug|release|sanitize|tsan|coverage}
debug- Development builds with symbolsrelease- Optimized production buildssanitize- Address and undefined behavior sanitizerstsan- Thread sanitizercoverage- Code coverage analysis
Development Phase Focus
- Aim for high test coverage of new code
- Test the happy path and obvious error cases
- Coverage gaps will be closed in a dedicated coverage phase
- Don't let coverage metrics slow down feature development
CRITICAL: Never run multiple make commands simultaneously. Different targets use incompatible compiler flags and will corrupt the build.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です