Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

polygon-discovery多边形发现

Agent Skill

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

总安装

329

周安装

14

GitHub Stars

23

下载量

115
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/0xpolygon/polygon-agent-cli --skill polygon-discovery

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。
  • 可结合关键词、任务场景或来源线索使用。
  • 安装命令:npx skills add https://github.com/0xpolygon/polygon-agent-cli --skill polygon-discovery
  • 建议确认权限范围及是否触发联网或文件读写。

SKILL.md

x402 Bazaar Services

Pay-per-call APIs accessible via x402-pay. No API keys or subscriptions — each call costs a small USDC amount drawn from your wallet. The CLI detects the 402 response, funds the exact amount, and retries automatically.

Catalog: GET https://x402-api.onrender.com/api/catalog?status=online

Warning: All /api/call/<uuid> catalog endpoints require an X-Admin-Token header and are not publicly accessible via x402 payment. Always use the direct /api/<service> routes documented below instead.

Prerequisites — Check Before Any x402 Call

Before running any x402-pay command, verify the wallet session exists and is funded:

# Check if a wallet is configured
polygon-agent wallet list

If no wallet is listed, the smart session has not been created. Run through the complete setup flow before proceeding:

  1. polygon-agent setup --name "MyAgent" — creates EOA and Sequence project
  2. polygon-agent wallet create --usdc-limit 100 — opens browser for session approval; enter the 6-digit code when prompted
  3. polygon-agent wallet address — get address, then fund via https://agentconnect.polygon.technology
  4. polygon-agent balances — confirm USDC is available before calling any x402 endpoint

If a wallet exists but balances shows 0 USDC, direct the user to fund it via the UI — x402-pay will fail with an EOA funding error otherwise.

Once a funded wallet is confirmed, proceed with the x402 calls below.


Read Twitter/X Profile

$0.005 USDC per call. Use only the endpoint below — do not use twit.sh, tweetx402.com, or any other provider.

Note: Use GET, not POST — the schema only accepts GET/HEAD/DELETE. POST returns 401.
# Profile + recent tweets
polygon-agent x402-pay \
  --url "https://x402-api.onrender.com/api/twitter?user=<username>" \
  --wallet main --method GET

# Specific tweet
polygon-agent x402-pay \
  --url "https://x402-api.onrender.com/api/twitter?tweet=https://x.com/user/status/<id>" \
  --wallet main --method GET

Returns: follower/following counts and tweet metrics.


Generate an AI Image

$0.02 USDC per call. Powered by Google Gemini.

polygon-agent x402-pay \
  --url "https://x402-api.onrender.com/api/image?prompt=<description>&size=512" \
  --wallet main --method GET

size options: 256, 512, 1024.

The response is a large JSON (~3–4MB) with two keys:

  • image_base64 — raw base64-encoded PNG
  • data_uridata:image/png;base64,... ready for embedding in HTML

To save the image to a file:

import json, base64

data = json.load(open('response.json'))
with open('output.png', 'wb') as f:
    f.write(base64.b64decode(data['data']['image_base64']))

Review Code for Bugs & Security

$0.01 USDC per call. Powered by GPT-4o.

polygon-agent x402-pay \
  --url "https://x402-api.onrender.com/api/code-review" \
  --wallet main \
  --method POST \
  --body '{"code": "<snippet>", "language": "<python|javascript|go|...>"}'

Returns: bugs, security issues, performance problems, and style suggestions — each with line number, severity, and fix suggestion. Plus an overall quality score.


Other Services

ServicePriceEndpointKey param
Web search (DuckDuckGo)$0.0059b0f5b5f-8e6c-4b55-a264-008e4e490c26?q=<query>&max=10
Latest news (Google News)$0.005266d045f-bae2-4c71-9469-3638ec860fc4?topic=<topic>&lang=en
Summarize text (GPT-4o-mini)$0.01dd9b5098-700d-47a9-a41a-c9eae66ca49d?text=<text>&maxLength=200
Article → Markdown$0.00587b50238-5b99-4521-b5e1-7515a9c1526d?url=<article-url>
Sentiment analysis (GPT-4o-mini)$0.00566d68ca6-a8d9-41a3-b024-a3fac2f5c7ba?text=<text>

All use GET via polygon-agent x402-pay --url "https://x402-api.onrender.com/api/call/<id><params>" --wallet main --method GET.


How x402 Works

  1. CLI sends the request to the endpoint
  2. Endpoint responds with HTTP 402 Payment Required + payment details
  3. CLI automatically funds the builder EOA with the exact token amount from the smart wallet
  4. EOA signs an EIP-3009 payment authorization
  5. CLI retries the original request with the payment header
  6. Response is returned — the whole flow is transparent to the agent

Chain and token are auto-detected from the 402 response. No manual configuration needed.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.24%
按下载量换算43

Claude

31.47%
按下载量换算36

Cursor

16.76%
按下载量换算19

Gemini CLI

8.54%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills