openfused 0.1.0 → 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/dist/cli.js +2 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -66,7 +66,8 @@ program
|
|
|
66
66
|
}
|
|
67
67
|
else if (opts.append) {
|
|
68
68
|
const existing = await store.readContext();
|
|
69
|
-
|
|
69
|
+
const text = opts.append.replace(/\\n/g, "\n");
|
|
70
|
+
await store.writeContext(existing + "\n" + text);
|
|
70
71
|
console.log("Context appended.");
|
|
71
72
|
}
|
|
72
73
|
else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openfused",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Persistent, shareable, portable context for AI agents. Decentralized mesh via files.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
38
38
|
"type": "git",
|
|
39
|
-
"url": "https://github.com/wearethecompute/openfused"
|
|
39
|
+
"url": "git+https://github.com/wearethecompute/openfused.git"
|
|
40
40
|
},
|
|
41
41
|
"homepage": "https://github.com/wearethecompute/openfused",
|
|
42
42
|
"keywords": [
|