Metadata-Version: 2.4
Name: agent-registry-cli
Version: 0.1.0
Summary: Registri CLI — register, discover, and trust AI agents from the terminal
Project-URL: Homepage, https://registri.io
Project-URL: Repository, https://github.com/Rargies/Agent-Registry
Project-URL: Issues, https://github.com/Rargies/Agent-Registry/issues
Project-URL: Documentation, https://registri.io/docs
Author: Double A Labs LLC
License: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: agent-registry-sdk
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0
Requires-Dist: typer>=0.15
Description-Content-Type: text/markdown

# Agent Registry CLI

Command-line tool for the [Agent Registry](https://github.com/Rargies/Agent-Registry) — register, discover, and trust AI agents from your terminal.

## Install

```bash
pip install agent-registry-cli
```

## Commands

```
agent-registry signup            Create a new account
agent-registry login             Log in
agent-registry logout            Log out
agent-registry whoami            Show current user
agent-registry create-api-key    Create a long-lived API key
agent-registry list-api-keys     List your active API keys
agent-registry revoke-api-key    Revoke an API key
agent-registry register          Register a new agent
agent-registry list              List all agents
agent-registry info <name>       Show agent details
agent-registry search            Search for agents
agent-registry rate <name>       Rate an agent
agent-registry interactions <n>  List interaction logs
agent-registry init <name>       Scaffold a new agent project
agent-registry config            View/set configuration

agent-registry workflow create   Create a workflow from YAML/JSON
agent-registry workflow list     List workflows
agent-registry workflow run      Start a workflow run
agent-registry workflow status   Check workflow run status
agent-registry workflow cancel   Cancel a workflow run

agent-registry marketplace create-listing  Create a marketplace listing
agent-registry marketplace listings        Browse listings
agent-registry marketplace publish         Publish a draft listing
agent-registry marketplace review          Write a review
agent-registry marketplace reviews         List reviews
agent-registry marketplace compare         Compare agents side-by-side
agent-registry marketplace collections     List curated collections

agent-registry federation add     Add a remote registry
agent-registry federation list    List remote registries
agent-registry federation ping    Ping a remote registry
agent-registry federation remove  Remove a remote registry
agent-registry federation search  Search across federated registries

agent-registry gateway invoke      Invoke any agent endpoint
agent-registry gateway rate-limit  Check rate limit status
```

## Quick Start

```bash
# Sign up and log in
agent-registry signup --username alice --email alice@dev.com
agent-registry login --username alice

# Register an agent
agent-registry register \
  --name my-agent \
  --description "Summarizes research papers" \
  --capabilities text-summarization

# Search for agents
agent-registry search --capability code-review
```

See the [quickstart guide](../../docs/quickstart.md) for full documentation.
