You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and `group.member_absent`. Removing a group member requires `confirm: true`.
239
+
240
+
## Job-scoped capability preflight
241
+
242
+
Automax can derive remote command dependencies from the selected job plan and render per-target checks. This keeps dependency preflight scoped to the actual plugins that will run, rather than requiring broad host assumptions.
Use job-level `preflight.capabilities: true` or the `automax run --preflight-capabilities` flag to make the run fail early when required remote tools are missing.
Copy file name to clipboardExpand all lines: docs/plugins/security.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,3 +100,18 @@ PAM stack assertion and backup plugins complement the mutating PAM plugins:
100
100
`pam.include_assert`, `pam.module_assert`, `pam.order_assert`, `pam.backup` and
101
101
`pam.restore`. `pam.restore` requires `confirm: true` because it can affect login
102
102
paths.
103
+
104
+
## Capability preflight and redaction policy
105
+
106
+
Use `capabilities requirements` to derive remote tool requirements from the selected job plan before execution. Use `--preflight-capabilities` on `automax run`, or set `preflight.capabilities: true` in the job, to make Automax check required remote executables before running selected substeps.
107
+
108
+
The explicit capability plugins are:
109
+
110
+
```text
111
+
tool.exists
112
+
tool.version_assert
113
+
capability.assert
114
+
plugin.requirements
115
+
```
116
+
117
+
Use `secret.redact_assert`, `secret.scan_output` and `secret.scan_preview` to validate that previews, command output and registered payloads do not expose declared secret values or common secret-shaped assignments such as `password=...`, bearer tokens or private-key blocks.
0 commit comments