소스 정보
- 저장소
- 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 improve명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | improve |
| description | Enhance existing features through story-driven development with full verification. |
| argument-hint | [description or story-id] |
| context | fork |
/improve "add confidence scores to extraction"
/improve E2-S3
Provide either a plain description of the improvement or an existing story ID from specs/stories/. Improvements change observable behavior and require a story with acceptance criteria.
Improvements intentionally change behavior. This distinguishes them from /refactor, which must not change behavior. Every improvement is traceable to a story, has acceptance criteria, and requires tests to be updated or added.
Every improvement must have a story file in specs/stories/ before implementation begins.
If a story ID was provided (e.g., E2-S3): read specs/stories/E2-S3.md and confirm it has acceptance criteria.
If a description was provided: check whether a matching story already exists. If not, create specs/stories/{next-id}.md with:
Do not proceed to implementation until acceptance criteria are written and confirmed.
Read the current codebase to understand what is affected:
Document this assessment before writing any code.
Read specs/design/ for any architecture decisions relevant to the change. Read .claude/skills/architecture/SKILL.md for layering rules.
Confirm the planned implementation stays within the correct layer. If the improvement requires a new type, add it to the types/ layer. If it requires a new DB query, add it to repository/. Do not shortcut layers.
Modify the existing implementation files. Do not create parallel implementations alongside existing ones.
Rules:
_v2 function alongside the original.For each acceptance criterion in the story:
Changing a test to pass rather than fixing the underlying code is not acceptable. The test is the specification. If the test fails because the implementation is wrong, fix the implementation.
Run the full test suite. All tests must pass.
Spawn the code-reviewer agent on the full diff.
Findings:
Maximum 3 retry cycles for BLOCK findings. If BLOCK findings remain after 3 cycles, stop and report.
Add an implementation status section to the story file:
## Implementation Status
Status: COMPLETE
Implemented: {date}
Files changed: {list of files}
Tests added/updated: {list of test files}
AC coverage:
- AC1: covered by test {test name}
- AC2: covered by test {test name}
| Dimension | /improve | /refactor |
|---|---|---|
| Behavior change | Yes — intentional | No — must be zero |
| Requires story | Yes | No |
| Tests | Updated to match new behavior | Must pass unchanged |
| API contracts | May change | Must not change |
If you are not changing observable behavior, use /refactor instead.
| Artefact | Purpose |
|---|---|
specs/stories/{id}.md | Story with AC and implementation status |
| Modified source files | Implementation of the improvement |
| Updated/added tests | Verification of each acceptance criterion |
get_extraction_v2() function alongside get_extraction() creates dead code and confusion. Modify the existing function and update its callers.