extensions/cli/src/commands/devbox-entrypoint.md
Context: runloop resumes a devbox by re-running the same entrypoint script, which invokes cn serve --id <agentId> .... Because the entrypoint always replays, the CLI must avoid duplicating state on restart.
serve now calls loadOrCreateSessionById when --id is provided so the same session file is reused instead of generating a new UUID. This keeps chat history intact across suspend/resume.shouldQueueInitialPrompt checks existing history and only queues the initial prompt when there are no non-system messages. This prevents the first prompt from being resent when a suspended devbox restarts.~/.continue/devbox-env and sources it before cn serve, so keys survive suspend/resume. The CLI assumes env is already present.Operational notes:
~/.continue/sessions for the agent id and that follow-up messages append normally without replaying the first prompt.