skydeckai-code 0.1.32__tar.gz → 0.1.33__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.32 → skydeckai_code-0.1.33}/PKG-INFO +1 -1
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/pyproject.toml +6 -1
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/.gitignore +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/Dockerfile +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/LICENSE +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/README.md +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/screenshots/skydeck_ai_helper.png +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/smithery.yaml +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/__init__.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/cli.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/server.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/__init__.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/base.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/code_analysis.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/code_execution.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/code_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/directory_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/file_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/get_active_apps_tool.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/get_available_windows_tool.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/git_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/image_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/lint_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/other_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/path_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/screenshot_tool.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/state.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/system_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/src/aidd/tools/web_tools.py +0 -0
- {skydeckai_code-0.1.32 → skydeckai_code-0.1.33}/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.33
|
4
4
|
Summary: This MCP server provides a comprehensive set of tools for AI-driven Development workflows including file operations, code analysis, code linting, multi-language execution, Git operations, 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
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "skydeckai-code"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.33"
|
4
4
|
description = "This MCP server provides a comprehensive set of tools for AI-driven Development workflows including file operations, code analysis, code linting, multi-language execution, Git operations, 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"
|
@@ -62,6 +62,11 @@ Documentation = "https://github.com/skydeckai/skydeckai-code/blob/main/README.md
|
|
62
62
|
requires = [ "hatchling",]
|
63
63
|
build-backend = "hatchling.build"
|
64
64
|
|
65
|
+
# Configures the src-layout package discovery
|
66
|
+
[tool.hatch.packages.find]
|
67
|
+
where = ["src"]
|
68
|
+
namespaces = false
|
69
|
+
|
65
70
|
[project.scripts]
|
66
71
|
skydeckai-code = "aidd:main"
|
67
72
|
skydeckai-code-cli = "aidd.cli:main"
|
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.32 → skydeckai_code-0.1.33}/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
|
File without changes
|
File without changes
|