bikky 0.4.4 → 0.4.5
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 +2 -2
- package/dist/daemon/qdrant.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
<p align="center"><b>Persistent memory for AI coding agents — built for teams and multi-agent engineering workflows.</b></p>
|
|
4
4
|
|
|
5
|
+
bikky provides long-term memory for MCP-capable AI coding agents. It exposes memory tools over the Model Context Protocol (MCP), stores facts in Qdrant, and can run a local daemon that extracts durable facts from supported transcript sources. Teams can share memory across tools, repos, and engineers without treating chat history or closed PRs as the source of truth.
|
|
6
|
+
|
|
5
7
|
<p align="center">
|
|
6
8
|
<img src="https://raw.githubusercontent.com/bikky-dev/bikky/main/docs/diagrams/team-memory.svg" alt="Memory — facts flow from individual sessions into a self-curating knowledge store shared across your team" width="720" />
|
|
7
9
|
</p>
|
|
8
10
|
|
|
9
11
|
<p align="center"><i>Selected knowledge flows from supported sessions into a store that curates itself over time — deduplicating, distilling, and decaying stale facts — so future sessions can start with more context.</i></p>
|
|
10
12
|
|
|
11
|
-
bikky provides long-term memory for MCP-capable AI coding agents. It exposes memory tools over the Model Context Protocol (MCP), stores facts in Qdrant, and can run a local daemon that extracts durable facts from supported transcript sources. Teams can share memory across tools, repos, and engineers without treating chat history or closed PRs as the source of truth.
|
|
12
|
-
|
|
13
13
|
### Who it's for
|
|
14
14
|
|
|
15
15
|
- 👥 **Teams & software factories** — What one engineer's agent learns today can be recalled by other agents on the team tomorrow. Shared memory makes institutional knowledge queryable, helps onboarding, and reduces convention drift and repeated rediscovery.
|
package/dist/daemon/qdrant.js
CHANGED
|
@@ -96,7 +96,7 @@ const routingInputForFact = (fact, normalizedContent, normalizedEntities, extraM
|
|
|
96
96
|
content: normalizedContent,
|
|
97
97
|
entities: normalizedEntities,
|
|
98
98
|
metadata,
|
|
99
|
-
extraContent: [fact.
|
|
99
|
+
extraContent: [fact.relation],
|
|
100
100
|
});
|
|
101
101
|
};
|
|
102
102
|
// ---------------------------------------------------------------------------
|