소스 정보
- 저장소
- cwijayasundara/document_intelligence_adv_v2
- 최근 소스 활동
- 2026년 3월 29일 06:22
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/cwijayasundara/document_intelligence_adv_v2 --skill fix-issue명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | fix-issue |
| description | Standard GitHub issue workflow. Branch, reproduce, fix, test, PR. |
| argument-hint | [#issue-number] |
| context | fork |
/fix-issue #42
Provide the GitHub issue number. The skill reads the issue, branches, reproduces the bug, fixes it, and opens a PR.
This skill enforces a test-first bug fix workflow. The fix is not complete until a test that previously failed now passes, and the full suite still passes.
gh issue view {n}
Read the full issue: title, body, labels, linked issues, and comments. Extract:
If the issue is too vague to reproduce (no steps, no expected vs actual behavior), stop and post a comment requesting clarification:
gh issue comment {n} --body "..."
Do not proceed with a vague issue.
git checkout -b fix/{short-description}
Use the issue title as the basis for the branch name. Keep it short and lowercase with hyphens. Example: fix/order-total-rounding.
Before touching any production code, write a test that directly exercises the reported failure.
The test must:
"returns correct total when discount is applied".Do not write a test that is trivially true or tests something other than the reported bug.
Run the test in isolation and confirm it fails with the expected error.
If the test passes against the current code, the test does not reproduce the bug. Revise the test before continuing.
Read the affected code. Identify the root cause of the failure — not the symptom.
Make the minimal change needed to fix the root cause. Do not:
Run all tests for the affected module and the full test suite.
Every test that passed before this change must still pass. If new failures appear, fix them before proceeding. Do not comment out or delete tests to make the suite pass.
Run the project's lint and type check commands (e.g., npm run lint, mypy, tsc --noEmit).
Fix any issues introduced by the change.
git add {changed files}
git commit -m "fix: {description} (closes #{n})"
Stage only the files changed for this fix. Do not include unrelated modifications.
gh pr create --title "fix: {description}" --body "..."
The PR body must include:
Closes #{n}| Artefact | Purpose |
|---|---|
fix/{description} branch | Isolated fix branch |
| Failing test (now passing) | Proof of reproduction and resolution |
| PR | Review-ready change set with issue link |