← スキル一覧に戻る

verification
by TheGlitchKing
a plugin that tries to maximize the bash loop presented for claude, present by the ralphy plugin / Geoffrey Huntley
⭐ 0🍴 0📅 2026年1月14日
SKILL.md
name: verification description: Activates after code changes to suggest or run verification steps. Provides test-after-action patterns for different file types and frameworks.
Verification Mode
Code has been modified. Verify the changes work.
Verification by File Type
JavaScript/TypeScript
# Type check
npx tsc --noEmit
# Run tests
npm test
# Lint
npm run lint
# Quick syntax check
node --check file.js
Python
# Syntax check
python -m py_compile file.py
# Type check
mypy file.py
# Run tests
pytest
# Lint
ruff check file.py
Go
# Build check
go build ./...
# Run tests
go test ./...
# Vet
go vet ./...
Rust
# Check without building
cargo check
# Run tests
cargo test
# Clippy
cargo clippy
Shell Scripts
# Syntax check
bash -n script.sh
# ShellCheck
shellcheck script.sh
Docker
# Validate Dockerfile
docker build --check .
# Or dry run
docker build -t test .
Verification Strategy
After Single File Edit
- Run file-specific syntax check
- Run related unit tests
- If both pass, continue
After Multi-File Changes
- Run full type check / build
- Run affected test suites
- If CI exists, trust CI for full verification
After Config Changes
- Validate config syntax (JSON, YAML, etc.)
- Test with dry-run if available
- Check dependent services start
Quick Verification Commands
# JSON syntax
jq . file.json > /dev/null
# YAML syntax
python -c "import yaml; yaml.safe_load(open('file.yaml'))"
# Package.json
npm ls 2>&1 | head -5
# Git status (verify staged correctly)
git diff --cached --stat
When to Skip Verification
- Markdown/documentation changes only
- Comment-only changes
- Whitespace/formatting changes
- When user explicitly says "don't verify"
Verification Output
Keep verification output minimal:
✓ Type check passed
✓ 12 tests passed
Or on failure:
✗ Type check failed: src/index.ts:45 - Type error
[Fix immediately without explanation]
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です