memgram 0.0.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 (3) hide show
  1. package/README.md +18 -0
  2. package/index.js +13 -0
  3. package/package.json +28 -0
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # memgram
2
+
3
+ This npm name is **reserved for the v2.0 release of [Engram](https://github.com/HBarefoot/engram)** — persistent memory for AI agents. SQLite for agent state.
4
+
5
+ The current published package is [`@hbarefoot/engram`](https://www.npmjs.com/package/@hbarefoot/engram). When Engram v2.0 ships, this name will become the canonical install:
6
+
7
+ ```bash
8
+ # Current (v1.x)
9
+ npm install -g @hbarefoot/engram
10
+
11
+ # Coming soon (v2.0+)
12
+ npm install -g memgram
13
+ ```
14
+
15
+ Until then, this `0.0.1` placeholder exists only to reserve the name.
16
+
17
+ - **Project home:** https://github.com/HBarefoot/engram
18
+ - **Current npm package:** https://www.npmjs.com/package/@hbarefoot/engram
package/index.js ADDED
@@ -0,0 +1,13 @@
1
+ // memgram@0.0.1 — reserved for the v2.0 release of Engram.
2
+ // Currently install @hbarefoot/engram for the real package.
3
+ // https://github.com/HBarefoot/engram
4
+
5
+ const NOTICE = '[memgram] This name is reserved for Engram v2.0. Install `@hbarefoot/engram` for the current release. See https://github.com/HBarefoot/engram';
6
+
7
+ console.warn(NOTICE);
8
+
9
+ module.exports = {
10
+ notice: NOTICE,
11
+ redirectTo: '@hbarefoot/engram',
12
+ homepage: 'https://github.com/HBarefoot/engram'
13
+ };
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "memgram",
3
+ "version": "0.0.1",
4
+ "description": "Reserved for the v2.0 release of Engram — persistent memory for AI agents. Currently published as @hbarefoot/engram.",
5
+ "main": "index.js",
6
+ "files": [
7
+ "index.js",
8
+ "README.md"
9
+ ],
10
+ "keywords": [
11
+ "engram",
12
+ "memory",
13
+ "ai-agents",
14
+ "ai-memory",
15
+ "mcp",
16
+ "agent-memory"
17
+ ],
18
+ "license": "MIT",
19
+ "author": "Henry Barefoot",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/HBarefoot/engram.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/HBarefoot/engram/issues"
26
+ },
27
+ "homepage": "https://github.com/HBarefoot/engram#readme"
28
+ }