vektor-slipstream 1.3.0 → 1.3.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/cerebellum.js +2 -1
  2. package/package.json +1 -1
package/cerebellum.js CHANGED
@@ -120,7 +120,8 @@ async function checkWrite({ content, filePath, memory } = {}) {
120
120
  );
121
121
 
122
122
  if (!errorPatterns || errorPatterns.length === 0) {
123
- return { warnings: [], shouldProceed: true };
123
+ _cacheSet(key, []); // cache the empty result too — prevents repeat Vektor calls
124
+ return { warnings: [], shouldProceed: true, cached: false };
124
125
  }
125
126
 
126
127
  for (const pattern of errorPatterns) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vektor-slipstream",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Hardware-accelerated persistent memory for AI agents. Local-first, zero cloud dependency, $0 embedding cost.",
5
5
  "main": "slipstream-core.js",
6
6
  "bin": {