dalexor 0.1.4__tar.gz

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.
dalexor-0.1.4/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Proprietary Software License
2
+
3
+ Copyright (c) 2026 Dalexor MI. All Rights Reserved.
4
+
5
+ NOTICE: This software and all related source code are the exclusive property of Dalexor MI.
6
+ Unauthorized copying, modification, distribution, or any other use of this software,
7
+ via any medium, is strictly prohibited.
8
+
9
+ This software is provided "as is", without warranty of any kind, express or implied.
10
+ In no event shall the authors or copyright holders be liable for any claim, damages
11
+ or other liability, whether in an action of contract, tort or otherwise, arising
12
+ from, out of or in connection with the software or the use or other dealings in the software.
13
+
dalexor-0.1.4/PKG-INFO ADDED
@@ -0,0 +1,68 @@
1
+ Metadata-Version: 2.4
2
+ Name: dalexor
3
+ Version: 0.1.4
4
+ Summary: Dalexor MI: Global MCP Brain & Sovereign CLI. Zero-knowledge code intelligence.
5
+ Author-email: Dalexor Team <support@dalexor.com>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: Operating System :: OS Independent
8
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: mcp[cli]>=1.0.0
13
+ Requires-Dist: supabase>=2.0.0
14
+ Requires-Dist: watchdog>=3.0.0
15
+ Requires-Dist: groq>=0.3.0
16
+ Requires-Dist: numpy>=1.24.0
17
+ Requires-Dist: python-dotenv>=1.0.0
18
+ Requires-Dist: uvicorn>=0.20.0
19
+ Requires-Dist: fastapi>=0.100.0
20
+ Requires-Dist: httpx>=0.24.0
21
+ Requires-Dist: flask>=2.3.0
22
+ Requires-Dist: requests>=2.31.0
23
+ Requires-Dist: pydantic>=2.0.0
24
+ Requires-Dist: cryptography>=42.0.0
25
+ Dynamic: license-file
26
+
27
+ # Dalexor MI: Global MCP Brain 🧠
28
+
29
+ The official bridge for connecting your local IDE to the Dalexor Neural Network.
30
+
31
+ ## ⚠️ PROPRIETARY SOFTWARE
32
+ This software is **Proprietary**. All rights are reserved by Dalexor MI.
33
+ Unauthorized copying, modification, or redistribution of this package is strictly prohibited.
34
+
35
+ ---
36
+
37
+ ## Features
38
+ - **Global MCP**: Connect Cursor/Windsurf to your cloud intelligence via SSE.
39
+ - **Embedded Sentinel**: Zero-configuration file watching.
40
+ - **Multi-Tenant**: Securely handles multiple projects and environments.
41
+
42
+ ## Quick Start (User Mode)
43
+
44
+ 1. **Install**:
45
+ ```bash
46
+ pip install dalexor
47
+ ```
48
+
49
+ 2. **Configure Cursor**:
50
+ Add a new **SSE** MCP server with your API key.
51
+ ```
52
+ Name: Dalexor
53
+ URL: https://dalexor.up.railway.app/mcp/sse
54
+ ```
55
+
56
+ 3. **Start the Sentinel**:
57
+ ```bash
58
+ dalexor
59
+ ```
60
+ *(Ensure you have `DX_API_KEY` set in your environment or passed as a flag if supported).*
61
+
62
+ ## Development
63
+ Run the cloud bridge on Railway:
64
+ ```bash
65
+ RAILWAY_ENVIRONMENT=true dalexor
66
+ ```
67
+
68
+ Visit [dalexor.mi](https://dalexor.mi) for more details.
@@ -0,0 +1,42 @@
1
+ # Dalexor MI: Global MCP Brain 🧠
2
+
3
+ The official bridge for connecting your local IDE to the Dalexor Neural Network.
4
+
5
+ ## ⚠️ PROPRIETARY SOFTWARE
6
+ This software is **Proprietary**. All rights are reserved by Dalexor MI.
7
+ Unauthorized copying, modification, or redistribution of this package is strictly prohibited.
8
+
9
+ ---
10
+
11
+ ## Features
12
+ - **Global MCP**: Connect Cursor/Windsurf to your cloud intelligence via SSE.
13
+ - **Embedded Sentinel**: Zero-configuration file watching.
14
+ - **Multi-Tenant**: Securely handles multiple projects and environments.
15
+
16
+ ## Quick Start (User Mode)
17
+
18
+ 1. **Install**:
19
+ ```bash
20
+ pip install dalexor
21
+ ```
22
+
23
+ 2. **Configure Cursor**:
24
+ Add a new **SSE** MCP server with your API key.
25
+ ```
26
+ Name: Dalexor
27
+ URL: https://dalexor.up.railway.app/mcp/sse
28
+ ```
29
+
30
+ 3. **Start the Sentinel**:
31
+ ```bash
32
+ dalexor
33
+ ```
34
+ *(Ensure you have `DX_API_KEY` set in your environment or passed as a flag if supported).*
35
+
36
+ ## Development
37
+ Run the cloud bridge on Railway:
38
+ ```bash
39
+ RAILWAY_ENVIRONMENT=true dalexor
40
+ ```
41
+
42
+ Visit [dalexor.mi](https://dalexor.mi) for more details.
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dalexor"
7
+ version = "0.1.4"
8
+ authors = [
9
+ { name="Dalexor Team", email="support@dalexor.com" },
10
+ ]
11
+ description = "Dalexor MI: Global MCP Brain & Sovereign CLI. Zero-knowledge code intelligence."
12
+ readme = "README.md"
13
+ license-files = ["LICENSE"]
14
+ requires-python = ">=3.9"
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "Operating System :: OS Independent",
18
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
19
+ ]
20
+ dependencies = [
21
+ "mcp[cli]>=1.0.0",
22
+ "supabase>=2.0.0",
23
+ "watchdog>=3.0.0",
24
+ "groq>=0.3.0",
25
+ "numpy>=1.24.0",
26
+ "python-dotenv>=1.0.0",
27
+ "uvicorn>=0.20.0",
28
+ "fastapi>=0.100.0",
29
+ "httpx>=0.24.0",
30
+ "flask>=2.3.0",
31
+ "requests>=2.31.0",
32
+ "pydantic>=2.0.0",
33
+ "cryptography>=42.0.0"
34
+ ]
35
+
36
+ [project.scripts]
37
+ dalexor = "dalexor.main:run_agent"
38
+ dx = "dalexor.main:run_agent"
39
+
40
+ [tool.setuptools.packages.find]
41
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes