@ace3-memory/ace 3.0.50 → 3.0.52

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 +17 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  [![License: Proprietary](https://img.shields.io/badge/License-Proprietary-red.svg)](https://ace3-ai.com/license)
8
8
  [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
9
- [![Version 3.0.44](https://img.shields.io/badge/version-3.0.44-green.svg)](https://github.com/AdyBrooks46/AutonomousContextEngine/releases)
9
+ [![Version 3.0.51](https://img.shields.io/badge/version-3.0.51-green.svg)](https://github.com/AdyBrooks46/AutonomousContextEngine/releases)
10
10
 
11
11
  ---
12
12
 
@@ -55,17 +55,27 @@ ace start # Server runs on localhost:7777
55
55
  ### 3. Use
56
56
 
57
57
  ```bash
58
- # Remember something
59
- ace remember --key "auth-decision" --value "We use JWT with 30d expiry"
58
+ # Check server is running
59
+ ace status
60
60
 
61
- # Recall context
62
- ace recall "why did we choose postgres?"
63
-
64
- # REST API (works with any AI tool)
61
+ # Store a decision via REST API
65
62
  curl -X POST http://localhost:7777/api/v1/my-project/decisions \
66
63
  -H "Authorization: Bearer $ACE_JWT_TOKEN" \
67
64
  -H "Content-Type: application/json" \
68
65
  -d '{"decision": "Use PostgreSQL", "rationale": "Vector extensions + ACID"}'
66
+
67
+ # Or let your AI use ACE tools directly via MCP
68
+ # (Claude Code, Cursor, etc. call ace_remember, ace_recall, ace_search automatically)
69
+ ```
70
+
71
+ ### 4. Update
72
+
73
+ ```bash
74
+ # Update ACE to the latest version
75
+ npm install -g @ace3-memory/ace
76
+
77
+ # Or check for updates via CLI
78
+ ace update
69
79
  ```
70
80
 
71
81
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ace3-memory/ace",
3
- "version": "3.0.50",
3
+ "version": "3.0.52",
4
4
  "description": "Your Logbook for AI - persistent memory for ChatGPT, Claude, Gemini, and more",
5
5
  "main": "index.js",
6
6
  "bin": {