Skip to content

jackin config

Terminal window
jackin config <SUBCOMMAND>

Manage global operator configuration. Currently supports global mount management.

Manage global mounts that apply to all (or scoped) agent launches.

Global mounts are best for caches, shared read-only reference material, or team-wide directories that should be available everywhere.

Terminal window
jackin config mount add <NAME> --src <PATH> --dst <PATH> [OPTIONS]

Register a new global mount.

If a global mount resolves to the same container destination as a workspace mount or load-time mount, Jackin raises a conflict error at load time instead of silently overriding one of them.

OptionDescription
--src <PATH>Path on the host machine
--dst <PATH>Path inside the container
--readonlyMake this mount read-only
--scope <PATTERN>Only apply to matching agents (glob pattern)
Terminal window
# Mount Gradle cache for all agents
jackin config mount add gradle-cache \
--src ~/.gradle/caches \
--dst /home/claude/.gradle/caches \
--readonly
# Mount secrets only for chainargos agents
jackin config mount add secrets \
--src ~/.chainargos/secrets \
--dst /secrets \
--readonly \
--scope "chainargos/*"
Terminal window
jackin config mount list

Show all registered global mounts with their source, destination, read-only status, and scope.

Terminal window
jackin config mount remove <NAME> [OPTIONS]

Unregister a global mount.

OptionDescription
--scope <PATTERN>Only remove from this scope (leave other scopes untouched)
Terminal window
jackin config mount remove gradle-cache
jackin config mount remove secrets --scope "chainargos/*"