Borrowing it
Nothing to install: this file belongs to AgentlyHQ/use-agently. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/AgentlyHQ/use-agently/main/.agents/skills/create-use-agently-cli/SKILL.mdgit clone --depth 1 https://github.com/AgentlyHQ/use-agentlyWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/agentlyhq/use-agently/create-use-agently-cli)<a href="https://agentmods.dev/skills/agentlyhq/use-agently/create-use-agently-cli"><img src="https://agentmods.dev/badge/skills/agentlyhq/use-agently/create-use-agently-cli/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/agentlyhq/use-agently/create-use-agently-cli"><img src="https://agentmods.dev/badge/skills/agentlyhq/use-agently/create-use-agently-cli.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00046 | $0.02056 |
| Opus 5 | $0.00023 | $0.01028 |
| Sonnet 5 | $0.00009 | $0.00411 |
| Haiku 4.5 | $0.00005 | $0.00206 |
Grade A, and why
create-use-agently-cli scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 257 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create a use-agently CLI Command
When to Use
Use this skill when:
- Adding a new top-level command (e.g.
marketplace,wallets,update) - Adding a subcommand using the colon-separator pattern (e.g.
a2a:card,marketplace:agents) - Adding a shorthand alias for an existing command (e.g.
m→marketplace) - Implementing a new protocol handler (A2A, MCP, ERC-8004, HTTP)
Command Taxonomy
Every command belongs to one of four categories. Place new commands in the correct category:
| Category | Purpose | Examples |
|---|---|---|
| Lifecycle & Health | Setup, diagnostics, identity, balance | doctor, whoami, balance, init |
| Discovery | Browse the Agently marketplace | search, view |
| Operations | Config, wallets, updates | config, wallets, update |
| Protocols | Protocol invocations | a2a, a2a:card, mcp, erc-8004, web:get |
Full Command Reference
# Lifecycle & Health
use-agently # Default: print available commands (same as --help)
use-agently help # Print available commands
use-agently doctor # Run environment and configuration health checks
use-agently whoami # Show current wallet type and address
use-agently balance # Show on-chain wallet balance
# Discovery
use-agently search # Browse all agents on the marketplace (no query = list all)
use-agently search -q "query" # Search agents by name or description
use-agently search --protocol a2a # Filter by protocol
use-agently view --uri <uri> # View agent details by CAIP-19 ID
# Operations
use-agently init # Initialize a wallet and config
use-agently config # Show or edit current configuration
use-agently update # Update the CLI to the latest version
use-agently wallets # List and manage configured wallets
# Protocols
use-agently erc-8004 "uri" # Resolve an ERC-8004 agent URI
use-agently a2a "uri/url" # Send a message to an agent via A2A protocol
use-agently a2a:card "uri/url" # Fetch and display the A2A agent card
use-agently mcp "uri/url" # Connect to an MCP server
use-agently web "url" # HTTP GET (default method)
use-agently web:get "url" # HTTP GET
use-agently web:put "url" # HTTP PUT
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 257 lines · 46 tokens per session scan A a6f4b134e332
create-use-agently-cli is a skill published in the GitHub repository AgentlyHQ/use-agently (72 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 2,056 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
wiki-discovery-api
Write new knowledge to the wiki memory service via REST API after checking novelty.
omni-mcp
Connect to the OmniRoute MCP server (110 tools, 3 transports: SSE/stdio/HTTP). Covers routing, cache, compression, memory, skills, providers, and audit tools across 33 permission scopes.
omni-webhooks
Register, list, test, and remove webhook endpoints. Configure event subscriptions (request.completed, request.failed, quota.exceeded, etc.) and manage delivery retries.
add-matrix
Add Matrix channel integration via Chat SDK. Works with any Matrix homeserver.
agui-dotnet-streaming-chat
Get started with the AG-UI .NET SDK: bootstrap and run your first streaming-chat app (client + server) with the AG-UI .NET NuGet packages (AGUI.Client, AGUI.Server, AGUI.Formatting, AGUI.Abstractions). USE FOR: which packages to install and how to wire them; constructing an AGUIChatClient against an endpoint and…
agui-dotnet-protobuf
Use the protobuf wire transport (instead of the default Server-Sent Events) for an AG-UI connection with the AG-UI .NET SDK — a compact binary event stream negotiated via the Accept header. USE FOR: making an AGUIChatClient prefer protobuf by wiring an AGUIEventStreamHandler with ProtobufEventStreamFormatter (then…