@ace3-memory/ace 3.0.51 → 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.
- package/README.md +17 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
[](https://ace3-ai.com/license)
|
|
8
8
|
[](https://www.python.org/downloads/)
|
|
9
|
-
[](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
|
-
#
|
|
59
|
-
ace
|
|
58
|
+
# Check server is running
|
|
59
|
+
ace status
|
|
60
60
|
|
|
61
|
-
#
|
|
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
|
---
|