基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/datalayer/agent-skills --skill text-summarizer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| 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
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.