@jumboo/create-agent 0.1.1 → 0.1.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jumboo/create-agent",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Scaffold a ready-to-run Jumboo agent: npm create @jumboo/agent my-agent",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,6 +19,9 @@ const app = express();
19
19
  app.use(express.json());
20
20
 
21
21
  app.get("/health", (_req, res) => {
22
+ // Public read-only status — allow the Jumboo frontend to verify the master
23
+ // fingerprint cross-origin when you register agents.
24
+ res.set("Access-Control-Allow-Origin", "*");
22
25
  res.json({
23
26
  ok: true,
24
27
  mode: "master",