skydeckai-code 0.1.25__tar.gz → 0.1.26__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.
Files changed (29) hide show
  1. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/PKG-INFO +1 -1
  2. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/pyproject.toml +1 -1
  3. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/other_tools.py +12 -14
  4. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/.gitignore +0 -0
  5. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/Dockerfile +0 -0
  6. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/LICENSE +0 -0
  7. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/README.md +0 -0
  8. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/screenshots/skydeck_ai_helper.png +0 -0
  9. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/smithery.yaml +0 -0
  10. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/__init__.py +0 -0
  11. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/cli.py +0 -0
  12. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/server.py +0 -0
  13. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/__init__.py +0 -0
  14. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/base.py +0 -0
  15. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/code_analysis.py +0 -0
  16. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/code_execution.py +0 -0
  17. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/code_tools.py +0 -0
  18. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/directory_tools.py +0 -0
  19. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/file_tools.py +0 -0
  20. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/get_active_apps_tool.py +0 -0
  21. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/get_available_windows_tool.py +0 -0
  22. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/git_tools.py +0 -0
  23. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/image_tools.py +0 -0
  24. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/path_tools.py +0 -0
  25. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/screenshot_tool.py +0 -0
  26. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/state.py +0 -0
  27. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/system_tools.py +0 -0
  28. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/src/aidd/tools/web_tools.py +0 -0
  29. {skydeckai_code-0.1.25 → skydeckai_code-0.1.26}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: skydeckai-code
3
- Version: 0.1.25
3
+ Version: 0.1.26
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, Git operations, web content fetching, 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.25"
3
+ version = "0.1.26"
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, Git operations, web content fetching, code content searching, and system information retrieval."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -190,25 +190,23 @@ async def _execute_tool_with_error_handling(handler, arguments, tool_name, index
190
190
  def think_tool():
191
191
  return {
192
192
  "name": "think",
193
- "description": "Use the tool to think about something. "
194
- "WHEN TO USE: When complex reasoning or brainstorming is needed without making any changes to files "
195
- "or retrieving additional information. Useful for analyzing problems, planning approaches, evaluating "
196
- "options, or organizing thoughts before taking action. "
197
- "WHEN NOT TO USE: When immediate action is needed, when you need to query for new information, "
198
- "or when a simple explanation would suffice. "
199
- "RETURNS: The thoughts you provided, formatted as markdown. This tool does not retrieve new information "
200
- "or make any changes to the repository - it simply records your reasoning process for reference. "
201
- "This is particularly valuable when exploring complex bugs, designing architecture, or evaluating "
202
- "multiple approaches to a problem.",
193
+ "description": "Use the tool to methodically think through a complex problem step-by-step. "
194
+ "WHEN TO USE: When tackling complex reasoning tasks that benefit from breaking down problems, exploring multiple perspectives, "
195
+ "or reasoning through chains of consequences. Ideal for planning system architecture, debugging complex issues, "
196
+ "anticipating edge cases, weighing tradeoffs, or making implementation decisions. "
197
+ "WHEN NOT TO USE: For simple explanations, direct code writing, retrieving information, or when immediate action is needed. "
198
+ "RETURNS: Your structured thinking process formatted as markdown. This tool helps you methodically document your reasoning "
199
+ "without making repository changes. Structuring your thoughts with this tool can lead to more reliable reasoning "
200
+ "and better decision-making, especially for complex problems where it's easy to overlook important considerations.",
203
201
  "inputSchema": {
204
202
  "type": "object",
205
203
  "properties": {
206
204
  "thought": {
207
205
  "type": "string",
208
- "description": "Your detailed thoughts, analysis, reasoning, or brainstorming. Can include markdown "
209
- "formatting for better readability, like bullet points, headings, or code blocks. "
210
- "Examples: Analyzing the root cause of a bug, evaluating different API design choices, "
211
- "planning refactoring steps, or brainstorming optimization strategies."
206
+ "description": "Your step-by-step thinking process, including: breaking down problems, exploring alternatives, "
207
+ "considering pros/cons, examining assumptions, listing requirements, or working through edge cases. "
208
+ "Structure your thinking using markdown elements like bullet points, numbered lists, headings, or code blocks. "
209
+ "The more systematic your thinking, the better the outcome."
212
210
  }
213
211
  },
214
212
  "required": ["thought"]
File without changes
File without changes