diff --git a/docs/2.0/reference/pipelines/feature-flags.md b/docs/2.0/reference/pipelines/feature-flags.md
index 506535e42..d243da9ec 100644
--- a/docs/2.0/reference/pipelines/feature-flags.md
+++ b/docs/2.0/reference/pipelines/feature-flags.md
@@ -124,6 +124,23 @@ Enables Terragrunt features to reduce the potential changes during a run-all. Te
+#### `PIPELINES_FEATURE_EXPERIMENT_AUTO_UNLOCK_STATE_LOCK`
+
+-
+Enables Pipelines to automatically force-unlock a stale Terraform/OpenTofu state lock when an AWS session timeout causes the lock-release step to fail mid-apply. When detected (both `Error releasing the state lock` and `ExpiredTokenException` appear in the apply output), Pipelines runs `terragrunt plan -- -lock-timeout=0s` with fresh credentials to identify the stale lock ID, then calls `terragrunt force-unlock` to release it. The original apply error is still returned -- the unlock only clears the lock so the next run can proceed.
+
+Requires Terragrunt 1.0 or later. Earlier versions do not produce the structured run report that this feature depends on.
+
+Only applies to single-unit commands. Use of this feature with `run --all` is not yet supported.
+
+-
+**Default Value**: Disabled
+
+-
+**How to Enable**: Set to `"true"`
+
+
+
#### `PIPELINES_FEATURE_EXPERIMENT_USE_MISE_EXEC_TG_WRAPPER`