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
**Step 2: (Optional) Configure an embedding provider**
51
-
```bash
52
-
simplo config
53
-
# Edit the file to set LLM_PROVIDER, LLM_BASE_URL, etc.
54
-
# Default is LLM_PROVIDER=ollama — make sure Ollama is running.
55
-
# Set LLM_PROVIDER=none to skip embeddings (structural tools still work).
56
-
```
57
-
58
-
**Step 3: Start from any project directory**
59
-
```bash
60
-
cd~/projects/my-app
61
-
simplo start
62
-
```
63
-
64
-
**Step 4: Open the dashboard and configure your IDE**
65
-
```bash
66
-
open http://localhost:3001 # Dashboard
67
-
simplo setup cursor # Generate .cursor/mcp.json
68
-
# Also supports: vscode, claude-desktop, claude-code
69
-
```
70
-
71
-
The CLI mounts your home directory read-only and calculates the workspace path automatically. Switch projects at any time from the dashboard — no container restart required.
72
-
73
-
### Option B: Docker CLI
74
-
75
-
If you prefer raw Docker commands, choose an embedding provider below.
38
+
Context-Simplo runs in Docker. Choose an embedding provider below.
76
39
77
40
> **Important**: Context-Simplo does NOT bundle AI models. Provide an external embedding service for semantic search, or run with `LLM_PROVIDER=none` for structural tools only.
78
41
@@ -262,12 +225,6 @@ Context-Simplo supports two workspace modes:
262
225
263
226
Mount your home directory at `/host`. The container can browse any subdirectory, and you can switch projects at runtime from the dashboard without restarting.
264
227
265
-
```bash
266
-
# simplo CLI does this automatically:
267
-
simplo start # indexes current directory
268
-
simplo start ~/other-app # indexes a specific directory
269
-
```
270
-
271
228
To switch workspaces at runtime, open the dashboard Repositories page and click **Change** in the workspace bar. Browse to a new directory and click **Switch Workspace**. Re-indexing happens automatically in the background.
272
229
273
230
### Legacy mode
@@ -292,23 +249,6 @@ When adding repositories via the dashboard or MCP tools, use **container paths**
292
249
293
250
The dashboard **Browse** tab shows the container filesystem — click to select.
294
251
295
-
## CLI Reference
296
-
297
-
The `simplo` CLI manages the Docker container lifecycle. Config is stored in `~/.config/context-simplo/config`.
298
-
299
-
| Command | Description |
300
-
|---------|-------------|
301
-
|`simplo start [path]`| Start container (workspace defaults to current dir) |
302
-
|`simplo stop`| Stop and remove container |
303
-
|`simplo restart`| Restart container |
304
-
|`simplo status`| Show container status and current workspace |
Context-Simplo tools are most effective when your AI agent uses them automatically instead of falling back to file-by-file search. Add a Cursor rule that instructs the agent to prefer Context-Simplo for code intelligence tasks — reducing tool call chains and lowering token costs.
@@ -416,7 +356,6 @@ Context-Simplo runs on all major platforms via Docker:
0 commit comments