neoagent 2.3.1-beta.2 → 2.3.1-beta.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +39 -0
- package/README.md +2 -0
- package/docs/capabilities.md +2 -2
- package/docs/configuration.md +13 -5
- package/docs/integrations.md +4 -1
- package/lib/manager.js +231 -7
- package/package.json +2 -1
- package/server/db/database.js +68 -0
- package/server/http/middleware.js +50 -0
- package/server/http/routes.js +3 -1
- package/server/index.js +1 -0
- package/server/public/.last_build_id +1 -1
- package/server/public/assets/NOTICES +61 -0
- package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
- package/server/public/flutter_bootstrap.js +1 -1
- package/server/public/main.dart.js +65262 -64422
- package/server/routes/integrations.js +86 -0
- package/server/routes/memory.js +11 -2
- package/server/routes/screenHistory.js +46 -0
- package/server/routes/triggers.js +81 -0
- package/server/services/ai/models.js +30 -0
- package/server/services/ai/providers/githubCopilot.js +97 -0
- package/server/services/ai/providers/openai.js +2 -1
- package/server/services/ai/providers/openaiCodex.js +31 -0
- package/server/services/ai/settings.js +20 -0
- package/server/services/ai/systemPrompt.js +1 -1
- package/server/services/ai/tools.js +35 -6
- package/server/services/browser/controller.js +47 -3
- package/server/services/desktop/screenRecorder.js +172 -0
- package/server/services/integrations/env.js +5 -0
- package/server/services/integrations/github/common.js +106 -0
- package/server/services/integrations/github/provider.js +499 -0
- package/server/services/integrations/github/repos.js +1124 -0
- package/server/services/integrations/home_assistant/provider.js +306 -26
- package/server/services/integrations/manager.js +63 -7
- package/server/services/integrations/oauth_provider.js +13 -6
- package/server/services/integrations/provider_config_store.js +76 -0
- package/server/services/integrations/registry.js +4 -0
- package/server/services/integrations/trello/provider.js +744 -0
- package/server/services/integrations/whatsapp/provider.js +6 -2
- package/server/services/manager.js +22 -0
- package/server/services/memory/manager.js +39 -2
- package/server/services/skills/base_catalog.js +33 -0
- package/server/services/tasks/adapters/index.js +1 -0
- package/server/services/tasks/adapters/manual.js +12 -0
- package/server/services/tasks/runtime.js +1 -1
- package/server/services/voice/openaiClient.js +4 -1
- package/server/services/voice/providers.js +2 -1
- package/server/services/widgets/service.js +49 -4
- package/server/utils/local_secrets.js +56 -0
- package/server/utils/logger.js +37 -9
|
@@ -5535,6 +5535,19 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
5535
5535
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
5536
5536
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5537
5537
|
--------------------------------------------------------------------------------
|
|
5538
|
+
flutter_background_service
|
|
5539
|
+
flutter_background_service_android
|
|
5540
|
+
flutter_background_service_ios
|
|
5541
|
+
flutter_background_service_platform_interface
|
|
5542
|
+
|
|
5543
|
+
Copyright 2022 Eka Setiawan Saputra
|
|
5544
|
+
|
|
5545
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
5546
|
+
|
|
5547
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
5548
|
+
|
|
5549
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5550
|
+
--------------------------------------------------------------------------------
|
|
5538
5551
|
flutter_lints
|
|
5539
5552
|
flutter_markdown
|
|
5540
5553
|
path_provider
|
|
@@ -7093,6 +7106,35 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
7093
7106
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
7094
7107
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
7095
7108
|
--------------------------------------------------------------------------------
|
|
7109
|
+
geolocator
|
|
7110
|
+
geolocator_android
|
|
7111
|
+
geolocator_apple
|
|
7112
|
+
geolocator_platform_interface
|
|
7113
|
+
geolocator_web
|
|
7114
|
+
geolocator_windows
|
|
7115
|
+
|
|
7116
|
+
MIT License
|
|
7117
|
+
|
|
7118
|
+
Copyright (c) 2018 Baseflow
|
|
7119
|
+
|
|
7120
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7121
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7122
|
+
in the Software without restriction, including without limitation the rights
|
|
7123
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7124
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
7125
|
+
furnished to do so, subject to the following conditions:
|
|
7126
|
+
|
|
7127
|
+
The above copyright notice and this permission notice shall be included in all
|
|
7128
|
+
copies or substantial portions of the Software.
|
|
7129
|
+
|
|
7130
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7131
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7132
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7133
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7134
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7135
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7136
|
+
SOFTWARE.
|
|
7137
|
+
--------------------------------------------------------------------------------
|
|
7096
7138
|
glfw
|
|
7097
7139
|
|
|
7098
7140
|
|
|
@@ -24797,6 +24839,25 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
24797
24839
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
24798
24840
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
24799
24841
|
--------------------------------------------------------------------------------
|
|
24842
|
+
notification_listener_service
|
|
24843
|
+
|
|
24844
|
+
Copyright (c) 2022 Iheb Briki
|
|
24845
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
24846
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
24847
|
+
in the Software without restriction, including without limitation the rights
|
|
24848
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
24849
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
24850
|
+
furnished to do so, subject to the following conditions:
|
|
24851
|
+
The above copyright notice and this permission notice shall be included in all
|
|
24852
|
+
copies or substantial portions of the Software.
|
|
24853
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24854
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24855
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24856
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24857
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24858
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
24859
|
+
SOFTWARE.
|
|
24860
|
+
--------------------------------------------------------------------------------
|
|
24800
24861
|
perfetto
|
|
24801
24862
|
|
|
24802
24863
|
Apache License
|
|
Binary file
|
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"59aa584fdf100e6c78c785d8a5b565d1de4b48
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "88976780" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|