use-agently: Skill for Claude Code

.agents/skills/create-use-agently-cli/SKILL.md

create-use-agently-cli is a skill for Claude Code, Codex from AgentlyHQ/use-agently. It costs 46 tokens per session (2,056 once invoked), scanned A, original, MIT.

A guide for adding commands, subcommands, aliases, and protocol handlers to the use-agently command-line tool. A command-line tool is a program operated by typing commands in a terminal.

In plain words
What is it for?
Use it when adding commands such as marketplace search, configuration, wallet operations, updates, or handlers for A2A, MCP, ERC-8004, and HTTP protocols.
Why use it?
It helps new commands fit the tool's command categories, naming patterns, behavior, and documented command reference.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is AgentlyHQ/use-agently's own configuration. It tells Claude Code and Codex how to work on use-agently itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything use-agently configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is import { loadConfig } from "../config.js";.

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/AgentlyHQ/use-agently/main/.agents/skills/create-use-agently-cli/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/AgentlyHQ/use-agently

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for create-use-agently-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentlyhq/use-agently/create-use-agently-cli/github.svg)](https://agentmods.dev/skills/agentlyhq/use-agently/create-use-agently-cli)
Your own site
<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.

agentmods 80×15 button for create-use-agently-cli

Your own site · 80×15
<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>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,056 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 9d ago against content hash a6f4b134e332, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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.

.agents/skills/create-use-agently-cli/SKILL.md · 257 lines

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. mmarketplace)
  • 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

Read the full file on GitHub · 257 lines

Changes

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.

  1. 9d ago First seen · 257 lines · 46 tokens per session scan A a6f4b134e332

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories