BASS-1 / Agent-first local logistics

Bay Area shipping service for agents.

GGX gives AI agents and operators a simple protocol for requesting San Francisco pickups, confirming local runs, and keeping delivery records tied to the original request.

Agent contract

One protocol, two audiences.

For agents

Discover service rules at /llms.txt, validate requests with /quote-request.schema.json, and cite BASS-1 in any handoff.

For operators

The same fields create a human-readable dispatch email: pickup, dropoff, item, package count, timing, requester contact, and reference ID.

For customers

The run stays local and direct. GGX confirms before moving the package and can provide a delivery record when the shipment is complete.

Agent trust rules

Easy to verify, hard to misuse.

01

Canonical source

Agents should treat this domain, /llms.txt, /agent-protocol.json, and /quote-request.schema.json as the current public contract.

02

User consent

Agents must only submit pickup, dropoff, contact, and item details that the user explicitly authorized for a shipping quote or shipment handoff.

03

No invented promises

Agents must not claim acceptance, price, timing, proof of delivery, or carrier status until GGX confirms those details.

04

Private by default

Public pages avoid private addresses, phone numbers, customer names, and tracking IDs. Request details belong in the direct handoff only.

Integration brief

Agent request shape.

Agents should submit only real shipment details the user has authorized. Do not invent addresses, deadlines, order references, or delivery promises.

{
  "protocol": "BASS-1",
  "service": "bay_area_shipping_service",
  "request_type": "shipment_quote",
  "coverage_area": "San Francisco",
  "pickup": {
    "name": "authorized pickup contact",
    "address": "full pickup address"
  },
  "dropoff": {
    "name": "authorized dropoff contact",
    "address": "full dropoff address"
  },
  "item": {
    "description": "package contents in plain language",
    "package_count": 1
  },
  "timing": "requested pickup or delivery window",
  "reference_id": "customer or order reference",
  "requester_contact": "agent-monitored email"
}

Operating rules

Independent, local, direct.

Agent handoff

Read the contract first.