# [[OpenClaw]] ![[OpenClaw.svg]] [site](https://openclaw.ai/) OpenClaw is an [[opensource]] [[Agentic AI]] tool that pairs your choice of [[Large Language Model|LLM]] with [[MCP]] integration to function as an AI assistant. It's different from tools like [[ChatGPT]] and [[Claude.ai]] in that it's beyond chat; it can use those LLMs but is also agentic: it can do things about your conversations. It's different from other [[Agentic AI]] tools like [[Claude Code]] and [[Cursor]] in a few ways: - it's always on - it's autonomous - it can act without you triggering it, using cron jobs - it has a persistent memory - it has several messaging interfaces ([[WhatsApp]], [[Telegram]], [[Discord]]) that you can use to interact with it. ## Usage ### Models and auth profiles You can configure OpenClaw with different models as well as different profiles for the same model. This helps you distinguish between, for example, work and personal use, and route requests accordingly. #### Model status To see the list of currently configured models, you can run this on the terminal: ```bash openclaw models status ``` OR on Discord: ``` /model status ``` #### Switch auth profiles To switch auth profiles while on Discord chat: to the personal auth profile: ``` /model model:Opus@anthropic:personal ``` to the default one: ``` /model model:Opus@anthropic:manual ``` %% ## Excalidraw Data ### Text Elements ### Drawing ```json { "type": "excalidraw", "version": 2, "source": "https://github.com/zsviczian/obsidian-excalidraw-plugin/releases/tag/2.1.4", "elements": [ { "id": "4y8R7iOA", "type": "text", "x": 118.49495565891266, "y": -333.44393157958984, "width": 3.8599853515625, "height": 24, "angle": 0, "strokeColor": "#1e1e1e", "backgroundColor": "transparent", "fillStyle": "solid", "strokeWidth": 2, "strokeStyle": "solid", "roughness": 1, "opacity": 100, "groupIds": [], "frameId": null, "roundness": null, "seed": 967149026, "version": 2, "versionNonce": 939059582, "isDeleted": true, "boundElements": null, "updated": 1713723615080, "link": null, "locked": false, "text": "", "rawText": "", "fontSize": 20, "fontFamily": 4, "textAlign": "left", "verticalAlign": "top", "containerId": null, "originalText": "", "lineHeight": 1.2 } ], "appState": { "theme": "dark", "viewBackgroundColor": "#ffffff", "currentItemStrokeColor": "#1e1e1e", "currentItemBackgroundColor": "transparent", "currentItemFillStyle": "solid", "currentItemStrokeWidth": 2, "currentItemStrokeStyle": "solid", "currentItemRoughness": 1, "currentItemOpacity": 100, "currentItemFontFamily": 4, "currentItemFontSize": 20, "currentItemTextAlign": "left", "currentItemStartArrowhead": null, "currentItemEndArrowhead": "arrow", "scrollX": 583.2388916015625, "scrollY": 573.6323852539062, "zoom": { "value": 1 }, "currentItemRoundness": "round", "gridSize": null, "gridColor": { "Bold": "#C9C9C9FF", "Regular": "#EDEDEDFF" }, "currentStrokeOptions": null, "previousGridSize": null, "frameRendering": { "enabled": true, "clip": true, "name": true, "outline": true } }, "files": {} } ``` %%