From 316d1951652809f4df465b0a411c812e447b99c0 Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Sat, 12 Sep 2026 19:03:08 +0000 Subject: [PATCH 1/2] Serve an OpenAccess descriptor at /.well-known/openaccess.json Lists moshcode on OpenAccess hubs (openaccess.logicsrc.com) so people can link it with OAuth 2.1 + PKCE and it honours the shared profullstack.com/all-access entitlement. The Ed25519 public key here is the app's credential for reporting sales; the private half is in the logicsrc teams vault openaccess-app-keys--prod. Scopes are empty for now: the reserved openid, email and entitlements scopes need no listing. Spec: https://logicsrc.com/openaccess Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01SWRffW4ifQPUrGXJtgYWMd --- apps/pwa/public/.well-known/openaccess.json | 29 +++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 apps/pwa/public/.well-known/openaccess.json diff --git a/apps/pwa/public/.well-known/openaccess.json b/apps/pwa/public/.well-known/openaccess.json new file mode 100644 index 00000000..380051db --- /dev/null +++ b/apps/pwa/public/.well-known/openaccess.json @@ -0,0 +1,29 @@ +{ + "openaccess": "0.1", + "name": "moshcode", + "url": "https://moshcode.sh", + "operator": "https://logicsrc.com/.well-known/openprofile.md", + "redirect_uris": [ + "https://moshcode.sh/api/v1/openaccess/callback" + ], + "jwks": { + "keys": [ + { + "kty": "OKP", + "crv": "Ed25519", + "kid": "NZ8tRe6lAOqA", + "x": "WrAHtbFxSg9EveTS4W7GeX-MEDL1uHNDCHMUZkG-32Q", + "alg": "EdDSA", + "use": "sig" + } + ] + }, + "scopes": {}, + "honours": [ + "profullstack.com/all-access" + ], + "webhooks": "https://moshcode.sh/api/v1/openaccess/events", + "hubs": [ + "https://openaccess.logicsrc.com" + ] +} From ae7d3eec2941fef3ef0bfd63d958909b0e57b83a Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Sat, 12 Sep 2026 19:12:42 +0000 Subject: [PATCH 2/2] Serve an OpenMCP descriptor at /.well-known/openmcp.json Lists this app's MCP endpoint on OpenMCP catalogs (openmcp.logicsrc.com) as verified: where the endpoint is, how to authenticate, what it is for, the tools, and the operator. Spec: https://logicsrc.com/openmcp Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01SWRffW4ifQPUrGXJtgYWMd --- apps/pwa/public/.well-known/openmcp.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 apps/pwa/public/.well-known/openmcp.json diff --git a/apps/pwa/public/.well-known/openmcp.json b/apps/pwa/public/.well-known/openmcp.json new file mode 100644 index 00000000..1d76d53d --- /dev/null +++ b/apps/pwa/public/.well-known/openmcp.json @@ -0,0 +1,19 @@ +{ + "openmcp": "0.1", + "mcp": "https://moshcode.sh/mcp", + "name": "moshcode", + "description": "Shared coding sessions and their transcripts, over MCP with OAuth.", + "url": "https://moshcode.sh", + "auth": { + "kind": "oauth", + "url": "https://moshcode.sh/settings" + }, + "tags": [ + "coding", + "collaboration" + ], + "operator": "https://logicsrc.com/.well-known/openprofile.md", + "catalogs": [ + "https://openmcp.logicsrc.com" + ] +}