Stop the current Autodock staging environment
Stops the current Autodock staging environment and updates state file.
/plugin marketplace add mikesol/autodock-plugins/plugin install autodock@autodock-pluginsStop the current Autodock staging environment. The environment can be restarted later with /autodock up.
Check for .autodock-state in the project root:
cat .autodock-state 2>/dev/null || echo "NO_STATE"
If no state file exists:
mcp__autodock__env_list to list all environmentsCall mcp__autodock__env_stop with the environmentId from state.
Update .autodock-state to reflect stopped status (keep the file for potential restart):
{
"environmentId": "<uuid>",
"environmentName": "<name>",
"slug": "<slug>",
"status": "stopped",
"stoppedAt": "<timestamp>"
}
Environment [name] has been stopped.
Run `/autodock up` to restart it.
Run `/autodock up --fresh` to create a new environment instead.
.autodock-state and report