amalfa 1.0.4 → 1.0.6
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 +7 -8
- package/package.json +1 -4
- package/src/cli.ts +1 -1
package/README.md
CHANGED
|
@@ -140,9 +140,9 @@ bun install
|
|
|
140
140
|
|
|
141
141
|
5. **Restart Claude Desktop**
|
|
142
142
|
|
|
143
|
-
**Full setup guide:**
|
|
143
|
+
**Full setup guide:** See repository docs for detailed MCP setup
|
|
144
144
|
|
|
145
|
-
**Package
|
|
145
|
+
**Package:** Available at https://www.npmjs.com/package/amalfa
|
|
146
146
|
|
|
147
147
|
---
|
|
148
148
|
|
|
@@ -313,15 +313,14 @@ Amalfa evolved from patterns discovered in the [PolyVis](https://github.com/pjsv
|
|
|
313
313
|
|
|
314
314
|
## Roadmap
|
|
315
315
|
|
|
316
|
-
### v1.0 (
|
|
316
|
+
### v1.0 (Released)
|
|
317
317
|
|
|
318
|
-
- ✅
|
|
318
|
+
- ✅ Published to npm
|
|
319
319
|
- ✅ Core vision documented
|
|
320
320
|
- ✅ Auto-augmentation design complete
|
|
321
|
-
-
|
|
322
|
-
-
|
|
323
|
-
-
|
|
324
|
-
- [ ] Initial release
|
|
321
|
+
- ✅ MCP server functional
|
|
322
|
+
- ✅ Basic semantic search working
|
|
323
|
+
- ✅ Initial release
|
|
325
324
|
|
|
326
325
|
### v1.1+ (Future)
|
|
327
326
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amalfa",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Local-first knowledge graph engine for AI agents. Transforms markdown into searchable memory with MCP protocol.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/pjsvis/amalfa#readme",
|
|
@@ -54,9 +54,6 @@
|
|
|
54
54
|
"check": "biome check .",
|
|
55
55
|
"format": "biome format --write ."
|
|
56
56
|
},
|
|
57
|
-
"peerDependencies": {
|
|
58
|
-
"typescript": "5.9.3"
|
|
59
|
-
},
|
|
60
57
|
"dependencies": {
|
|
61
58
|
"@modelcontextprotocol/sdk": "1.25.0",
|
|
62
59
|
"fastembed": "2.0.0",
|
package/src/cli.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { existsSync, statSync } from "node:fs";
|
|
|
3
3
|
import { join } from "node:path";
|
|
4
4
|
import { spawn } from "node:child_process";
|
|
5
5
|
|
|
6
|
-
const VERSION = "1.0.
|
|
6
|
+
const VERSION = "1.0.6";
|
|
7
7
|
|
|
8
8
|
// Database path loaded from config (lazy loaded per command)
|
|
9
9
|
let DB_PATH: string | null = null;
|