jackin config
Synopsis
Section titled “Synopsis”jackin config <SUBCOMMAND>Manage global operator configuration. Currently supports global mount management.
config mount
Section titled “config mount”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.
config mount add
Section titled “config mount add”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.
| Option | Description |
|---|---|
--src <PATH> | Path on the host machine |
--dst <PATH> | Path inside the container |
--readonly | Make this mount read-only |
--scope <PATTERN> | Only apply to matching agents (glob pattern) |
# Mount Gradle cache for all agentsjackin config mount add gradle-cache \ --src ~/.gradle/caches \ --dst /home/claude/.gradle/caches \ --readonly
# Mount secrets only for chainargos agentsjackin config mount add secrets \ --src ~/.chainargos/secrets \ --dst /secrets \ --readonly \ --scope "chainargos/*"config mount list
Section titled “config mount list”jackin config mount listShow all registered global mounts with their source, destination, read-only status, and scope.
config mount remove
Section titled “config mount remove”jackin config mount remove <NAME> [OPTIONS]Unregister a global mount.
| Option | Description |
|---|---|
--scope <PATTERN> | Only remove from this scope (leave other scopes untouched) |
jackin config mount remove gradle-cachejackin config mount remove secrets --scope "chainargos/*"