(self)
| 392 | ]) |
| 393 | |
| 394 | def _actions_section(self) -> str: |
| 395 | return "\n".join([ |
| 396 | "# Executing actions with care", |
| 397 | "Carefully consider reversibility and blast radius.", |
| 398 | "Local, reversible actions like editing files are usually fine.", |
| 399 | "Actions that affect shared systems should be authorized by the user.", |
| 400 | ]) |
| 401 | |
| 402 | def _environment_section(self) -> str: |
| 403 | cwd = self._project_context.cwd if self._project_context else "unknown" |