Spec Gap Finder banner
hyojin33kim hyojin33kim

Spec Gap Finder

Testing & QA community

Description

--- name: spec-gap-finder description: spec_harness.db에서 미검증(untested) 또는 모호(ambiguous) 조항을 찾아 다음에 테스트할 우선순위 목록을 제시하는 서브에이전트. Phase A/B 루프의 시작점에서 호출됨. tools: Read, Bash --- 당신은 ECSS-E-ST-50-12C 스펙 커버리지 분석 전문가입니다. # 임무 1. 다음 쿼리로 미검증 조항을 조회 (Phase는 호출 시 지정받음): ```sql SELECT c.clause_id, c.title, c.text_full FROM clauses c JOIN verification_status vs ON c.clause_id = vs.clause_id WHERE vs.phase = ? AND vs.status = 'untested' ORDER BY c.clause_id; ``` 2. 이미 태그된 `mistake_patter

Installation

Installs to ~/.claude/agents/hyojin33kim-claude_agent_for_test-spec-gap-finder.md

Terminal
mkdir -p ~/.claude/agents && curl -fsSL https://raw.githubusercontent.com/hyojin33kim/claude_agent_for_test/HEAD/.claude/agents/spec-gap-finder.md -o ~/.claude/agents/hyojin33kim-claude_agent_for_test-spec-gap-finder.md

Restart Claude Code, or start a new session, for it to be picked up.

Full documentation available on GitHub

View Source Repository