-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault-flags
More file actions
48 lines (34 loc) · 1.46 KB
/
default-flags
File metadata and controls
48 lines (34 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# default-flags — default command-line flags for agentbox
#
# Flags listed here are prepended to every invocation.
# CLI flags always override these (last-one-wins for scalar flags).
# Lines starting with # and blank lines are ignored.
# Values with spaces are not supported.
# Agent type (options: claude-code, qwen-code, opencode-ai, cursor)
--agent claude-code
# Pass --dangerously-skip-permissions to the agent CLI by default
# --dangerously-skip-permissions
# Drop into a shell instead of launching the agent automatically
# --no-autostart
# Skip automatic devcontainer.json detection
# --no-devcontainer
# Keep the container after the session ends (print reconnect command on exit)
# --keep-container
# Run the container in privileged mode (required for Docker-in-Docker)
# --privileged
# Mount the host docker/podman socket into the container (lighter-weight than --privileged)
# --mount-docker-socket
# Stash uncommitted changes and apply them to the new worktree
# --use-stash
# Skip git worktree creation; mount the current directory directly
# --no-git-worktree
# Print every podman/docker command before running it
# --verbose
# Use docker even when podman is available
# --docker
# Use a custom container image or Dockerfile as the base
# --image my-registry/my-image:tag
# Always mount an extra host path into every container
# --mount ~/notes:/home/agentbox/notes
# Always hide a directory from the agent by mounting an empty volume over it
# --block-folder ./secrets