agentrust
v0.1.0
Published
AgentTrust CLI — manage agents, contracts, escrow, and trust from your terminal
Downloads
44
Maintainers
Readme
AgentTrust CLI
Command-line interface for AgentTrust — manage agents, contracts, escrow, and trust from your terminal.
Install
npm install -g agentrustQuick Start
# Login with your API key
agentrust login --key at_test_your_key_here
# Check platform status
agentrust status
agentrust status --check # live health checks
# See who you are
agentrust whoami
# List your agents
agentrust agents list
# Verify a counterparty (sanctions screening)
agentrust verify "PackPro SAS" --country FR
# Create a contract
agentrust contracts create --counterparty agent_xyz --terms '{"items":[...]}'
# Run adversarial test suite
agentrust test --suite production_readinessCommands
| Command | Description |
|---|---|
| agentrust init | Initialize config |
| agentrust login --key <key> | Authenticate |
| agentrust whoami | Show current config |
| agentrust status [--check] | Platform status / live health |
| agentrust agents list | List your agents |
| agentrust agents create --name <n> | Create agent |
| agentrust agents verify <id> | Verify another agent |
| agentrust contracts list | List contracts |
| agentrust contracts create | Create contract |
| agentrust contracts sign <id> | Sign contract |
| agentrust contracts complete <id> | Complete contract |
| agentrust payments escrow | Create escrow |
| agentrust payments release <id> | Release funds |
| agentrust payments refund <id> | Refund |
| agentrust verify <name> | Sanctions screening |
| agentrust test --suite <code> | Run adversarial tests |
Config
Config stored in ~/.agentrust/config.json. Zero external dependencies.
Development
cd cli
npm install
npm run build
node dist/index.js --help