// ActivityPub channel verifier — v0.2. // // WebFinger → actor JSON → look for the kez fence in `summary` or // `attachment[].value`. Most fediverse instances do not send CORS // headers on /.well-known/webfinger, so verifying from the browser // would require a server-side proxy. Deferred. import { skipped, type Verifier } from "./types.js"; export const verifyAp: Verifier = async () => { return skipped( "ActivityPub verification is coming in v0.2", "WebFinger lookups require a server-side proxy (CORS). You can still publish the artifact manually.", ); };