amalfa 1.0.15 → 1.0.16
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 +34 -19
- package/package.json +1 -1
- package/src/cli.ts +1 -1
package/README.md
CHANGED
|
@@ -229,34 +229,47 @@ Agents generate knowledge through structured reflection. Amalfa provides semanti
|
|
|
229
229
|
|
|
230
230
|
## Implementation Status
|
|
231
231
|
|
|
232
|
-
###
|
|
232
|
+
### ✅ Core Functionality (v1.0 - Released)
|
|
233
233
|
|
|
234
|
-
-
|
|
235
|
-
-
|
|
236
|
-
-
|
|
237
|
-
-
|
|
238
|
-
-
|
|
234
|
+
- ✅ **MCP Server** - stdio transport, tools, resources
|
|
235
|
+
- ✅ **Vector Search** - FastEmbed embeddings (384-dim), semantic search
|
|
236
|
+
- ✅ **Database** - SQLite with hollow nodes, FAFCAS protocol
|
|
237
|
+
- ✅ **Ingestion Pipeline** - Markdown → nodes + embeddings
|
|
238
|
+
- ✅ **CLI** - init, serve, stats, doctor, servers, daemon, vector
|
|
239
|
+
- ✅ **Service Management** - Vector daemon, file watcher, lifecycle
|
|
240
|
+
- ✅ **Pre-flight Validation** - Check markdown before ingestion
|
|
239
241
|
|
|
240
|
-
### Phase
|
|
242
|
+
### 🚧 Phase 1: Auto-Augmentation (In Progress)
|
|
243
|
+
|
|
244
|
+
- [ ] Entity extraction from markdown
|
|
245
|
+
- [ ] Auto-linking (wiki-style [[links]])
|
|
246
|
+
- [ ] Tag extraction and indexing
|
|
247
|
+
- [ ] Git-based auditing for augmentations
|
|
248
|
+
- [ ] Automated file watcher updates
|
|
249
|
+
|
|
250
|
+
### 📋 Phase 2: Latent Space Organization (Planned)
|
|
241
251
|
|
|
242
252
|
- [ ] Document clustering (HDBSCAN)
|
|
243
253
|
- [ ] Cluster label generation
|
|
244
254
|
- [ ] Confidence-based tagging
|
|
245
255
|
- [ ] Topic modeling (BERTopic)
|
|
256
|
+
- [ ] Self-organizing taxonomy
|
|
246
257
|
|
|
247
|
-
### Phase 3:
|
|
258
|
+
### 🔗 Phase 3: Graph Intelligence (Planned)
|
|
248
259
|
|
|
249
|
-
- [ ] K-nearest neighbor
|
|
260
|
+
- [ ] K-nearest neighbor recommendations
|
|
250
261
|
- [ ] Suggested reading lists
|
|
251
|
-
- [ ] Temporal
|
|
262
|
+
- [ ] Temporal sequence tracking
|
|
252
263
|
- [ ] Backlink maintenance
|
|
264
|
+
- [ ] Graph traversal tools
|
|
253
265
|
|
|
254
|
-
### Phase 4: Learning from
|
|
266
|
+
### 🎯 Phase 4: Learning from Feedback (Future)
|
|
255
267
|
|
|
256
|
-
- [ ] Track human edits
|
|
268
|
+
- [ ] Track human edits to augmentations
|
|
257
269
|
- [ ] Adjust confidence thresholds
|
|
258
|
-
- [ ] Improve extraction
|
|
259
|
-
- [ ] Weekly digest
|
|
270
|
+
- [ ] Improve extraction heuristics
|
|
271
|
+
- [ ] Weekly knowledge digest
|
|
272
|
+
- [ ] Multi-agent coordination
|
|
260
273
|
|
|
261
274
|
---
|
|
262
275
|
|
|
@@ -332,12 +345,14 @@ bun run format # Biome format
|
|
|
332
345
|
|
|
333
346
|
## Contributing
|
|
334
347
|
|
|
335
|
-
Amalfa is in
|
|
348
|
+
Amalfa is in active development. Contributions are welcome!
|
|
336
349
|
|
|
337
|
-
**
|
|
338
|
-
- ⭐ Star the repo if
|
|
339
|
-
-
|
|
340
|
-
-
|
|
350
|
+
**How to contribute:**
|
|
351
|
+
- ⭐ Star the repo if you find it useful
|
|
352
|
+
- 🐛 Report bugs or request features via issues
|
|
353
|
+
- 📝 Improve documentation
|
|
354
|
+
- 🚀 Submit PRs for new features or fixes
|
|
355
|
+
- 💬 Join discussions about the vision and roadmap
|
|
341
356
|
|
|
342
357
|
---
|
|
343
358
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amalfa",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
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",
|
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.16";
|
|
7
7
|
|
|
8
8
|
// Database path loaded from config (lazy loaded per command)
|
|
9
9
|
let DB_PATH: string | null = null;
|