Metadata-Version: 2.4
Name: agent-id-cli
Version: 0.1.0
Summary: AgentID — CLI for managing AI agent identities
Project-URL: Homepage, https://github.com/agentscope-ai/agent-identity
Project-URL: Documentation, https://github.com/agentscope-ai/agent-identity
Project-URL: Repository, https://github.com/agentscope-ai/agent-identity
Author-email: Tongyi Lab <yilei.z@alibaba-inc.com>
License-Expression: Apache-2.0
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Requires-Dist: agent-id-sdk>=0.1.0
Requires-Dist: typer>=0.9.0
Description-Content-Type: text/markdown

# agent-id-cli

AgentID CLI — manage AI agent identities from the command line.

## Installation

```
pip install agent-id-cli
```

## Quick Start

```bash
# Initialize with an identity provider
agent-id init --provider https://qwenpaw.ai

# Create an agent identity
agent-id agent create --name my-agent

# List agents
agent-id agent list

# Get a token for testing
agent-id agent token --name my-agent --audience https://service.example.com
```

## Documentation

See the [AgentID](https://github.com/agentscope-ai/agent-identity) repository for full documentation.
