원클릭으로
summarize-file
Read a project file and produce a paragraph summary.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read a project file and produce a paragraph summary.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Structured review of a diff against a ticket's acceptance criteria.
Write a final report.md summarizing run results.
TDD implementation with AI code-review loop for a single ticket.
Decompose structured PRD into atomic implementation tickets.
Deterministic product acceptance review against parsed PRD constraints.
Decompose a Python web PRD into implementation tickets that preserve one FastAPI app.
| name | summarize-file |
| description | Read a project file and produce a paragraph summary. |
| allowed-tools | [] |
| required-mcps | [] |
| entrypoint-script | scripts/run.py |
| inputs | {"path":{"type":"string","required":true}} |
| outputs | {"summary":{"type":"string"},"byte_count":{"type":"integer"}} |
| llm | {"max_iterations":5,"temperature":0.1} |
Read a file from the project root and use the configured LLM to produce a one-paragraph summary of its contents. File reading is deterministic; the LLM is only responsible for the summary text.
path (string, required): path relative to the project root.summary (string): 1-paragraph summary.byte_count (integer): size of the file read.