スキル一覧に戻る
yonatangross

verify

by yonatangross

The Complete AI Development Toolkit for Claude Code — 159 skills, 34 agents, 20 commands, 144 hooks. Production-ready patterns for FastAPI, React 19, LangGraph, security, and testing.

29🍴 4📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: verify description: Comprehensive feature verification with parallel analysis agents. Use when verifying implementations, testing changes, validating features, or checking correctness. context: fork version: 1.1.0 author: OrchestKit tags: [verification, testing, quality, validation] user-invocable: true

Verify Feature

Comprehensive verification using parallel specialized agents.

Quick Start

/verify authentication flow
/verify user profile feature

Phase 1: Gather Context

# Get recent changes
git diff main --stat
git log main..HEAD --oneline

# Identify affected areas
git diff main --name-only | sort -u

Phase 2: Skills Auto-Loading (CC 2.1.6)

CC 2.1.6 auto-discovers skills - no manual loading needed!

Relevant skills activated automatically:

  • code-review-playbook - Quality patterns
  • security-scanning - Security validation
  • evidence-verification - Completion proof

Phase 3: Parallel Verification (5 Agents)

Launch ALL agents in ONE message with run_in_background: true:

AgentFocus
code-quality-reviewerCode quality, patterns
security-auditorSecurity compliance
test-generatorTest coverage
backend-system-architectAPI correctness
frontend-ui-developerUI/UX validation
# PARALLEL - All 5 agents in ONE message
Task(subagent_type="code-quality-reviewer", prompt="Verify code quality...", run_in_background=True)
Task(subagent_type="security-auditor", prompt="Verify security...", run_in_background=True)
Task(subagent_type="test-generator", prompt="Verify test coverage...", run_in_background=True)
Task(subagent_type="backend-system-architect", prompt="Verify API...", run_in_background=True)
Task(subagent_type="frontend-ui-developer", prompt="Verify UI...", run_in_background=True)

Phase 4: Run Tests

# Backend tests
cd backend && poetry run pytest tests/ -v --cov=app --cov-report=term-missing

# Frontend tests
cd frontend && npm run test -- --coverage

# E2E tests (if available)
cd e2e && npx playwright test

Phase 5: Compile Evidence

# Verification Report

## Feature: [Name]

## Test Results
- Unit Tests: X/Y passed
- Integration Tests: X/Y passed
- E2E Tests: X/Y passed
- Coverage: X%

## Quality Gates
| Gate | Status |
|------|--------|
| Type Safety | / |
| Security Scan | / |
| Linting | / |
| Coverage >= 70% | / |

## Evidence
- Test output attached
- Coverage report attached
- Security scan results attached

Phase 6: E2E Verification (Optional)

If UI changes, verify with agent-browser:

agent-browser open http://localhost:5173
agent-browser wait --load networkidle
agent-browser snapshot -i
agent-browser screenshot /tmp/verification.png
agent-browser close
  • implement: Verify implementations
  • code-review-playbook: Code review patterns for verification

References

スコア

総合スコア

75/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です