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 +2 -0
- package/README.md +9 -0
- package/bin/brainjar.js +3 -0
- package/package.json +10 -0
package/LICENSE
ADDED
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
|
package/bin/brainjar.js
ADDED
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
|
+
}
|