ソース情報
- リポジトリ
- wrtnlabs/autobe
- ソースの最終更新活動
- 2026年2月24日 04:09
- 検出された SKILL.md の言語
- 英語
- スター
- 1,360
- フォーク
- 156
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/wrtnlabs/autobe --skill validate-testコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | validate-test |
| description | Validate test coverage against providers (read-only) |
| allowed-tools | Read, Grep, Glob |
Validate that test infrastructure properly covers providers and interfaces. This skill only checks for discrepancies - it does NOT modify any files.
Compare interface/provider implementations with test coverage and report:
┌─────────────────────────────────────┐
│ Step 1: Read Interfaces │
│ /src/api/structures/ (ICreate) │
└───────────────┬─────────────────────┘
│
▼
┌─────────────────────────────────────┐
│ Step 2: Read Test Files │
│ /test/prepare/ │
│ /test/generate/ │
│ /test/features/api/ │
└───────────────┬─────────────────────┘
│
▼
┌─────────────────────────────────────┐
│ Step 3: Compare & Report │
│ - Missing prepare functions │
│ - Missing generate functions │
│ - Missing test scenarios │
│ - Empty implementations │
└─────────────────────────────────────┘
grep -r "export type ICreate\|\.ICreate" src/api/structures/ --include="*.ts"
List all interfaces that need test data generators.
# Prepare functions
find test/prepare -name "prepare_random_*.ts" -type f
# Generate functions
find test/generate -name "generate_random_*.ts" -type f
# Feature tests
find test/features/api -name "*.ts" -type f
For each ICreate interface:
{}For each prepare_random function:
For each entity:
# Validation Report: Test Infrastructure
## Summary
- ICreate interfaces: X
- prepare_random functions: Y
- generate_random functions: Z
- Test files: W
## ✅ Valid Items
- [Prepare] `prepare_random_entity` - All fields generated
- [Generate] `generate_random_entity` - Properly calls API
- [Test] `test_entity_create` - Complete assertions
## ❌ Issues Found
- [Missing Prepare] `another_entity` - No prepare function for ICreate
- [Missing Generate] `another_entity` - No generate function
- [Empty Prepare] `prepare_random_thing.ts` - Returns `{}`
- [Orphan Generate] `generate_random_old.ts` - No matching prepare function
## ⚠️ Warnings
- [Missing Test] `entity` - No delete test scenario
- [Edge Case] `entity` - No validation error test
- [Edge Case] `entity` - No unauthorized access test
## Recommendation
Run `/fix-test` to fix the issues above.
This skill is READ-ONLY.
To fix issues, use /fix-test skill.