소스 정보
- 저장소
- laicluse/agent-fieldkit
- 최근 소스 활동
- 2026년 6월 19일 12:51
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/laicluse/agent-fieldkit --skill triage명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use when corrective work, migrations, living docs, or temporary diagnostic tests leave superseded residue, or before handoff.
Use when corrective work, migrations, living docs, or temporary diagnostic tests leave superseded residue, or before handoff.
Reference for git-discipline commit bodies, trailers, hook denials, examples, and escape hatches.
SKILL.md 표시 중
| name | triage |
| description | Internal drydry classifier that buckets duplication findings by convergence cost. |
| allowed-tools | ["Read","Grep","Glob","Bash(rg *)","Bash(grep *)","Bash(find *)"] |
The three-bucket triage pass behind the drydry audit pipeline. Takes a findings list (output of drydry:sweep) and classifies each finding into cheap-and-safe / partial / needs-design with a one-line convergence cost. Not user-invocable.
Caller supplies through args:
findings: the markdown structure returned by drydry:sweep, either inline or as a path to a markdown file.scope: the directory or package the findings were collected over. Used to estimate convergence cost (count of call-sites, presence of public exports).Return the findings list, with one triage: and one cost: line added per finding:
## Pattern: <pattern_id>
- Finding 1
- file_a: `<path>:<line>`
- file_b: `<path>:<line>`
- drift_hypothesis: <as-is from sweep>
- verifier_command: <as-is from sweep>
- verifier_expected: <as-is from sweep>
- triage: cheap-and-safe | partial | needs-design (the by-design case is a sub-class of needs-design; the bucket label stays needs-design)
- cost: <one-line convergence cost: file count touched, public-API surface affected, migration complexity>
When a finding is classified as needs-design, also include a design_question: line capturing the open decision (which side wins, what to name the unified abstraction, how callers migrate). When partial, include a next_step: line naming the smallest action that would unblock convergence.
There is an obvious convergence direction. The change is local. No public contract moves. Both call-sites are caller-owned; no external consumers.
Signals:
Convergence path: apply the unified abstraction in the same audit. Both paths migrate to the new shape; the diff is local; reviewers see the convergence at a glance.
Convergence requires design judgement, but the judgement is small and the operator can resolve it inside the audit if they make one decision. Typical pattern: the unification is clear except for one open question.
Signals:
Convergence path: surface the design question in the findings artefact under design_question:. When the operator answers, the finding promotes to cheap-and-safe.
The finding looks like a duplicate from outside, but a real constraint or genuine domain difference makes convergence either non-trivial or wrong. Document why so future audits do not re-flag it (Chapter 7's contrarian second-pass gates this verdict). When the blocking constraint is a framework or external API ("by-design" in informal speech), the verdict and the artefact entry are still needs-design; the constraint becomes the body of the design_question: line.
Signals:
perform() signature requires concrete types; type erasure costs more than the duplication)Convergence path: document the verdict and the constraint in the findings artefact. The orchestrator's audit-mode step 5 runs an independent contrarian pass to verify the verdict is not hollow (Chapter 7).
args.findings.<N> files touched, <M> public symbols moved, <complexity tag>. Complexity tags: mechanical (rename only), local-refactor (extract method or component), interface-migration (public contract changes), framework-bound (constrained by an external API shape).partial, name the next-step in one sentence. For needs-design, name the design question.cheap-and-safe classification with a cost of "30 files touched, interface migration" is contradictory; promote it to partial or needs-design.later, no backlog, no polish next sprint. Either fix it (cheap-and-safe), park the design question (partial), or document the by-design constraint (needs-design).