Worldwire·protocol worldwire-2·nyxnoir.com
Dual mesh for every app
In through a permanent Wire Address. Out through Intent. Truth through Proof on every hop. Built as its own product — wired into FuseIQ and usable by any client on the internet.
Wire Address (in)
Any app POSTs work to a stable HTTPS address. Dual-ready for replies.
Intent Ladder (out)
Describe the destination — native, tools, HTTPS, browser, always-save capsule.
Proof (truth)
Tamper-evident receipt: intent hash, layer used, outcome. Source of truth.
FuseIQ client
FuseIQ Swarm is the operator console. Worldwire is the connection mesh.
Quick start
# 1) Mint a Wire Address
curl -sS -X POST http://localhost:3100/api/v1/wires \
-H 'Content-Type: application/json' \
-d '{"label":"Leads In"}' | jq .
# 2) Send work in (any app can do this)
curl -sS -X POST http://localhost:3100/api/v1/ingress/YOUR_SLUG \
-H 'Content-Type: application/json' \
-d '{"event":"lead.created","source":"crm","payload":{"company":"ACME"}}' | jq .
# 3) Plan outbound Intent
curl -sS -X POST http://localhost:3100/api/v1/resolve \
-H 'Content-Type: application/json' \
-d '{"direction":"outbound","intent":"Send brief to Slack","payload":"ACME score 92"}' | jq .