brainjar 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.
package/LICENSE ADDED
@@ -0,0 +1,2 @@
1
+ Proprietary. All rights reserved.
2
+ Copyright (c) 2026 Dietrich Gebert / ponytail.
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # BrainJar
2
+
3
+ > Your code shows what it does. BrainJar remembers why.
4
+
5
+ BrainJar is a memory platform for software projects: it captures your commits, agent sessions,
6
+ and failures automatically, links every fact to its evidence, and gives that memory back to you
7
+ and your AI agents (MCP).
8
+
9
+ The `brainjar` CLI ships here soon. Until then: https://ponytail.dev
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log("BrainJar - the memory platform for software projects.");
3
+ console.log("The CLI ships here soon. Until then: https://ponytail.dev");
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "brainjar",
3
+ "version": "0.0.1",
4
+ "description": "BrainJar - the memory platform for software projects. Your code shows what it does; BrainJar remembers why. CLI coming soon.",
5
+ "bin": { "brainjar": "./bin/brainjar.js" },
6
+ "files": ["bin", "README.md", "LICENSE"],
7
+ "homepage": "https://ponytail.dev",
8
+ "author": "ponytail (https://ponytail.dev)",
9
+ "license": "SEE LICENSE IN LICENSE"
10
+ }