automation-context-accepts-check-mode

Status: IN

`automation(check_mode=True)` enables dry-run mode that previews changes without applying them; output is annotated with `[CHECK MODE]`.

Source: entries/2026/05/11/examples-06-automation-context-README.md

Example

async with automation(check_mode=True) as ftl:
    print(f"Check mode enabled: {ftl.check_mode}")
    result = await ftl.file(path="/tmp/test", state="touch")
    # No changes made — dry run only

JSON