How to back up and restore DeepSeek Reasonix config and sessions

Reasonix stores global state in ~/.reasonix/, project state inside the project, and the runtime in two more places. Knowing which directory holds what makes backup scripts trivial. The trickiest file is .env — it is excluded from MCP child environments but you still want it under version control, just redacted. A backup script #!/usr/bin/env bash... » read more

How to use Reasonix slash commands for long coding sessions

A Reasonix session that runs for two hours will eventually forget what file you were in, write something into the wrong directory, or charge you for repeating the same prefix. The slash commands are the controls that keep the cache warm and the diff readable. Most of them are local — they cost nothing and... » read more