public class ExampleWorker : AutomationScriptBase { public ExampleWorker(ScriptedAutomator scriptHost, IdentityBase executiveIdentity, IEventBus eventBus) : base(scriptHost, executiveIdentity, eventBus) { } public override bool Execute() { /* Ein minimales Beispiel eines direkt ausführbaren CAATS-Plugins */ Job.Success($"{Job.Name.First().Content} successfully completed"); return true; } }