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

artidropartidrop 搜索

Agent Skill

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

总安装

6,169

周安装

265

GitHub Stars

1

下载量

2,162
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install artidrop

简介

将 AI 生成的内容发布到可共享的在线 URL。

  • 适用于 HTML 页面、报告和可视化结果的分享。
  • 支持多文件站点和仪表板的远程访问。artidrop 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需确认内容来源和共享范围的合规性。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 建议结合原始仓库了解部署方式和访问权限设置。

SKILL.md

name
artidrop
description
Publish AI-generated content (HTML pages, Markdown reports, multi-file sites, dashboards, visualizations) to a shareable URL using Artidrop. Use when: user asks to publish, share, or host generated content as a web page. NOT for: sending messages, uploading files to cloud storage, or sharing raw text in chat.
homepage
https://artidrop.ai
repository
https://www.npmjs.com/package/artidrop
metadata
{ "openclaw": { "emoji": "🚀", "requires": { "bins": ["node"], "env": [{ "name": "ARTIDROP_API_KEY", "optional": true, "description": "API key for authenticated features (higher rate limits, update/delete/list). Not required for anonymous publishing." }] }, "install": [{ "kind": "node", "package": "artidrop", "bins": ["artidrop"], "label": "Install Artidrop CLI (npm)" }] } }

Artidrop — Publish AI Artifacts to Shareable URLs

Publish HTML pages, Markdown reports, multi-file sites, dashboards, and visualizations to instant shareable URLs with one command.

When to Use

  • "Publish this as a web page"
  • "Share this report as a link"
  • "Host this HTML so I can send it to someone"
  • "Make this dashboard accessible via URL"
  • "Create a shareable page from this content"
  • "Publish this site/project as a shareable URL"
  • User asks you to generate a report, page, site, or visualization AND share/publish it

When NOT to Use

  • User just wants to see the content in chat (display it directly instead)
  • User wants to save a file locally (use file system tools instead)
  • User wants to upload to a specific platform (Google Drive, S3, etc.)
  • User wants to send content as a message in a chat channel

Setup

The Artidrop CLI is installed automatically via the install spec in this skill's metadata. No manual installation needed.

No authentication required. Artidrop supports anonymous publishing out of the box — just publish and get a URL.

Anonymous vs Authenticated

Anonymous (default)Authenticated (optional)
Publish5/hour60/hour
Update/Delete/ListNot availableAvailable
Private visibilityNot availableAvailable
Claim artifacts laterNoYes

Anonymous mode is sufficient for most one-off publishing tasks. Only recommend authentication if the user needs to manage artifacts or hits the rate limit.

How to Authenticate (only if needed)

If the user wants authenticated features, they can either:

  1. Set an API key — sign in at https://artidrop.ai, go to Settings > API Keys, create a key, and set ARTIDROP_API_KEY in the OpenClaw environment config
  2. Interactive login — run artidrop login (requires browser access)

Workflow

Publishing Content

There are three ways to publish:

Option A — Publish from a file:

artidrop publish ./report.html --title "Quarterly Report"
artidrop publish ./notes.md --title "Meeting Notes"

Option B — Publish a multi-file site (directory or ZIP):

artidrop publish ./my-site/ --title "Portfolio"
artidrop publish ./build.zip --title "App Preview"

The directory must contain an index.html at its root. CSS, JS, images, fonts, and sub-pages are all supported. Hidden files and node_modules are automatically excluded.

Option C — Publish from stdin (for content you generate on the fly):

echo '<h1>Hello</h1><p>Generated report content here</p>' | artidrop publish - --format html --title "My Report"
echo '# Summary\
\
Key findings from the analysis...' | artidrop publish - --format markdown --title "Analysis Summary"

When publishing, always:

  1. Use --title with a descriptive title
  2. For stdin, always specify --format html or --format markdown
  3. Present the returned URL to the user
  4. Mention that the link is shareable

Publish Options

FlagPurpose
--title <title>Set the artifact title
`--format <html\markdown>`Content format (required for stdin, auto-detected for files, ignored for directories/ZIPs)
`--visibility <public\unlisted\private>`Default: unlisted. Use private for owner-only access, public for search engine indexing
--update <id>Update an existing artifact instead of creating a new one (requires auth)
--jsonReturn full JSON metadata
--openOpen the published URL in the browser
--copyCopy the published URL to clipboard

Updating Published Content (requires authentication)

To update an existing artifact (creates a new version, preserving history):

artidrop publish ./updated-report.html --update <artifact-id>

This requires authentication. If the user is not logged in, tell them to authenticate first (see Setup).

Viewing Artifacts

These commands work without authentication:

# Get details about an artifact
artidrop get <artifact-id>

# Get details as JSON (useful for structured parsing)
artidrop get <artifact-id> --json

# View version history
artidrop versions <artifact-id>

Managing Artifacts (requires authentication)

These commands require the user to be logged in:

# List your published artifacts
artidrop list

# List as JSON
artidrop list --json

# Delete an artifact
artidrop delete <artifact-id> --yes

Error Handling

Exit CodeMeaningAction
0SuccessPresent the URL to the user
2Invalid inputCheck file/directory exists, format is html or markdown (or directory has index.html), content is not empty
3Auth errorOnly for --update/delete/list. Tell user to authenticate (see Setup)
4Rate limitedWait and retry. Anonymous: 5/hour, authenticated: 60/hour. Suggest logging in for higher limits

Security & Privacy

  • The Artidrop CLI sends user-specified content to api.artidrop.ai over HTTPS when the user explicitly runs a publish command. No data is sent automatically or in the background.
  • The only environment variable read is ARTIDROP_API_KEY (for optional authentication) and ARTIDROP_API_URL (for custom API endpoint configuration).
  • Content is hosted on Artidrop's servers (artidrop.ai)
  • unlisted (default): accessible to anyone with the URL, but not indexed by search engines
  • public: indexed in sitemap and discoverable via search engines
  • private: only the authenticated owner can view (requires login)
  • Use --visibility private for sensitive content that should only be visible to you
  • Do NOT publish content containing secrets, passwords, API keys, or personally identifiable information unless the user explicitly requests it
  • Always warn the user before publishing sensitive content

Examples

Generate and publish an HTML report

cat <<'HTML' | artidrop publish - --format html --title "Sales Dashboard"
<!DOCTYPE html>
<html>
<head><title>Sales Dashboard</title></head>
<body>
  <h1>Q1 Sales Dashboard</h1>
  <p>Total revenue: $1.2M</p>
</body>
</html>
HTML

Publish a Markdown summary

cat <<'MD' | artidrop publish - --format markdown --title "Weekly Standup Notes"
# Weekly Standup — March 23, 2026

## Completed
- Shipped new authentication flow
- Fixed dashboard loading bug

## In Progress
- API rate limiting improvements
MD

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

97.77%
按下载量换算2,114

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills