소스 정보
- 저장소
- cwijayasundara/claude_harness_eng_v1
- 최근 소스 활동
- 2026년 3월 27일 13:12
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 3
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/cwijayasundara/claude_harness_eng_v1 --skill review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Autonomous build loop with Karpathy ratcheting, GAN evaluator, and session chaining. Iterates story groups until all features pass or stopping criteria met.
Socratic interview to create a Business Requirements Document. First step in the SDLC pipeline.
Generate system architecture, machine-readable schemas, and UI mockups. Spawns planner + ui-designer concurrently.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | review |
| description | Run evaluator and security reviewer concurrently for comprehensive quality gate. |
| argument-hint | [story-id] |
| context | fork |
Run a comprehensive quality gate by spawning the evaluator and security reviewer as concurrent agents. Both must pass before the group is considered ready for merge.
/review
/review E3-S1
With no argument: reviews the current group in context. With a story ID: reviews the specific story and its group.
Use the Agent tool to spawn both agents at the same time in a single call. Do not run them sequentially — concurrent execution is the point of this skill.
Agent 1 — evaluator
specs/reviews/evaluator-report.md.features.json with pass/fail verdicts.Agent 2 — security-reviewer
specs/reviews/security-review.md.Both agents run against the same set of changed files and the same group context.
| Level | Meaning | Action Required |
|---|---|---|
| BLOCK | Must be fixed before merge | Self-healing loop |
| WARN | Should be fixed; does not block | Log and track |
| INFO | Optional improvement | No action required |
Do not treat WARN as BLOCK. Do not treat INFO as WARN. The severity assigned by the reviewer is final unless the reviewer is re-run after a fix.
If either agent reports one or more BLOCK findings:
generator agent with:
/review cycle (both agents concurrently).Do not merge or mark a group complete while any BLOCK finding remains open.
| Mode | Evaluator | Security Reviewer |
|---|---|---|
| Full | Run | Run |
| Lean | Run | Run |
| Solo | Skip | Run |
In Solo mode, only the security-reviewer runs. The evaluator is skipped because there is no running application stack. Print a note: "Solo mode: evaluator skipped, security review only."
After both agents complete (or in Solo mode, after the security reviewer completes):
specs/reviews/evaluator-report.md — overall PASS/FAIL verdict with per-check detail.specs/reviews/security-review.md — list of BLOCK/WARN/INFO findings with file references.Both files must exist before the review cycle is considered complete. If either agent fails to produce its output file, treat that as a BLOCK finding.