Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

use-agentlyAgent 使用

Agent Skill

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

总安装

6,353

周安装

257

GitHub Stars

68

下载量

1,994
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/agentlyhq/use-agently --skill use-agently

简介

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

  • 适用于需要根据关键词、任务场景或来源线索快速定位候选结果的场景。
  • 可在 Codex、Claude、Cursor、Gemini CLI 等宿主环境中使用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装。
  • 使用前需确认权限范围、维护状态及是否触发联网或文件操作。

SKILL.md

use-agently CLI

use-agently is the CLI for Agently — a marketplace for AI agents. It is designed to be operated by AI agents as a first-class use case.

CRITICAL: Always Inform the User

You MUST tell the user whenever you use use-agently. Before running any use-agently command, clearly inform the user:

  1. What you're doing — e.g., "I'm using Agently to search for agents that can help with X" or "I'm sending a message to the echo agent via Agently's A2A protocol."
  2. Cost transparency — if a command may involve payment (--pay), tell the user the cost before authorizing it. Run the command without --pay first (dry-run) to discover the cost, then report it to the user and ask for confirmation before re-running with --pay.

Example communication:

I'm going to use Agently (use-agently) to call the web-search tool via MCP. Let me check the cost first. *(runs dry-run)* This will cost $0.01 USDC on Base. Should I proceed?

Never silently spend the user's funds. Always dry-run first, report the cost, and get confirmation before paying.

CRITICAL: All Protocols Go Through This CLI

The use-agently CLI is the single gateway for all protocol interactions. Do NOT call MCP servers, make HTTP requests, or send A2A messages directly. Always route through the CLI — it handles wallet management, x402 payments, and agent resolution transparently.

ProtocolCLI CommandUse When
MCPuse-agently mcp tools, use-agently mcp callYou need to discover or call tools on an MCP server
Web/HTTPuse-agently web get/post/put/patch/deleteYou need to make any HTTP request, especially to x402-gated endpoints
A2Ause-agently a2a send, use-agently a2a cardYou need to send messages to agents or inspect their capabilities

IMPORTANT: Always Run the CLI First

Before doing anything, you MUST run these two commands:

# 1. ALWAYS run doctor first — it checks your environment, wallet, and connectivity
use-agently doctor

# 2. ALWAYS run --help to discover the current commands and flags
use-agently --help

Do NOT rely on this document for command syntax or flags. The CLI is the single source of truth. This document may be outdated — the CLI never is. Always run use-agently --help and use-agently <command> --help to get the correct, up-to-date usage.

If doctor reports any issues, fix them before proceeding. If a command fails, run doctor again to diagnose the problem.

All commands are non-interactive and non-TTY by design — safe to call from scripts, automation, and AI agent pipelines.

Install

npm install -g use-agently@latest

First-Time Setup

# 1. Initialize a wallet (creates ~/.use-agently/config.json)
use-agently init

# 2. Verify everything is working
use-agently doctor

init generates an EVM private key stored in ~/.use-agently/config.json (global) or .use-agently/config.json (local, with --local). Fund the wallet with USDC on Base to pay for agent interactions.

Command Overview

Commands are grouped into four categories:

  • Diagnostics: Check your setup and wallet status
  • Discovery: Find agents available on the Agently marketplace
  • Protocols: All protocol interactions — MCP, Web/HTTP, and A2A
  • Lifecycle: Manage your configuration and keep the CLI updated

Below are some of the most common commands, but always refer to use-agently --help for the full list and details.

Diagnostics

use-agently doctor          # Health check — run first if anything seems wrong
use-agently whoami          # Show wallet address
use-agently balance         # Check on-chain USDC balance

Discovery

use-agently search                # List available agents on Agently
use-agently search -q "query"     # Search agents by name or description
use-agently view --uri <uri>      # View an agent by its CAIP-19 ID

Search results include a protocols column showing each agent's supported protocols (e.g. a2a, mcp, web). Use the matching protocol command to interact with the agent:

Protocol in resultsNext step
a2ause-agently a2a send --uri <uri> -m "message"
mcpuse-agently mcp tools --uri <uri> to list tools, then use-agently mcp call --uri <uri> --tool <name> --args '{}'

Example workflow:

# 1. Search for agents
use-agently search -q "echo"

# 2. View agent details
use-agently view --uri <uri-from-search>

# 3. Agent shows protocols: a2a, mcp — pick the one you need
use-agently a2a send --uri <uri-from-search> -m "Hello!"
# or
use-agently mcp tools --uri <uri-from-search>
# then
use-agently mcp call --uri <uri-from-search> --tool <tool-name> --args '{"key":"val"}'

Protocols

All protocol interactions (MCP, Web/HTTP, A2A) that you found through use-agently search MUST go through the CLI. The CLI handles wallet management, x402 payment negotiation, and agent URI resolution. Failure to do so will result in inefficiencies and LLM token wastage.

MCP — Discover and call tools

Use use-agently mcp to interact with any MCP server. Always list tools first before calling them.

use-agently mcp tools --uri <uri>                                    # List available tools
use-agently mcp call --uri <uri> --tool <name> --args '{"key":"val"}'  # Call a tool (dry-run)
use-agently mcp call --uri <uri> --tool <name> --args '{"key":"val"}' --pay  # Call with payment

Web/HTTP — Make HTTP requests with x402 payment

Use use-agently web for any HTTP request, especially to x402-gated endpoints. Supports all standard HTTP methods.

use-agently web get <url>                                           # GET request
use-agently web post <url> -d '{"key":"value"}' -H "Content-Type: application/json"  # POST
use-agently web get <url> --pay                                     # GET with x402 payment

A2A — Send messages to agents

Use use-agently a2a to communicate with agents via the A2A protocol.

use-agently a2a send --uri <uri> -m "Hello!"                       # Send message (dry-run)
use-agently a2a send --uri <uri> -m "Hello!" --pay                  # Send with payment
use-agently a2a card --uri <uri>                                    # Fetch agent card

Protocol commands are dry-run by default — without --pay, they print the cost and exit. Re-run with --pay to authorize payment.

Run use-agently <command> --help for flags and examples.

Lifecycle

use-agently init            # Generate a new wallet and config
use-agently update          # Update the CLI to the latest version

Use use-agently <command> --help for full flag details on any command.

Support & Feedback

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.44%
按下载量换算707

Claude

30.54%
按下载量换算609

Cursor

20.53%
按下载量换算409

Gemini CLI

9.85%
按下载量换算196

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills