Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions content/manuals/ai/sandboxes/customize/kit-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,6 @@ for the complete order.
Agent settings mechanisms differ. If an agent doesn't support an additional
config file, launch option, or environment variable for the setting, kits can't
replace the sandbox-managed user settings before the agent launches.
`setup.startup` doesn't gate the agent entrypoint, so don't use it for settings
the agent must read during initialization.

## Fork an existing agent

Expand Down
2 changes: 1 addition & 1 deletion content/manuals/ai/sandboxes/customize/kit-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ Runs at every sandbox start. String array, not interpreted by a shell.
| ------------- | -------- | ----------------------------------- |
| `command` | — | Command and args as a string array. |
| `user` | `"1000"` | User to run as. `"1000"` = agent. |
| `background` | `false` | Block later startup commands until this command finishes. Set to `true` to let later commands run without waiting. |
| `background` | `false` | Run this command in the background. When `false`, the startup dispatcher waits for this command to finish before running the next startup command. When `true`, the dispatcher continues immediately. Neither setting delays the agent entrypoint. |
| `description` | — | Human-readable description. |

Startup commands are non-interactive. They run before the agent
Expand Down
Loading