You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-5Lines changed: 18 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,13 +34,15 @@ Works with Claude Code, Cursor, Windsurf, or any MCP-compatible client. Runs loc
34
34
## Quick Start
35
35
36
36
```bash
37
-
npm install cortex-engine
37
+
npm install cortex-engine@0.6.0
38
38
npx fozikio init my-agent
39
39
cd my-agent
40
-
npx cortex-engine# starts MCP server
40
+
npx fozikio serve# starts MCP server
41
41
```
42
42
43
-
Your agent now has 25 cognitive tools. See the **[Quick Start](https://github.com/Fozikio/cortex-engine/wiki/Quick-Start)** wiki page for the full 5-minute setup.
43
+
Your agent now has 25 cognitive tools. The generated `.mcp.json` is version-pinned and platform-aware (Windows `cmd /c` wrapper handled automatically).
44
+
45
+
See the **[Quick Start](https://github.com/Fozikio/cortex-engine/wiki/Quick-Start)** wiki page for the full 5-minute setup.
44
46
45
47
### Multi-Agent
46
48
@@ -56,6 +58,18 @@ Each agent gets isolated memory via namespaces. See the **[Architecture](https:/
56
58
57
59
The fastest path: open an AI agent in an empty directory and say *"set up a cortex workspace."* The agent runs `npx fozikio init`, reads the generated files, and is immediately productive. See the **[Installation](https://github.com/Fozikio/cortex-engine/wiki/Installation)** wiki page for the full guide.
58
60
61
+
### CLI
62
+
63
+
```bash
64
+
npx fozikio serve # start MCP server
65
+
npx fozikio health # memory health report
66
+
npx fozikio vitals # behavioral vitals and prediction error
67
+
npx fozikio wander # walk through the memory graph
68
+
npx fozikio wander --from "auth"# seeded walk from a topic
69
+
npx fozikio maintain fix # scan and repair data issues
70
+
npx fozikio report # weekly quality report
71
+
```
72
+
59
73
### Development
60
74
61
75
```bash
@@ -98,8 +112,7 @@ Skills are invocable workflows that agents can use via `/skill-name`.
98
112
99
113
| Skill | When to Use | What It Provides |
100
114
|-------|-------------|-----------------|
101
-
|`cortex-query`| Before evaluation, review, design, or creation work | Best practices for querying cortex — specificity, keyword mode, neighbor exploration, anti-patterns |
102
-
|`cortex-review`| When reviewing code, designs, or proposals | A structured review workflow that grounds feedback in cortex memory, with a standard output format |
115
+
|`cortex-memory`| Query, record, and review work | Full memory workflow — query/observe patterns, belief tracking, memory-grounded code review, session patterns |
0 commit comments