diff --git a/.ci/BHoMBot/Nuget/BHoM.Interop.LadybugTools.nuspec b/.ci/BHoMBot/Nuget/BHoM.Interop.LadybugTools.nuspec
new file mode 100644
index 00000000..a3f178da
--- /dev/null
+++ b/.ci/BHoMBot/Nuget/BHoM.Interop.LadybugTools.nuspec
@@ -0,0 +1,28 @@
+
+
+
+ BHoM.Interop.LadybugTools
+
+ BHoM
+ https://github.com/BHoM/LadybugTools_Toolkit
+ licence.txt
+ icon.png
+ readme.md
+ false
+ Interact with Ladybug Tools via BHoM
+
+
+ BHoM engine aec LadyBug LadyBugTools
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/LadybugTools_Adapter/AdapterActions/Execute.cs b/LadybugTools_Adapter/AdapterActions/Execute.cs
new file mode 100644
index 00000000..f3299eba
--- /dev/null
+++ b/LadybugTools_Adapter/AdapterActions/Execute.cs
@@ -0,0 +1,263 @@
+/*
+ * This file is part of the Buildings and Habitats object Model (BHoM)
+ * Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
+ *
+ * Each contributor holds copyright over their respective contributions.
+ * The project versioning (Git) records all such contribution source information.
+ *
+ *
+ * The BHoM is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3.0 of the License, or
+ * (at your option) any later version.
+ *
+ * The BHoM is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this code. If not, see .
+ */
+
+using BH.Engine.Adapter;
+using BH.Engine.LadybugTools;
+using BH.oM.Adapter;
+using BH.oM.Adapter.Commands;
+using BH.oM.Base;
+using BH.oM.Data.Requests;
+using BH.oM.LadybugTools;
+using BH.oM.Python;
+using BH.Engine.Python;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Text;
+
+namespace BH.Adapter.LadybugTools
+{
+ public partial class LadybugToolsAdapter : BHoMAdapter
+ {
+ bool m_executeSuccess = false;
+ public override Output, bool> Execute(IExecuteCommand command, ActionConfig actionConfig = null)
+ {
+ m_executeSuccess = false;
+ Output, bool> output = new Output, bool>() { Item1 = new List