amalfa 1.0.7 → 1.0.8

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 (3) hide show
  1. package/README.md +6 -0
  2. package/package.json +1 -1
  3. package/src/cli.ts +1 -1
package/README.md CHANGED
@@ -106,6 +106,12 @@ for cluster in clusters:
106
106
  bun install -g amalfa
107
107
  ```
108
108
 
109
+ **Why Bun?**
110
+ - ⚡ **Fast startup** - Critical for stdio-based MCP servers that spawn on every request
111
+ - 🔄 **Built-in daemon management** - Runs background processes for file watching and vector embeddings
112
+ - 📦 **Native TypeScript** - No compilation step, direct execution from source
113
+ - 🎯 **SQLite performance** - Optimized native bindings for database operations
114
+
109
115
  **From source** (for development):
110
116
  ```bash
111
117
  git clone https://github.com/pjsvis/amalfa.git
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amalfa",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
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.7";
6
+ const VERSION = "1.0.8";
7
7
 
8
8
  // Database path loaded from config (lazy loaded per command)
9
9
  let DB_PATH: string | null = null;