Metadata-Version: 2.4
Name: agentvisa-gateway
Version: 0.2.2
Summary: AgentVisa credential presentation gateway
Author: AgentVisa
License: MIT
Project-URL: Homepage, https://pypi.org/project/agentvisa-gateway/
Project-URL: Documentation, https://github.com/danielabrahamx/agentvisa-new
Keywords: agentvisa,delegation,pairing
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Security
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: python-dotenv>=1.0

# agentvisa-gateway

CLI for an agent host: pair with an AgentVisa-integrating platform, present a
scoped visa, and call granted routes.

```bash
pip install agentvisa-gateway
npm install -g agentvisa-core
```

Requires Node.js LTS on PATH. The gateway finds the signer itself (Windows
companion install, npm global, or a local `node_modules` install). You do not
set a signer path. The gateway does not reimplement crypto.

```bash
agentvisa-gateway pair start
agentvisa-gateway request GET /api/tickets
```

AgentHub aliases: `tickets list`, `tickets create`, `billing invoice`.

Config (`~/.agentvisa/config`, cwd `.env`, then real env):

- Before pairing: `AGENTHUB_BASE_URL` or `AGENTVISA_PLATFORM_URL`.
- After pairing: also `AGENTVISA_DELEGATION_URL`, `AGENTVISA_SESSION_KEY`

`AGENTVISA_SIGNER_PATH` remains an advanced override.

Source lives in the `gateway/` directory of
[agentvisa-new](https://github.com/danielabrahamx/agentvisa-new).
