技能详情(站内镜像,无评论)
作者:zhangzhifeng @164149043
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 44 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:164149043/summarize-cli
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's behavior (invoking a local 'summarize' CLI) matches its description, but there are metadata inconsistencies and an implicit third‑party install recommendation that merit caution before installing or running it.
目的
The name/description (Summarize CLI) align with the SKILL.md examples which simply run a local 'summarize' binary. However, the registry-level requirements reported no required binaries or install, while the SKILL.md metadata includes a required binary ('summarize') and a brew install entry — this mismatch is an inconsistency.
说明范围
Runtime instructions are limited to calling the 'summarize' CLI on URLs or files with options for length/format/output. The SKILL.md does not instruct reading unrelated files, accessing credentials, or contacting hidden endpoints.
安装机制
No formal install spec was provided in the registry (skill is instruction-only), but SKILL.md metadata suggests installing via a Homebrew tap (steipete/tap/summarize). A third‑party brew tap is a moderate-risk install source compared with official repos; the skill does not include direct download URLs or archive extraction.
证书
The skill does not request environment variables, credentials, or config paths. SKILL.md contains no requests for secrets or unrelated environment access.
持久
The skill is not marked always:true and does not request persistent or elevated agent-wide privileges. It is user-invocable and can be invoked autonomously (platform default).
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Summarize Cli」。简介:Automation skill for Summarize Cli.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/164149043/summarize-cli/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: summarize-cli
description: Summarize URLs or files with the summarize CLI (web, PDFs, images, audio, YouTube).
homepage: https://summarize.sh
metadata: {"clawdbot":{"emoji":"🧾","requires":{"bins":["summarize"]},"install":[{"id":"brew","kind":"brew","formula":"steipete/tap/summarize","bins":["summarize"],"label":"Install summarize (brew)"}]}}
# Summarize
Summarize URLs or files with the summarize CLI.
## Usage
Summarize a URL:
```bash
summarize https://example.com/article
```
Summarize a file:
```bash
summarize path/to/file.pdf
```
## Supported formats
- URLs (web pages)
- PDFs
- Images (with text content)
- Audio files
- YouTube videos
## Options
- `--length <short|medium|long>` - Control summary length
- `--format <text|markdown|json>` - Output format
- `--output <file>` - Save to file
## Examples
Quick summary:
```bash
summarize https://example.com --length short
```
Markdown output:
```bash
summarize document.pdf --format markdown --output summary.md
```
JSON output:
```bash
summarize https://example.com --format json | jq
```