원클릭으로
text-summarizer
Summarize text from a file or inline input. Use for concise summaries and key-point extraction.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Summarize text from a file or inline input. Use for concise summaries and key-point extraction.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Web crawling and extraction scripts for HTML pages, JS-rendered pages, links, tables, robots policy, and site crawling.
Event API helper for create/get/list/update operations against the AI Agents events API. Requires DATALAYER_API_KEY.
GitHub API scripts for repository discovery and inspection. Use this skill when listing your repos, inspecting one repo, or listing issues/PRs. Requires GITHUB_TOKEN.
PDF form-processing toolkit for checking fillable forms, extracting form field metadata, validating bounding boxes, converting pages to images, and filling forms.
| name | text-summarizer |
| description | Summarize text from a file or inline input. Use for concise summaries and key-point extraction. |
| license | BSD-3-Clause |
| version | 1.0.0 |
| tags | ["nlp","summarization","text-processing"] |
| author | Datalayer |
| compatibility | Requires Python 3.10+ |
| allowed-tools | Read |
| metadata | {"category":"nlp"} |
run_skill_script with:
skill_name: text-summarizerscript_name: summarize--file or --text.kwargs.script_name: summarizefile: path to text file, ortext: inline text to summarizekwargs:
max_sentences: integermethod: extractive | key_pointsrun_skill_script Examples{
"skill_name": "text-summarizer",
"script_name": "summarize",
"kwargs": {
"file": "document.txt",
"max_sentences": 5,
"method": "extractive"
}
}
{
"skill_name": "text-summarizer",
"script_name": "summarize",
"kwargs": {
"text": "Long text here",
"method": "key_points",
"max_sentences": 3
}
}
python agent_skills/skills/text_summarizer/scripts/summarize.py --file document.txt --max-sentences 5
python agent_skills/skills/text_summarizer/scripts/summarize.py --text "Long text here" --method key_points --max-sentences 3