clawvault 1.3.0 → 1.3.1

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 +12 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -4,6 +4,18 @@
4
4
 
5
5
  Structured memory system for AI agents. Store, search, and link memories across sessions.
6
6
 
7
+ > **Built for [OpenClaw](https://openclaw.ai)** — the AI agent framework. Works standalone too.
8
+
9
+ ## Install for OpenClaw Agents
10
+
11
+ ```bash
12
+ # Install the skill (recommended for OpenClaw agents)
13
+ clawhub install clawvault
14
+
15
+ # Or install the CLI globally
16
+ npm install -g clawvault
17
+ ```
18
+
7
19
  ## Requirements
8
20
 
9
21
  - **Node.js 18+**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "clawvault",
3
- "version": "1.3.0",
4
- "description": "🐘 An elephant never forgets. Structured memory system for AI agents with Obsidian-compatible markdown and embedded semantic search.",
3
+ "version": "1.3.1",
4
+ "description": "🐘 An elephant never forgets. Structured memory for OpenClaw agents. Context death resilience, Obsidian-compatible markdown, local semantic search.",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
7
7
  "module": "dist/index.js",
@@ -30,6 +30,7 @@
30
30
  "prepublishOnly": "npm run build"
31
31
  },
32
32
  "keywords": [
33
+ "openclaw",
33
34
  "ai",
34
35
  "agent",
35
36
  "memory",
@@ -37,9 +38,8 @@
37
38
  "obsidian",
38
39
  "markdown",
39
40
  "semantic-search",
40
- "knowledge-base",
41
- "llm",
42
- "assistant"
41
+ "context-death",
42
+ "llm"
43
43
  ],
44
44
  "author": "Versatly",
45
45
  "license": "MIT",