소스 정보
- 저장소
- fluxforgeai/wrought-plugin
- 최근 소스 활동
- 2026년 8월 23일 13:33
- 감지된 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/fluxforgeai/wrought-plugin --skill wrought-implement명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Produce an adversarially-verified, source-cited, full-stack, interactive HTML decision brief for informed go/no-go sign-off at a human decision boundary. MVP mode: pivot-review. Extends /ux-design; consumes /research and /design; feeds /design on GO.
Deep multi-agent code review with algorithmic complexity analysis, data structure review, paradigm enforcement, and efficiency analysis. Complements /simplify with deeper dimensions.
End session and create all handoff documentation
| name | wrought-implement |
| description | Start an autonomous implementation loop with test verification |
| disable-model-invocation | false |
| wrought | {"version":"1.0","tools":{"capabilities":["read_file","search_content","find_files","write_file","edit_file","run_command"]},"platforms":{"claude-code":{"allowed-tools":"Read, Grep, Glob, Write, Edit, Bash","disable-model-invocation":false}},"agent":{"role":"Implementation Engineer","expertise":["code implementation","test-driven development"],"non_goals":["architectural design","investigation"]},"execution":{"default_mode":"react","stop_conditions":["Verifier passes (all tests green)","Max iterations reached","User instructed to stop"]},"output":{"format":"markdown","template":"docs/capsules/{finding_id}/iter_{N}/run.log","required_sections":["Implementation summary","Verifier result"]},"pipeline":{"track":"proactive","standalone":false,"prerequisites":["docs/plans/*.md"],"produces":["docs/capsules/**/run.log",".claude/wrought-loop-state.json"],"suggested_next":["forge-review"]}} |
You are starting a Ralph Wiggum inner loop for implementation. A Stop hook will automatically verify your work after each attempt to stop.
Read .claude/wrought-loop-state.json. If it exists and active is true:
/cancel-wrought-loop first, or continue the existing loop."The user should provide a plan path. If not provided:
docs/plans/*.mdResolve the verifier command in this order:
.claude/wrought-loop-state.json exists and its verifier_command is a non-empty string,
propose it for confirmation: "Reuse verifier command {command}?"uv run pytest tests/ -q)"Ask regardless of verifier_type. Never synthesise a verifier command from verifier_type —
no mapping from a type token to a command exists anywhere in Wrought, and the loop must not invent
one.
Then read the .wrought marker for:
verifier_type — advisory metadata only; it may seed the example above and gates nothingverifier_test_path — default test pathverifier_max_loops — iteration budgetverifier_timeout — per-run timeout in secondsWrite .claude/wrought-loop-state.json:
{
"active": true,
"preset": "wrought-implement",
"finding_id": "{from plan or Findings Tracker}",
"tracker_path": "{path to active FINDINGS_TRACKER.md}",
"verifier_command": "{verifier command}",
"max_iterations": {from marker},
"current_iteration": 0,
"started_at": "{ISO timestamp}",
"history": []
}
Read the implementation plan and check for frontend files. If the plan's "Files to modify" / "Files Likely Affected" section (or any file path mentioned in the plan body) contains any of these extensions: .tsx, .jsx, .vue, .svelte, .css, .scss, .html — proceed with this step. Otherwise, skip silently to Step 5 (no warning, no message).
docs/design-briefs/*.md — use Glob; if multiple match, pick the most recent by filename date prefix (lexicographic sort = chronological for YYYY-MM-DD_HHMM naming convention)DESIGN_SYSTEM.md at the repo root.wrought/design-system.mdNo Design Brief found for frontend work. Consider running /ux-design first for better design quality. Proceeding without design context.If the loop hits max_iterations still failing the same test signature:
/model fable pass on the capsule tail to generate a fresh candidate approach, then return with /model opus to evaluate and apply it. Fable generates a candidate, never grades; watch for empty/refused output (a refusal is a non-answer, not a clean pass). This is a manual, opt-in, owner/ZDR-free escalation — no committed model: pin anywhere (see CST-004)./forge-review Step 4c); do NOT invoke it from inside the loop — never in Stop-hook continuations (the loop's oracle is tests).When the loop completes (verifier passes):
.claude/wrought-loop-state.json to summarize iterationsdocs/capsules/{finding_id}/"/forge-review --scope=diff to verify code quality."