vibora 9.3.0 → 9.3.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/dist/index.html CHANGED
@@ -5,7 +5,7 @@
5
5
  <link rel="icon" type="image/png" href="/logo.png" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>Vibora - Harness Attention. Ship.</title>
8
- <script type="module" crossorigin src="/assets/index-CCRm-b6X.js"></script>
8
+ <script type="module" crossorigin src="/assets/index-VmQIGond.js"></script>
9
9
  <link rel="stylesheet" crossorigin href="/assets/index-CYo_ATvM.css">
10
10
  </head>
11
11
  <body>
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "vibora",
3
- "version": "9.3.0",
3
+ "version": "9.3.2",
4
4
  "description": "Harness Attention. Orchestrate Agents. Ship.",
5
- "license": "PolyForm-Shield-1.0.0",
5
+ "license": "PolyForm-Perimeter-1.0.0",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/knowsuchagency/vibora"
package/server/index.js CHANGED
@@ -173847,7 +173847,12 @@ app4.post("/write", async (c) => {
173847
173847
  return c.json({ error: "Path is not a file" }, 400);
173848
173848
  }
173849
173849
  fs5.writeFileSync(resolvedPath, content, "utf-8");
173850
- return c.json({ success: true, size: Buffer.byteLength(content, "utf-8") });
173850
+ const newStat = fs5.statSync(resolvedPath);
173851
+ return c.json({
173852
+ success: true,
173853
+ size: Buffer.byteLength(content, "utf-8"),
173854
+ mtime: newStat.mtime.toISOString()
173855
+ });
173851
173856
  } catch (err) {
173852
173857
  return c.json({ error: err instanceof Error ? err.message : "Failed to write file" }, 500);
173853
173858
  }