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
Fix README and CLAUDE.md: use actual CLI commands, remove embedding refs
- cas remember/search/task/rules/setup don't exist as CLI commands
(these are MCP-only operations via cas serve)
- Updated Quick Start, CLI section, Cloud Sync to use real commands
- Removed remaining semantic search references
**Store Trait** (`cas-cli/src/store/mod.rs`): All storage ops go through trait abstractions. SqliteStore is primary.
64
64
65
-
**Rule Auto-Promotion**: Use `mcp__cas__rule action=helpful id=<id>`(agents) or `cas rules helpful <id>` (humans) to promote Draft/Stale rules to Proven, auto-syncs to `.claude/rules/`.
65
+
**Rule Auto-Promotion**: Use `mcp__cas__rule action=helpful id=<id>` to promote Draft/Stale rules to Proven, auto-syncs to `.claude/rules/`.
66
66
67
67
**MCP Server**: `cas serve` exposes all functionality as MCP tools for Claude Code integration.
Copy file name to clipboardExpand all lines: README.md
+13-26Lines changed: 13 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@
25
25
26
26
Your AI coding agent forgets everything when the session ends. CAS fixes that.
27
27
28
-
CAS is a local-first context system that gives AI agents persistent memory across sessions. It runs as an [MCP server](https://modelcontextprotocol.io/) that integrates with Claude Code, exposing 50+ tools for memory, task tracking, rules, skills, and multi-agent coordination — all backed by SQLite and semantic search.
28
+
CAS is a local-first context system that gives AI agents persistent memory across sessions. It runs as an [MCP server](https://modelcontextprotocol.io/) that integrates with Claude Code, exposing 50+ tools for memory, task tracking, rules, skills, and multi-agent coordination — all backed by SQLite and full-text search.
29
29
30
30
**Key idea:** Agents that remember what they learned yesterday write better code today.
31
31
@@ -49,10 +49,8 @@ curl -fsSL https://cas.dev/install.sh | sh
49
49
# Initialize in your project
50
50
cas init
51
51
52
-
# Add CAS as an MCP server to Claude Code
53
-
cas setup claude-code
54
-
55
-
# Start using CAS — your agent now has persistent memory
52
+
# Start the MCP server (or add to Claude Code config below)
53
+
cas serve
56
54
```
57
55
58
56
That's it. Your agent can now remember things, track tasks, and search past context.
0 commit comments