skydeckai-code 0.1.36__py3-none-any.whl → 0.1.37__py3-none-any.whl
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.36.dist-info → skydeckai_code-0.1.37.dist-info}/METADATA +49 -15
- {skydeckai_code-0.1.36.dist-info → skydeckai_code-0.1.37.dist-info}/RECORD +5 -5
- {skydeckai_code-0.1.36.dist-info → skydeckai_code-0.1.37.dist-info}/WHEEL +0 -0
- {skydeckai_code-0.1.36.dist-info → skydeckai_code-0.1.37.dist-info}/entry_points.txt +0 -0
- {skydeckai_code-0.1.36.dist-info → skydeckai_code-0.1.37.dist-info}/licenses/LICENSE +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.37
|
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,8 +16,6 @@ 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
|
20
|
-
Requires-Dist: pyobjc-framework-quartz>=11.0
|
21
19
|
Requires-Dist: requests>=2.32.3
|
22
20
|
Requires-Dist: tree-sitter-c-sharp>=0.23.1
|
23
21
|
Requires-Dist: tree-sitter-cpp>=0.23.4
|
@@ -31,6 +29,10 @@ Requires-Dist: tree-sitter-ruby>=0.23.1
|
|
31
29
|
Requires-Dist: tree-sitter-rust==0.23.2
|
32
30
|
Requires-Dist: tree-sitter-typescript>=0.23.2
|
33
31
|
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'
|
34
36
|
Description-Content-Type: text/markdown
|
35
37
|
|
36
38
|
# SkyDeckAI Code
|
@@ -76,7 +78,6 @@ If you're using SkyDeck AI Helper app, you can search for "SkyDeckAI Code" and i
|
|
76
78
|
- File system operations (read, write, edit, move, copy, delete)
|
77
79
|
- Directory management and traversal
|
78
80
|
- Multi-language code analysis using tree-sitter
|
79
|
-
- Code linting and issue detection for Python and JavaScript/TypeScript
|
80
81
|
- Code content searching with regex pattern matching
|
81
82
|
- Multi-language code execution with safety measures
|
82
83
|
- Web content fetching from APIs and websites with HTML-to-markdown conversion
|
@@ -86,7 +87,38 @@ If you're using SkyDeck AI Helper app, you can search for "SkyDeckAI Code" and i
|
|
86
87
|
- Screenshot and screen context tools
|
87
88
|
- Image handling tools
|
88
89
|
|
89
|
-
## Available Tools
|
90
|
+
## Available Tools (26)
|
91
|
+
|
92
|
+
| Category | Tool Name | Description |
|
93
|
+
| ---------------- | -------------------------- | -------------------------------------------- |
|
94
|
+
| **File System** | `get_allowed_directory` | Get the current working directory path |
|
95
|
+
| | `update_allowed_directory` | Change the working directory |
|
96
|
+
| | `create_directory` | Create a new directory or nested directories |
|
97
|
+
| | `write_file` | Create or overwrite a file with new content |
|
98
|
+
| | `edit_file` | Make line-based edits to a text file |
|
99
|
+
| | `read_file` | Read the contents of one or more files |
|
100
|
+
| | `list_directory` | Get listing of files and directories |
|
101
|
+
| | `move_file` | Move or rename a file or directory |
|
102
|
+
| | `copy_file` | Copy a file or directory to a new location |
|
103
|
+
| | `search_files` | Search for files matching a name pattern |
|
104
|
+
| | `delete_file` | Delete a file or empty directory |
|
105
|
+
| | `get_file_info` | Get detailed file metadata |
|
106
|
+
| | `directory_tree` | Get a recursive tree view of directories |
|
107
|
+
| | `read_image_file` | Read an image file as base64 data |
|
108
|
+
| **Code Tools** | `codebase_mapper` | Analyze code structure across files |
|
109
|
+
| | `search_code` | Find text patterns in code files |
|
110
|
+
| | `execute_code` | Run code in various languages |
|
111
|
+
| | `execute_shell_script` | Run shell/bash scripts |
|
112
|
+
| **Web Tools** | `web_fetch` | Get content from a URL |
|
113
|
+
| | `web_search` | Perform a web search |
|
114
|
+
| **Screen Tools** | `capture_screenshot` | Take a screenshot of screen or window |
|
115
|
+
| | `get_active_apps` | List running applications |
|
116
|
+
| | `get_available_windows` | List all open windows |
|
117
|
+
| **System** | `get_system_info` | Get detailed system information |
|
118
|
+
| **Utility** | `batch_tools` | Run multiple tool operations together |
|
119
|
+
| | `think` | Document reasoning without making changes |
|
120
|
+
|
121
|
+
## Detailed Tool Documentation
|
90
122
|
|
91
123
|
### Basic File Operations
|
92
124
|
|
@@ -99,7 +131,7 @@ If you're using SkyDeck AI Helper app, you can search for "SkyDeckAI Code" and i
|
|
99
131
|
| delete_file | path: string | Success confirmation |
|
100
132
|
| get_file_info | path: string | File metadata (size, timestamps, permissions) |
|
101
133
|
|
102
|
-
|
134
|
+
**CLI Usage:**
|
103
135
|
|
104
136
|
```bash
|
105
137
|
# Read entire file
|
@@ -176,7 +208,7 @@ Generates complete directory structure:
|
|
176
208
|
|
177
209
|
Returns: JSON tree structure of directory contents.
|
178
210
|
|
179
|
-
|
211
|
+
**CLI Usage:**
|
180
212
|
|
181
213
|
```bash
|
182
214
|
# List directory
|
@@ -220,7 +252,7 @@ Supported Languages:
|
|
220
252
|
- C# (.cs)
|
221
253
|
- Kotlin (.kt, .kts)
|
222
254
|
|
223
|
-
**
|
255
|
+
**CLI Usage:**
|
224
256
|
|
225
257
|
```bash
|
226
258
|
# Map the entire codebase structure
|
@@ -263,7 +295,7 @@ Matching lines grouped by file with line numbers, sorted by file modification ti
|
|
263
295
|
|
264
296
|
This tool uses ripgrep when available for optimal performance, with a Python fallback implementation. It's ideal for finding specific code patterns like function declarations, imports, variable usages, or error handling.
|
265
297
|
|
266
|
-
**
|
298
|
+
**CLI Usage:**
|
267
299
|
|
268
300
|
```bash
|
269
301
|
# Find function and class declarations in JavaScript files
|
@@ -316,6 +348,8 @@ Returns:
|
|
316
348
|
|
317
349
|
Provides essential system information in a clean, readable format.
|
318
350
|
|
351
|
+
**CLI Usage:**
|
352
|
+
|
319
353
|
```bash
|
320
354
|
# Get system information
|
321
355
|
skydeckai-code-cli --tool get_system_info
|
@@ -484,7 +518,7 @@ Response content as text with HTTP status code and size information. For binary
|
|
484
518
|
|
485
519
|
This tool can be used to access web APIs, fetch documentation, or download content from the web while respecting size limits (10MB max) and security constraints.
|
486
520
|
|
487
|
-
**
|
521
|
+
**CLI Usage:**
|
488
522
|
|
489
523
|
```bash
|
490
524
|
# Fetch JSON from an API
|
@@ -532,7 +566,7 @@ A list of search results formatted in markdown, including titles, URLs, and snip
|
|
532
566
|
|
533
567
|
This tool uses a multi-engine approach that tries different search engines with various parsing strategies to ensure reliable results. You can specify a preferred engine, but some engines may block automated access, in which case the tool will fall back to alternative engines when "auto" is selected.
|
534
568
|
|
535
|
-
**
|
569
|
+
**CLI Usage:**
|
536
570
|
|
537
571
|
```bash
|
538
572
|
# Search with default settings (auto engine selection)
|
@@ -606,7 +640,7 @@ This tool provides efficient execution of multiple operations in a single reques
|
|
606
640
|
1. Use paths relative to the current working directory (e.g., "project/src" rather than just "src"), or
|
607
641
|
2. Include an explicit tool invocation to change directories using `update_allowed_directory`
|
608
642
|
|
609
|
-
**
|
643
|
+
**CLI Usage:**
|
610
644
|
|
611
645
|
```bash
|
612
646
|
# Setup a new project with multiple steps in sequential order (using proper paths)
|
@@ -667,7 +701,7 @@ Your thoughts formatted as markdown, with a note indicating this was a thinking
|
|
667
701
|
|
668
702
|
This tool is useful for thinking through complex problems, brainstorming solutions, or laying out implementation plans without making any actual changes. It's a great way to document your reasoning process, evaluate different approaches, or plan out a multi-step strategy before taking action.
|
669
703
|
|
670
|
-
**
|
704
|
+
**CLI Usage:**
|
671
705
|
|
672
706
|
```bash
|
673
707
|
# Analyze a bug and plan a fix
|
@@ -711,7 +745,7 @@ Executes code in various programming languages with safety measures and restrict
|
|
711
745
|
| code | string | Yes | Code to execute |
|
712
746
|
| timeout | integer | No | Maximum execution time (default: 5s) |
|
713
747
|
|
714
|
-
**
|
748
|
+
**CLI Usage:**
|
715
749
|
|
716
750
|
```bash
|
717
751
|
# Python example
|
@@ -771,7 +805,7 @@ Executes shell scripts (bash/sh) with safety measures and restrictions.
|
|
771
805
|
| script | string | Yes | Shell script to execute |
|
772
806
|
| timeout | integer | No | Maximum execution time (default: 300s, max: 600s) |
|
773
807
|
|
774
|
-
**
|
808
|
+
**CLI Usage:**
|
775
809
|
|
776
810
|
```bash
|
777
811
|
# List directory contents with details
|
@@ -18,8 +18,8 @@ src/aidd/tools/screenshot_tool.py,sha256=NMO5B4UG8qfMEOMRd2YoOjtwz_oQ2y1UAGU22jV
|
|
18
18
|
src/aidd/tools/state.py,sha256=RWSw0Jfsui8FqC0xsI7Ik07tAg35hRwLHa5xGBVbiI4,1493
|
19
19
|
src/aidd/tools/system_tools.py,sha256=H4_qveKC2HA7SIbi-j4vxA0W4jYh2wfu9A6ni5wkZyA,7249
|
20
20
|
src/aidd/tools/web_tools.py,sha256=gdsj2DEVYb_oYChItK5I1ugt2w25U7IAa5kEw9q6MVg,35534
|
21
|
-
skydeckai_code-0.1.
|
22
|
-
skydeckai_code-0.1.
|
23
|
-
skydeckai_code-0.1.
|
24
|
-
skydeckai_code-0.1.
|
25
|
-
skydeckai_code-0.1.
|
21
|
+
skydeckai_code-0.1.37.dist-info/METADATA,sha256=1YGhMWLG0ftxoyHwRaO64oi5mlSpRsXW5wh0quhcHdA,31860
|
22
|
+
skydeckai_code-0.1.37.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
23
|
+
skydeckai_code-0.1.37.dist-info/entry_points.txt,sha256=ZkU1spOhLEnz5MpUn4dDihVcE0DMUC6ejzbsF-eNth4,88
|
24
|
+
skydeckai_code-0.1.37.dist-info/licenses/LICENSE,sha256=uHse04vmI6ZjW7TblegFl30X-sDyyF0-QvH8ItPca3c,10865
|
25
|
+
skydeckai_code-0.1.37.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|