Skip to content

Commit 2a3d9e5

Browse files
committed
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
1 parent 655bd95 commit 2a3d9e5

2 files changed

Lines changed: 20 additions & 33 deletions

File tree

CLAUDE.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ mcp__cas__memory action=remember - Store learnings and context
3232
mcp__cas__search action=search - Find relevant context (filter with doc_type: entry/task/rule/skill)
3333
```
3434

35-
**Human CLI equivalents** (for terminal use):
35+
**Human CLI:**
3636
```bash
37-
cas task create # Create tasks
38-
cas task notes # Add progress notes
39-
cas task close # Complete tasks
40-
cas remember # Store learnings
41-
cas search # Search context
37+
cas init # Initialize CAS in a project
38+
cas serve # Start MCP server
39+
cas config list # View configuration
40+
cas doctor # Run diagnostics
41+
cas update # Self-update
4242
```
4343

4444
## Project Structure
@@ -62,7 +62,7 @@ crates/ # Workspace crates (cas-core, cas-store, cas-search, etc.)
6262

6363
**Store Trait** (`cas-cli/src/store/mod.rs`): All storage ops go through trait abstractions. SqliteStore is primary.
6464

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/`.
6666

6767
**MCP Server**: `cas serve` exposes all functionality as MCP tools for Claude Code integration.
6868

README.md

Lines changed: 13 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
Your AI coding agent forgets everything when the session ends. CAS fixes that.
2727

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.
2929

3030
**Key idea:** Agents that remember what they learned yesterday write better code today.
3131

@@ -49,10 +49,8 @@ curl -fsSL https://cas.dev/install.sh | sh
4949
# Initialize in your project
5050
cas init
5151

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
5654
```
5755

5856
That's it. Your agent can now remember things, track tasks, and search past context.
@@ -107,30 +105,21 @@ mcp__cas__search action=search query="error handling patterns"
107105
mcp__cas__rule action=create content="Always validate input at API boundaries"
108106
```
109107

110-
### CLI (for humans)
108+
### CLI
111109

112110
```bash
113-
# Store a memory
114-
cas remember "PostgreSQL with JSONB columns for flexible schema"
115-
116-
# Search across all context
117-
cas search "database patterns"
118-
119-
# Manage tasks
120-
cas task create "Deploy to production"
121-
cas task list
122-
123-
# View and promote rules
124-
cas rules list
125-
cas rules helpful rule-001
126-
127-
# Start the MCP server
128-
cas serve
111+
cas init # Initialize CAS in your project
112+
cas serve # Start the MCP server
113+
cas config list # View all configuration options
114+
cas doctor # Run diagnostics
115+
cas update # Self-update to latest version
116+
cas login # Log in to CAS Cloud (optional)
117+
cas cloud sync # Sync data to/from cloud (optional)
129118
```
130119

131120
### Claude Code Integration
132121

133-
Add to your Claude Code MCP config:
122+
Add to your Claude Code MCP config (`.claude/settings.json` or project `.mcp.json`):
134123

135124
```json
136125
{
@@ -143,8 +132,6 @@ Add to your Claude Code MCP config:
143132
}
144133
```
145134

146-
Or run `cas setup claude-code` to configure automatically.
147-
148135
### Factory Mode
149136

150137
Scale beyond a single agent. Factory mode coordinates multiple Claude Code instances working in parallel:
@@ -170,7 +157,7 @@ CAS works fully offline. Optionally sync your context across devices:
170157

171158
```bash
172159
cas login
173-
cas sync
160+
cas cloud sync
174161
```
175162

176163
Cloud sync is not required — all core features work locally with SQLite.

0 commit comments

Comments
 (0)