skydeckai-code 0.1.37__tar.gz → 0.1.38__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.
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/PKG-INFO +5 -5
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/README.md +2 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/pyproject.toml +3 -5
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/.claude/settings.local.json +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/.gitignore +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/Dockerfile +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/LICENSE +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/screenshots/skydeck_ai_helper.png +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/smithery.yaml +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/__init__.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/__init__.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/cli.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/server.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/__init__.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/base.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/code_analysis.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/code_execution.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/code_tools.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/directory_tools.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/file_tools.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/get_active_apps_tool.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/get_available_windows_tool.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/image_tools.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/other_tools.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/path_tools.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/screenshot_tool.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/state.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/system_tools.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/web_tools.py +0 -0
- {skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/uv.lock +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: skydeckai-code
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.38
|
4
4
|
Summary: This MCP server provides a comprehensive set of tools for AI-driven Development workflows including file operations, code analysis, multi-language execution, web content fetching with HTML-to-markdown conversion, multi-engine web search, code content searching, and system information retrieval.
|
5
5
|
Project-URL: Homepage, https://github.com/skydeckai/skydeckai-code
|
6
6
|
Project-URL: Repository, https://github.com/skydeckai/skydeckai-code
|
@@ -16,6 +16,8 @@ Requires-Dist: mcp>=1.6.0
|
|
16
16
|
Requires-Dist: mss>=10.0.0
|
17
17
|
Requires-Dist: pillow>=11.1.0
|
18
18
|
Requires-Dist: psutil>=7.0.0
|
19
|
+
Requires-Dist: pygetwindow>=0.0.9; sys_platform == 'win32'
|
20
|
+
Requires-Dist: pyobjc-framework-quartz>=11.0; sys_platform == 'darwin'
|
19
21
|
Requires-Dist: requests>=2.32.3
|
20
22
|
Requires-Dist: tree-sitter-c-sharp>=0.23.1
|
21
23
|
Requires-Dist: tree-sitter-cpp>=0.23.4
|
@@ -29,12 +31,10 @@ Requires-Dist: tree-sitter-ruby>=0.23.1
|
|
29
31
|
Requires-Dist: tree-sitter-rust==0.23.2
|
30
32
|
Requires-Dist: tree-sitter-typescript>=0.23.2
|
31
33
|
Requires-Dist: tree-sitter>=0.24.0
|
32
|
-
Provides-Extra: macos
|
33
|
-
Requires-Dist: pyobjc-framework-quartz>=11.0; extra == 'macos'
|
34
|
-
Provides-Extra: windows
|
35
|
-
Requires-Dist: pygetwindow>=0.0.9; extra == 'windows'
|
36
34
|
Description-Content-Type: text/markdown
|
37
35
|
|
36
|
+
[](https://mseep.ai/app/skydeckai-code)
|
37
|
+
|
38
38
|
# SkyDeckAI Code
|
39
39
|
|
40
40
|
An MCP server that provides a comprehensive set of tools for AI-driven development workflows. Features include file system operations, code analysis using tree-sitter for multiple programming languages, code execution, web content fetching with HTML-to-markdown conversion, multi-engine web search, code content searching, and system information retrieval. Designed to enhance AI's capability to assist in software development tasks by providing direct access to both local and remote resources.
|
@@ -1,3 +1,5 @@
|
|
1
|
+
[](https://mseep.ai/app/skydeckai-code)
|
2
|
+
|
1
3
|
# SkyDeckAI Code
|
2
4
|
|
3
5
|
An MCP server that provides a comprehensive set of tools for AI-driven development workflows. Features include file system operations, code analysis using tree-sitter for multiple programming languages, code execution, web content fetching with HTML-to-markdown conversion, multi-engine web search, code content searching, and system information retrieval. Designed to enhance AI's capability to assist in software development tasks by providing direct access to both local and remote resources.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "skydeckai-code"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.38"
|
4
4
|
description = "This MCP server provides a comprehensive set of tools for AI-driven Development workflows including file operations, code analysis, multi-language execution, web content fetching with HTML-to-markdown conversion, multi-engine web search, code content searching, and system information retrieval."
|
5
5
|
readme = "README.md"
|
6
6
|
requires-python = ">=3.11"
|
@@ -28,12 +28,10 @@ dependencies = [
|
|
28
28
|
"requests>=2.32.3",
|
29
29
|
"html2text>=2025.4.15",
|
30
30
|
"beautifulsoup4>=4.13.3",
|
31
|
+
"pyobjc-framework-Quartz>=11.0; sys_platform == 'darwin'",
|
32
|
+
"pygetwindow>=0.0.9; sys_platform == 'win32'",
|
31
33
|
]
|
32
34
|
|
33
|
-
[project.optional-dependencies]
|
34
|
-
macos = ["pyobjc-framework-Quartz>=11.0"]
|
35
|
-
windows = ["pygetwindow>=0.0.9"]
|
36
|
-
|
37
35
|
[tool.hatch.build.targets.wheel]
|
38
36
|
packages = ["src"]
|
39
37
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{skydeckai_code-0.1.37 → skydeckai_code-0.1.38}/src/aidd/tools/get_available_windows_tool.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|