superbee 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/README.md +15 -0
- package/package.json +10 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# superbee
|
|
2
|
+
|
|
3
|
+
**Shared agent memory.** A versioned markdown knowledge bundle that lives in your repo, plus a CLI that humans and AI agents both read and write.
|
|
4
|
+
|
|
5
|
+
Bees build comb one cell at a time, and the comb is a shared structure the whole colony reads from and adds to. That is what this is: agents coordinate by leaving durable marks in a shared store rather than by messaging each other.
|
|
6
|
+
|
|
7
|
+
- Local-first and git-backed. Your knowledge is plain markdown in your repository.
|
|
8
|
+
- Versioned with compare-and-swap writes, so concurrent agents cannot clobber each other.
|
|
9
|
+
- Context notes, documents, cross-links, tasks, and artifacts in one bundle.
|
|
10
|
+
|
|
11
|
+
> **Status: placeholder.** This package name is reserved for an imminent open-source release. The first working version is on its way. Watch https://getsuperbee.com
|
|
12
|
+
|
|
13
|
+
## License
|
|
14
|
+
|
|
15
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "superbee",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Shared agent memory. A versioned markdown knowledge bundle that lives in your repo, plus a CLI for humans and agents.",
|
|
5
|
+
"keywords": ["agents", "agent-memory", "context", "knowledge-base", "markdown", "cli", "coordination"],
|
|
6
|
+
"homepage": "https://getsuperbee.com",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": "Holaxis",
|
|
9
|
+
"files": ["README.md"]
|
|
10
|
+
}
|