amalfa 0.0.0-reserved

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 (2) hide show
  1. package/README.md +26 -0
  2. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # AMALFA
2
+
3
+ **A Memory Layer For Agents**
4
+
5
+ 🚧 **Coming Soon** 🚧
6
+
7
+ AMALFA is an MCP (Model Context Protocol) server that gives AI agents access to your project's knowledge graph.
8
+
9
+ ## Planned Features
10
+
11
+ - 🔍 Vector search over markdown documentation
12
+ - 📊 Graph traversal (relationships between docs)
13
+ - 🧠 Works with Claude Desktop, Cursor, Windsurf
14
+ - ⚡ Built with Bun + SQLite + FastEmbed
15
+ - 🔒 Local-first, privacy-focused
16
+
17
+ ## Status
18
+
19
+ Currently in development. Watch this space!
20
+
21
+ **GitHub:** [Coming Soon]
22
+ **Author:** @polyvis
23
+
24
+ ---
25
+
26
+ _This is a placeholder package to reserve the name. v1.0.0 coming soon._
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "amalfa",
3
+ "version": "0.0.0-reserved",
4
+ "description": "A Memory Layer For Agents - MCP server for knowledge graphs (Coming Soon)",
5
+ "author": "Peter John Smith <729613+pjsvis@users.noreply.github.com>",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "mcp",
9
+ "model-context-protocol",
10
+ "knowledge-graph",
11
+ "ai-agents",
12
+ "vector-search",
13
+ "sqlite",
14
+ "embeddings",
15
+ "coming-soon"
16
+ ]
17
+ }