Shulam CLI

Screen, settle, trust, ACS, quote, receipt — from your terminal or AI agent. JSON output for scripting.

bash
npm install -g @shulam/cli

Or: npx @shulam/cli screen 0x... (no install needed)

Commands

shulam screen

Screen any address against OFAC/PEP sanctions lists

bash
shulam screen 0x1234...abcd
Output:
json
{
  "address": "0x1234...abcd",
  "status": "clear",
  "screenedAt": "2026-03-31T12:00:00Z",
  "lists": ["OFAC_SDN", "EU_SANCTIONS", "UK_SANCTIONS"],
  "confidence": 1.0
}
shulam settle

Execute a compliance-verified USDC settlement

bash
shulam settle --from 0xBuyer --to 0xSeller --amount 1000000 --env production
Output:
json
{
  "txHash": "0xabc...def",
  "status": "confirmed",
  "amount": "1000000",
  "fee": "150",
  "receipt": "QmBaruch...hash"
}
shulam trust

Look up an agent's 7-factor trust score

bash
shulam trust 0x1234...abcd
Output:
json
{
  "trustScore": 82,
  "tier": "B",
  "connections": 47,
  "trend": "up",
  "lastUpdated": "2026-03-31T11:55:00Z"
}
shulam acs

Get an agent's credit score (300-850)

bash
shulam acs 0x1234...abcd
Output:
json
{
  "score": 720,
  "grade": "B",
  "factors": {
    "paymentHistory": 0.85,
    "transactionVolume": 0.72,
    "longevity": 0.60,
    "behavioralIntegrity": 0.90,
    "serviceDiversity": 0.55,
    "compliancePosture": 0.95,
    "peerReputation": 0.70
  }
}
shulam quote

Get a fee quote before settling

bash
shulam quote --from 0xBuyer --to 0xSeller --amount 5000000
Output:
json
{
  "amount": "5000000",
  "fee": "750",
  "feeRate": "15bps",
  "merchantReceives": "4999250",
  "estimatedLatency": "12s"
}
shulam receipt

Retrieve a BARUCH compliance receipt

bash
shulam receipt 0xabc...txhash
Output:
json
{
  "receiptHash": "QmBaruch...hash",
  "ofacStatus": "clear",
  "trustScore": 82,
  "acsGrade": "B",
  "signature": "0x...(EIP-712)",
  "verifiable": true
}

Global flags

FlagDescription
--env, -esandbox (default) or production
--output, -ojson (default) or table
--quiet, -qSuppress progress output
--api-keyOverride API key (default: SHULAM_API_KEY env)