patchwork-os 0.2.0-beta.5.canary.151 → 0.2.0-beta.5.canary.152

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * OAuth 2.0 route dispatcher — extracted from src/server.ts.
3
3
  *
4
- * Owns the public OAuth endpoints (RFC 8414 discovery, RFC 9396 protected-
4
+ * Owns the public OAuth endpoints (RFC 8414 discovery, RFC 9728 protected-
5
5
  * resource metadata, RFC 7591 dynamic client registration, authorize,
6
6
  * token, RFC 7009 revoke). All routes are unauthenticated — they MUST
7
7
  * run before the bearer-auth gate.
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * OAuth 2.0 route dispatcher — extracted from src/server.ts.
3
3
  *
4
- * Owns the public OAuth endpoints (RFC 8414 discovery, RFC 9396 protected-
4
+ * Owns the public OAuth endpoints (RFC 8414 discovery, RFC 9728 protected-
5
5
  * resource metadata, RFC 7591 dynamic client registration, authorize,
6
6
  * token, RFC 7009 revoke). All routes are unauthenticated — they MUST
7
7
  * run before the bearer-auth gate.
@@ -37,7 +37,7 @@ export function tryHandleOAuthRoute(req, res, parsedUrl, deps) {
37
37
  }
38
38
  return true;
39
39
  }
40
- // RFC 9396 Protected Resource Metadata — Claude.ai probes this to discover
40
+ // RFC 9728 Protected Resource Metadata — Claude.ai probes this to discover
41
41
  // which authorization server protects this resource. Both the bare and
42
42
  // resource-path variants are handled.
43
43
  if (req.method === "GET" &&
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchwork-os",
3
- "version": "0.2.0-beta.5.canary.151",
3
+ "version": "0.2.0-beta.5.canary.152",
4
4
  "description": "Your personal AI runtime, local-first. Patchwork OS gives any AI model a consistent set of tools, YAML recipes, a delegation policy with approval queue, and a durable trace memory — all on your machine, all under your policy.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",