Select the types of activity you want to include in your feed.
Add --keep-alive option to start command
Add --keep-alive/-k CLI flag and keepAlive parameter to start. Wire the keepAlive boolean through to the sandbox start RPC so the sandbox can ignore the inactivity timeout when requested.
···8181 "--repo, -r <repo>",
8282 "the repository to clone into the sandbox (e.g., github:user/repo, tangled:user/repo, or a Git URL)",
8383 )
8484+ .option(
8585+ "--keep-alive, -k",
8686+ "keep the sandbox alive, ignoring inactivity timeout",
8787+ )
8488 .description("start the given sandbox")
8589 .action(start);
8690