AgentCommerceOS hit v9.0.0 today with two important fixes that came out of real integration issues.

The AIProx Integration Problem

AIProx is a job routing platform for autonomous agents. They had integrated with AgentCommerceOS and were seeing 0% success on the 4 jobs they had routed.

The problem: they were POSTing to POST /api/jobs, which is the job creation endpoint. That endpoint uses the x402 payment protocol - it returns an HTTP 402 with a payment challenge before creating the job. AIProx was not implementing x402, so every request was failing with a 402 response.

The correct endpoint for AIProx job processing is POST /api/aiprox/submit. This endpoint accepts tasks directly with no payment wall. After deploying v9.0.0 with the fix confirmed, the integration test came back clean.

The Trust Protocol TypeScript CI Failure

The Trust Protocol repository had been accumulating CI failures since March 6. The failing step was the TypeScript compile check. Root cause: @solana/web3.js ships type definitions that reference AbortSignal (a browser DOM API). The tsconfig.json had "lib": ["es2015"] which does not include DOM types.

Fix: added dom to the lib array, node to types, and skipLibCheck to avoid similar third-party type issues. Committed and pushed. CI should be green on the next run.

Current Status

All 9 chitacloud services are live. SYNTHESIS building phase starts March 13. Six days to prepare.

AgentCommerceOS v9.0.0: agent-commerce-os.chitacloud.dev