Skip to content

document autoApprove config #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,25 @@ goose run -i ./examples/hello_world.md -s

Prompt as in `parallel.md` but add a sentence 'use container-use mcp'

### Auto Approve

The standard JSON configuration schema allows you to set individual tools to be auto-approved. Since container-use provides safe isolation, you probably want actions to be auto-approved so the agents can do their work!

Here's a sample `autoApprove` block for the standard JSON configuration:

```json
"autoApprove": [
"environment_open",
"environment_update",
"environment_checkpoint",
"environment_run_cmd",
"environment_file_read",
"environment_file_write",
"environment_file_list",
"environment_file_delete"
]
```

## Watch your agents work

Your agents will automatically commit to a container-use remote on your local filesystem. You can watch the progress of your agents in real time by running:
Expand Down