Agent Skills
› pony-maggie/code_minions
› summarize-file
summarize-file
GitHub读取项目文件并使用LLM生成一段内容摘要,返回摘要文本及文件大小。
Trigger Scenarios
需要快速了解代码文件或配置文件的整体内容
对大型文件进行概览分析
Install
npx skills add pony-maggie/code_minions --skill summarize-file -g -y
SKILL.md
Frontmatter
{
"llm": {
"temperature": 0.1,
"max_iterations": 5
},
"name": "summarize-file",
"inputs": {
"path": {
"type": "string",
"required": true
}
},
"outputs": {
"summary": {
"type": "string"
},
"byte_count": {
"type": "integer"
}
},
"description": "Read a project file and produce a paragraph summary.",
"allowed-tools": [],
"required-mcps": [],
"entrypoint-script": "scripts\/run.py"
}
summarize-file
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.
Inputs
path(string, required): path relative to the project root.
Outputs (reply with JSON matching this schema)
summary(string): 1-paragraph summary.byte_count(integer): size of the file read.
Version History
- ac75593 Current 2026-07-24 17:41


