agentic-factory-bridge 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/bridge.js +6 -0
  2. package/package.json +1 -1
package/bridge.js CHANGED
@@ -309,6 +309,12 @@ app.use(
309
309
  }),
310
310
  );
311
311
 
312
+ // Private Network Access (Chrome 94+) — required for HTTPS pages to reach localhost
313
+ app.use((_req, res, next) => {
314
+ res.set('Access-Control-Allow-Private-Network', 'true');
315
+ next();
316
+ });
317
+
312
318
  app.use(express.json({ limit: '1mb' }));
313
319
 
314
320
  app.use((_req, res, next) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-factory-bridge",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Local bridge for Atos Agentic Factory — connects the marketplace to OpenCode CLI on your machine",
5
5
  "main": "bridge.js",
6
6
  "bin": {