pi-weave 0.1.15 → 0.1.16

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": "pi-weave",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "An agent-native knowledge workspace for your life and your code. Smart notepad + repository exploration, readable by humans and agents alike.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -53,8 +53,6 @@ export interface WorkspaceSnapshot {
53
53
  * caller mutating it would corrupt the next build.
54
54
  */
55
55
  notes: readonly Note[];
56
- /** Exactly the HTML artifacts represented by the graph. */
57
- artifacts: readonly HtmlArtifact[];
58
56
  }
59
57
 
60
58
  /** Cumulative counters, from construction. Callers take deltas. */
@@ -408,7 +406,6 @@ export class WorkspaceCache {
408
406
  const snapshot: WorkspaceSnapshot = {
409
407
  model: buildGraph(input),
410
408
  notes: Object.freeze(kept),
411
- artifacts: Object.freeze(input.artifacts ?? []),
412
409
  };
413
410
  this.lastSnapshot = snapshot;
414
411
  return snapshot;