Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

capture-clicapture CLI 搜索

Agent Skill

capture-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

539

周安装

22

GitHub Stars

公开资料未说明

下载量

174
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:capture-cli(capture CLI 搜索)
来源仓库:https://github.com/techulus/capture-skills
仓库路径:skills/capture-cli
安装命令:
npx skills add techulus/capture-skills --skill "capture-cli"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add techulus/capture-skills --skill "capture-cli"

简介

capture-cli 用于发现并安装各类 AI 代理技能,扩展宿主平台功能集。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等多平台技能生态探索。
  • 通过 npx skills add techulus/capture-skills --skill "capture-cli" 命令安装。
  • 需留意其可能触发网络下载和文件系统写入,确保环境安全策略允许。
  • 建议核实目标技能仓库的维护状态和兼容性后再批量安装。

SKILL.md

name
capture-cli
description
Capture screenshots, generate PDFs, and extract content from any URL using the Capture CLI. Use when the user wants to screenshot a website, create a PDF of a page, extract text content, get metadata from a URL, or record an animated GIF.

Capture CLI

Capture screenshots, generate PDFs, extract content, and fetch metadata from any URL using the Capture CLI.

Prerequisites

The Capture CLI must be installed and configured with environment variables:

  • CAPTURE_KEY - Your Capture API key
  • CAPTURE_SECRET - Your Capture API secret

Install via Homebrew:

brew tap techulus/tap && brew install capture

Or via Go:

go install github.com/techulus/capture-go/cmd/capture@latest

Screenshot

capture screenshot <url> -o <file.png>

Options (pass with -X key=value):

OptionDefaultDescription
vw1440Viewport width
vh900Viewport height
scaleFactor1Screen scale factor (dpr)
fullfalseCapture full page
darkModefalseDark mode screenshot
delay0Delay in seconds before capturing
waitFor-Wait for CSS selector to appear
waitForId-Wait for element ID to appear
selector-Screenshot element matching this selector
selectorId-Screenshot element matching this ID
top0Top offset for clipping
left0Left offset for clipping
widthviewportClipping width
heightviewportClipping height
blockCookieBannersfalseDismiss cookie consent banners
blockAdsfalseBlock ads
bypassBotDetectionfalseBypass bot detection / solve captchas
transparentfalseTransparent background
emulateDevice-Emulate device (iphone_14, iphone_15_pro, ipad, pixel_8, etc.)
typepngImage type: png, jpeg, or webp
resizeWidth-Resize image width
resizeHeight-Resize image height
userAgent-Custom user agent (base64url encoded)
httpAuth-HTTP Basic Auth (base64url of username:password)
freshfalseTake fresh screenshot instead of cached

Example:

capture screenshot https://example.com -X vw=1920 -X vh=1080 -X full=true -X darkMode=true -o screenshot.png

PDF

capture pdf <url> -o <file.pdf>

Options (pass with -X key=value):

OptionDefaultDescription
formatA4Paper format: Letter, Legal, Tabloid, Ledger, A0-A6
width-Custom paper width (with units, e.g., 8.5in)
height-Custom paper height (with units)
landscapefalseLandscape orientation
scale1Scale of webpage rendering
printBackgroundfalsePrint background graphics
marginTop-Top margin (with units)
marginRight-Right margin (with units)
marginBottom-Bottom margin (with units)
marginLeft-Left margin (with units)
delay0Delay in seconds before capturing
userAgent-Custom user agent (base64url encoded)
httpAuth-HTTP Basic Auth (base64url of username:password)

Example:

capture pdf https://example.com -X format=A4 -X landscape=true -X printBackground=true -o document.pdf

Content

capture content <url> --format <markdown|html>

Options (pass with -X key=value):

OptionDefaultDescription
delay0Delay in seconds before capturing
waitFor-Wait for CSS selector to appear
waitForId-Wait for element ID to appear
userAgent-Custom user agent (base64url encoded)
httpAuth-HTTP Basic Auth (base64url of username:password)

CLI options:

  • --format markdown - Output as markdown (preferred for readability)
  • --format html - Output as HTML
  • -o <file> - Save to file

Example:

capture content https://example.com --format markdown

Metadata

capture metadata <url> --pretty

CLI options:

  • --pretty - Pretty-print JSON output
  • -o <file> - Save to file

Returns JSON with: title, description, author, logo, language, image, publisher, url, and Open Graph data.

Example:

capture metadata https://example.com --pretty

Animated

capture animated <url> -o <file.gif>

Options (pass with -X key=value):

OptionDefaultDescription
duration5Recording duration in seconds (1-30)
vw1440Viewport width
vh900Viewport height
scaleFactor1Device scale factor
delay0Seconds to wait before starting (0-25)
waitFor-Wait for CSS selector to appear
waitForId-Wait for element ID to appear
darkModefalseEnable dark mode
hideScrollbarstrueHide scrollbars
blockCookieBannersfalseDismiss cookie consent banners
blockAdsfalseBlock ads
emulateDevice-Emulate device (iphone_15_pro, ipad, pixel_8, etc.)
userAgent-Custom user agent (base64url encoded)
httpAuth-HTTP Basic Auth (base64url of username:password)

Example:

capture animated https://example.com -X duration=10 -X darkMode=true -o recording.gif

Global CLI Options

OptionDescription
-oOutput file path (required for screenshot, pdf, animated)
-XPass API options (e.g., -X vw=1920)
--edgeUse edge mode for faster response
--dry-runPreview the API URL without executing

Tips

  • Use --edge for faster responses when latency matters
  • Use --dry-run to preview the API URL without executing
  • Prefer --format markdown for content extraction (more readable)
  • Always specify output file with -o for screenshot, pdf, and animated commands
  • Common devices for emulation: iphone_14, iphone_15_pro, ipad, pixel_8
  • For full-page screenshots, use -X full=true
  • For dark mode, use -X darkMode=true

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

29.29%
按下载量换算51

Claude Code

21.58%
按下载量换算38

windsurf

18.94%
按下载量换算33

trae

14.24%
按下载量换算25

Codex

8.7%
按下载量换算15

Antigravity

3.91%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills