```diff
--- test_files/292-original.txt	2025-03-07 19:06:43
+++ test_files/292-modified.txt	2025-03-07 19:06:43
@@ -1,17 +1,17 @@
 import typing as t
 
-from composio.tools.local.base import Action, Tool
+from composio.tools.base.local import LocalAction, LocalTool
 
 from .actions import Notify, ScreenCapture
 
 
-class SystemTools(Tool):
+class SystemTools(LocalTool, autoload=True):
     """
     System Tools for LLM
     """
 
-    def actions(self) -> list[t.Type[Action]]:
-        return [ScreenCapture, Notify]
+    logo = "https://raw.githubusercontent.com/ComposioHQ/composio/master/python/docs/imgs/logos/systemtool.png"
 
-    def triggers(self) -> list:
-        return []
+    @classmethod
+    def actions(cls) -> list[t.Type[LocalAction]]:
+        return [ScreenCapture, Notify]
```
