skydeckai-code 0.1.39__tar.gz → 0.1.41__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.39 → skydeckai_code-0.1.41}/PKG-INFO +113 -245
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/README.md +111 -243
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/pyproject.toml +2 -2
- skydeckai_code-0.1.41/screenshots/mseep_ai_helper.png +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/__init__.py +16 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/file_tools.py +90 -21
- skydeckai_code-0.1.41/src/aidd/tools/todo_store.py +257 -0
- skydeckai_code-0.1.41/src/aidd/tools/todo_tools.py +157 -0
- skydeckai_code-0.1.39/screenshots/skydeck_ai_helper.png +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/.claude/settings.local.json +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/.gitignore +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/Dockerfile +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/LICENSE +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/smithery.yaml +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/__init__.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/__init__.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/cli.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/server.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/base.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/code_analysis.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/code_execution.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/code_tools.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/directory_tools.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/get_active_apps_tool.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/get_available_windows_tool.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/image_tools.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/other_tools.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/path_tools.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/screenshot_tool.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/state.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/system_tools.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/src/aidd/tools/web_tools.py +0 -0
- {skydeckai_code-0.1.39 → skydeckai_code-0.1.41}/uv.lock +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: skydeckai-code
|
3
|
-
Version: 0.1.
|
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.
|
3
|
+
Version: 0.1.41
|
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, persistent task management, 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
|
7
7
|
Project-URL: Documentation, https://github.com/skydeckai/skydeckai-code/blob/main/README.md
|
@@ -43,13 +43,13 @@ An MCP server that provides a comprehensive set of tools for AI-driven developme
|
|
43
43
|
|
44
44
|
This mcp server was formerly known as `mcp-server-aidd`. It was renamed to `skydeckai-code` to credit the team at [SkyDeck.ai](https://skydeck.ai) with creating this application along with [East Agile](https://eastagile.com). But more importantly we realized that the term AI Driven Development (AIDD) was just not catching on. People did not understand at a glance what it was about. And nor did LLMs. "Code" was far more intuitive. And linguistically intuitive is important in the world of agentic AI.
|
45
45
|
|
46
|
-
|
46
|
+
[](https://mseep.ai/app/fe7a40fd-30c1-4767-84f9-d33bf997497e)
|
47
47
|
|
48
48
|
## Installation
|
49
49
|
|
50
50
|
```bash
|
51
|
-
# Using
|
52
|
-
|
51
|
+
# Using uvx
|
52
|
+
uvx skydeckai-code
|
53
53
|
```
|
54
54
|
|
55
55
|
## Claude Desktop Setup
|
@@ -69,9 +69,9 @@ Add to your `claude_desktop_config.json`:
|
|
69
69
|
|
70
70
|
## SkyDeck AI Helper App
|
71
71
|
|
72
|
-
If you're using
|
72
|
+
If you're using MseeP AI Helper app, you can search for "SkyDeckAI Code" and install it.
|
73
73
|
|
74
|
-

|
75
75
|
|
76
76
|
## Key Features
|
77
77
|
|
@@ -87,7 +87,7 @@ If you're using SkyDeck AI Helper app, you can search for "SkyDeckAI Code" and i
|
|
87
87
|
- Screenshot and screen context tools
|
88
88
|
- Image handling tools
|
89
89
|
|
90
|
-
## Available Tools (
|
90
|
+
## Available Tools (29)
|
91
91
|
|
92
92
|
| Category | Tool Name | Description |
|
93
93
|
| ---------------- | -------------------------- | -------------------------------------------- |
|
@@ -117,6 +117,9 @@ If you're using SkyDeck AI Helper app, you can search for "SkyDeckAI Code" and i
|
|
117
117
|
| **System** | `get_system_info` | Get detailed system information |
|
118
118
|
| **Utility** | `batch_tools` | Run multiple tool operations together |
|
119
119
|
| | `think` | Document reasoning without making changes |
|
120
|
+
| **Todo** | `todo_read` | Read current workspace todo list |
|
121
|
+
| | `todo_write` | Replace entire todo list with validation |
|
122
|
+
| | `todo_update` | Update specific todo item by ID |
|
120
123
|
|
121
124
|
## Detailed Tool Documentation
|
122
125
|
|
@@ -131,34 +134,6 @@ If you're using SkyDeck AI Helper app, you can search for "SkyDeckAI Code" and i
|
|
131
134
|
| delete_file | path: string | Success confirmation |
|
132
135
|
| get_file_info | path: string | File metadata (size, timestamps, permissions) |
|
133
136
|
|
134
|
-
**CLI Usage:**
|
135
|
-
|
136
|
-
```bash
|
137
|
-
# Read entire file
|
138
|
-
skydeckai-code-cli --tool read_file --args '{"files": [{"path": "src/main.py"}]}'
|
139
|
-
|
140
|
-
# Read 10 lines starting from line 20
|
141
|
-
skydeckai-code-cli --tool read_file --args '{"files": [{"path": "src/main.py", "offset": 20, "limit": 10}]}'
|
142
|
-
|
143
|
-
# Read from line 50 to the end of the file
|
144
|
-
skydeckai-code-cli --tool read_file --args '{"files": [{"path": "src/main.py", "offset": 50}]}'
|
145
|
-
|
146
|
-
# Read multiple files with different line ranges
|
147
|
-
skydeckai-code-cli --tool read_file --args '{"files": [
|
148
|
-
{"path": "src/main.py", "offset": 1, "limit": 10},
|
149
|
-
{"path": "README.md"}
|
150
|
-
]}'
|
151
|
-
|
152
|
-
# Write file
|
153
|
-
skydeckai-code-cli --tool write_file --args '{"path": "output.txt", "content": "Hello World"}'
|
154
|
-
|
155
|
-
# Copy file or directory
|
156
|
-
skydeckai-code-cli --tool copy_file --args '{"source": "config.json", "destination": "config.backup.json"}'
|
157
|
-
|
158
|
-
# Get file info
|
159
|
-
skydeckai-code-cli --tool get_file_info --args '{"path": "src/main.py"}'
|
160
|
-
```
|
161
|
-
|
162
137
|
### Complex File Operations
|
163
138
|
|
164
139
|
#### edit_file
|
@@ -208,16 +183,6 @@ Generates complete directory structure:
|
|
208
183
|
|
209
184
|
Returns: JSON tree structure of directory contents.
|
210
185
|
|
211
|
-
**CLI Usage:**
|
212
|
-
|
213
|
-
```bash
|
214
|
-
# List directory
|
215
|
-
skydeckai-code-cli --tool list_directory --args '{"path": "."}'
|
216
|
-
|
217
|
-
# Search for Python files
|
218
|
-
skydeckai-code-cli --tool search_files --args '{"pattern": ".py", "path": "src"}'
|
219
|
-
```
|
220
|
-
|
221
186
|
### Code Analysis
|
222
187
|
|
223
188
|
#### codebase_mapper
|
@@ -252,19 +217,6 @@ Supported Languages:
|
|
252
217
|
- C# (.cs)
|
253
218
|
- Kotlin (.kt, .kts)
|
254
219
|
|
255
|
-
**CLI Usage:**
|
256
|
-
|
257
|
-
```bash
|
258
|
-
# Map the entire codebase structure
|
259
|
-
skydeckai-code-cli --tool codebase_mapper --args '{"path": "."}'
|
260
|
-
|
261
|
-
# Map only the source directory
|
262
|
-
skydeckai-code-cli --tool codebase_mapper --args '{"path": "src"}'
|
263
|
-
|
264
|
-
# Map a specific component or module
|
265
|
-
skydeckai-code-cli --tool codebase_mapper --args '{"path": "src/components"}'
|
266
|
-
```
|
267
|
-
|
268
220
|
#### search_code
|
269
221
|
|
270
222
|
Fast content search tool using regular expressions:
|
@@ -295,29 +247,6 @@ Matching lines grouped by file with line numbers, sorted by file modification ti
|
|
295
247
|
|
296
248
|
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.
|
297
249
|
|
298
|
-
**CLI Usage:**
|
299
|
-
|
300
|
-
```bash
|
301
|
-
# Find function and class declarations in JavaScript files
|
302
|
-
skydeckai-code-cli --tool search_code --args '{
|
303
|
-
"patterns": ["function\\s+\\w+", "class\\s+\\w+"],
|
304
|
-
"include": "*.js"
|
305
|
-
}'
|
306
|
-
|
307
|
-
# Find all console.log statements with errors or warnings
|
308
|
-
skydeckai-code-cli --tool search_code --args '{
|
309
|
-
"patterns": ["console\\.log.*[eE]rror", "console\\.log.*[wW]arning"],
|
310
|
-
"path": "src"
|
311
|
-
}'
|
312
|
-
|
313
|
-
# Find import and export statements in TypeScript files
|
314
|
-
skydeckai-code-cli --tool search_code --args '{
|
315
|
-
"patterns": ["import.*from", "export.*"],
|
316
|
-
"include": "*.{ts,tsx}",
|
317
|
-
"exclude": "node_modules/**"
|
318
|
-
}'
|
319
|
-
```
|
320
|
-
|
321
250
|
### System Information
|
322
251
|
|
323
252
|
| Tool | Parameters | Returns |
|
@@ -348,13 +277,6 @@ Returns:
|
|
348
277
|
|
349
278
|
Provides essential system information in a clean, readable format.
|
350
279
|
|
351
|
-
**CLI Usage:**
|
352
|
-
|
353
|
-
```bash
|
354
|
-
# Get system information
|
355
|
-
skydeckai-code-cli --tool get_system_info
|
356
|
-
```
|
357
|
-
|
358
280
|
### Screen Context and Image Tools
|
359
281
|
|
360
282
|
#### get_active_apps
|
@@ -518,28 +440,6 @@ Response content as text with HTTP status code and size information. For binary
|
|
518
440
|
|
519
441
|
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.
|
520
442
|
|
521
|
-
**CLI Usage:**
|
522
|
-
|
523
|
-
```bash
|
524
|
-
# Fetch JSON from an API
|
525
|
-
skydeckai-code-cli --tool web_fetch --args '{
|
526
|
-
"url": "https://api.github.com/users/octocat",
|
527
|
-
"headers": {"Accept": "application/json"}
|
528
|
-
}'
|
529
|
-
|
530
|
-
# Download content to a file
|
531
|
-
skydeckai-code-cli --tool web_fetch --args '{
|
532
|
-
"url": "https://github.com/github/github-mcp-server/blob/main/README.md",
|
533
|
-
"save_to_file": "downloads/readme.md"
|
534
|
-
}'
|
535
|
-
|
536
|
-
# Fetch a webpage and convert to markdown for better readability
|
537
|
-
skydeckai-code-cli --tool web_fetch --args '{
|
538
|
-
"url": "https://example.com",
|
539
|
-
"convert_html_to_markdown": true
|
540
|
-
}'
|
541
|
-
```
|
542
|
-
|
543
443
|
#### web_search
|
544
444
|
|
545
445
|
Performs a robust web search using multiple search engines and returns concise, relevant results.
|
@@ -566,27 +466,6 @@ A list of search results formatted in markdown, including titles, URLs, and snip
|
|
566
466
|
|
567
467
|
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.
|
568
468
|
|
569
|
-
**CLI Usage:**
|
570
|
-
|
571
|
-
```bash
|
572
|
-
# Search with default settings (auto engine selection)
|
573
|
-
skydeckai-code-cli --tool web_search --args '{
|
574
|
-
"query": "latest python release features"
|
575
|
-
}'
|
576
|
-
|
577
|
-
# Try DuckDuckGo if you want alternative results
|
578
|
-
skydeckai-code-cli --tool web_search --args '{
|
579
|
-
"query": "machine learning frameworks comparison",
|
580
|
-
"search_engine": "duckduckgo"
|
581
|
-
}'
|
582
|
-
|
583
|
-
# Use Bing for reliable results
|
584
|
-
skydeckai-code-cli --tool web_search --args '{
|
585
|
-
"query": "best programming practices 2023",
|
586
|
-
"search_engine": "bing"
|
587
|
-
}'
|
588
|
-
```
|
589
|
-
|
590
469
|
### Utility Tools
|
591
470
|
|
592
471
|
#### batch_tools
|
@@ -640,47 +519,6 @@ This tool provides efficient execution of multiple operations in a single reques
|
|
640
519
|
1. Use paths relative to the current working directory (e.g., "project/src" rather than just "src"), or
|
641
520
|
2. Include an explicit tool invocation to change directories using `update_allowed_directory`
|
642
521
|
|
643
|
-
**CLI Usage:**
|
644
|
-
|
645
|
-
```bash
|
646
|
-
# Setup a new project with multiple steps in sequential order (using proper paths)
|
647
|
-
skydeckai-code-cli --tool batch_tools --args '{
|
648
|
-
"description": "Setup new project",
|
649
|
-
"sequential": true,
|
650
|
-
"invocations": [
|
651
|
-
{"tool": "create_directory", "arguments": {"path": "project"}},
|
652
|
-
{"tool": "create_directory", "arguments": {"path": "project/src"}},
|
653
|
-
{"tool": "write_file", "arguments": {"path": "project/README.md", "content": "# Project\n\nA new project."}}
|
654
|
-
]
|
655
|
-
}'
|
656
|
-
|
657
|
-
# Create nested structure using relative paths (without changing directory)
|
658
|
-
skydeckai-code-cli --tool batch_tools --args '{
|
659
|
-
"description": "Create project structure",
|
660
|
-
"sequential": true,
|
661
|
-
"invocations": [
|
662
|
-
{"tool": "create_directory", "arguments": {"path": "project/src"}},
|
663
|
-
{"tool": "create_directory", "arguments": {"path": "project/docs"}},
|
664
|
-
{"tool": "write_file", "arguments": {"path": "project/README.md", "content": "# Project"}}
|
665
|
-
]
|
666
|
-
}'
|
667
|
-
|
668
|
-
# Gather system information and take a screenshot (tasks can run in parallel)
|
669
|
-
skydeckai-code-cli --tool batch_tools --args '{
|
670
|
-
"description": "System diagnostics",
|
671
|
-
"sequential": false,
|
672
|
-
"invocations": [
|
673
|
-
{"tool": "get_system_info", "arguments": {}},
|
674
|
-
{"tool": "capture_screenshot", "arguments": {
|
675
|
-
"output_path": "diagnostics/screen.png",
|
676
|
-
"capture_mode": {
|
677
|
-
"type": "full"
|
678
|
-
}
|
679
|
-
}}
|
680
|
-
]
|
681
|
-
}'
|
682
|
-
```
|
683
|
-
|
684
522
|
#### think
|
685
523
|
|
686
524
|
A tool for complex reasoning and brainstorming without making changes to the repository.
|
@@ -701,20 +539,6 @@ Your thoughts formatted as markdown, with a note indicating this was a thinking
|
|
701
539
|
|
702
540
|
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.
|
703
541
|
|
704
|
-
**CLI Usage:**
|
705
|
-
|
706
|
-
```bash
|
707
|
-
# Analyze a bug and plan a fix
|
708
|
-
skydeckai-code-cli --tool think --args '{
|
709
|
-
"thought": "# Bug Analysis\n\n## Observed Behavior\nThe login endpoint returns a 500 error when email contains Unicode characters.\n\n## Root Cause\nThe database adapter is not properly encoding Unicode strings before constructing the SQL query.\n\n## Potential Fixes\n1. Update the database adapter to use parameterized queries\n2. Add input validation to reject Unicode in emails\n3. Encode email input manually before database operations\n\nFix #1 is the best approach as it solves the core issue and improves security."
|
710
|
-
}'
|
711
|
-
|
712
|
-
# Evaluate design alternatives
|
713
|
-
skydeckai-code-cli --tool think --args '{
|
714
|
-
"thought": "# API Design Options\n\n## REST vs GraphQL\nFor this use case, GraphQL would provide more flexible data fetching but adds complexity. REST is simpler and sufficient for our current needs.\n\n## Authentication Methods\nJWT-based authentication offers stateless operation and better scalability compared to session-based auth.\n\nRecommendation: Use REST with JWT authentication for the initial implementation."
|
715
|
-
}'
|
716
|
-
```
|
717
|
-
|
718
542
|
### Code Execution
|
719
543
|
|
720
544
|
#### execute_code
|
@@ -745,34 +569,6 @@ Executes code in various programming languages with safety measures and restrict
|
|
745
569
|
| code | string | Yes | Code to execute |
|
746
570
|
| timeout | integer | No | Maximum execution time (default: 5s) |
|
747
571
|
|
748
|
-
**CLI Usage:**
|
749
|
-
|
750
|
-
```bash
|
751
|
-
# Python example
|
752
|
-
skydeckai-code-cli --tool execute_code --args '{
|
753
|
-
"language": "python",
|
754
|
-
"code": "print(sum(range(10)))"
|
755
|
-
}'
|
756
|
-
|
757
|
-
# JavaScript example
|
758
|
-
skydeckai-code-cli --tool execute_code --args '{
|
759
|
-
"language": "javascript",
|
760
|
-
"code": "console.log(Array.from({length: 5}, (_, i) => i*2))"
|
761
|
-
}'
|
762
|
-
|
763
|
-
# Ruby example
|
764
|
-
skydeckai-code-cli --tool execute_code --args '{
|
765
|
-
"language": "ruby",
|
766
|
-
"code": "puts (1..5).reduce(:+)"
|
767
|
-
}'
|
768
|
-
|
769
|
-
# Go example
|
770
|
-
skydeckai-code-cli --tool execute_code --args '{
|
771
|
-
"language": "go",
|
772
|
-
"code": "fmt.Println(\"Hello, Go!\")"
|
773
|
-
}'
|
774
|
-
```
|
775
|
-
|
776
572
|
**Requirements:**
|
777
573
|
|
778
574
|
- Respective language runtimes must be installed
|
@@ -805,25 +601,6 @@ Executes shell scripts (bash/sh) with safety measures and restrictions.
|
|
805
601
|
| script | string | Yes | Shell script to execute |
|
806
602
|
| timeout | integer | No | Maximum execution time (default: 300s, max: 600s) |
|
807
603
|
|
808
|
-
**CLI Usage:**
|
809
|
-
|
810
|
-
```bash
|
811
|
-
# List directory contents with details
|
812
|
-
skydeckai-code-cli --tool execute_shell_script --args '{
|
813
|
-
"script": "ls -la"
|
814
|
-
}'
|
815
|
-
|
816
|
-
# Find all Python files recursively
|
817
|
-
skydeckai-code-cli --tool execute_shell_script --args '{
|
818
|
-
"script": "find . -name \"*.py\" -type f"
|
819
|
-
}'
|
820
|
-
|
821
|
-
# Complex script with multiple commands
|
822
|
-
skydeckai-code-cli --tool execute_shell_script --args '{
|
823
|
-
"script": "echo \"System Info:\" && uname -a && echo \"\nDisk Usage:\" && df -h"
|
824
|
-
}'
|
825
|
-
```
|
826
|
-
|
827
604
|
**Features:**
|
828
605
|
|
829
606
|
- Uses /bin/sh for maximum compatibility across systems
|
@@ -840,28 +617,119 @@ This tool executes arbitrary shell commands on your system. Always:
|
|
840
617
|
4. Be aware of potential system impacts
|
841
618
|
5. Monitor execution output
|
842
619
|
|
843
|
-
|
620
|
+
### Todo Tools
|
844
621
|
|
845
|
-
|
622
|
+
The todo tools provide sequential task management capabilities for workspace-first development workflows. Tasks are executed in order without priority systems, ensuring structured progress through development phases.
|
846
623
|
|
624
|
+
#### todo_read
|
625
|
+
|
626
|
+
Read the current todo list for the workspace.
|
627
|
+
|
628
|
+
```json
|
629
|
+
{}
|
630
|
+
```
|
631
|
+
|
632
|
+
**Returns:**
|
847
633
|
```json
|
848
634
|
{
|
849
|
-
|
635
|
+
"todos": [
|
636
|
+
{
|
637
|
+
"id": "abc123",
|
638
|
+
"content": "Implement user authentication",
|
639
|
+
"status": "in_progress",
|
640
|
+
"metadata": {
|
641
|
+
"custom_key": "custom_value"
|
642
|
+
},
|
643
|
+
"created_at": "2023-10-01T10:00:00Z",
|
644
|
+
"updated_at": "2023-10-01T11:30:00Z"
|
645
|
+
}
|
646
|
+
],
|
647
|
+
"count": 1,
|
648
|
+
"workspace": "/path/to/workspace"
|
850
649
|
}
|
851
650
|
```
|
852
651
|
|
853
|
-
|
652
|
+
#### todo_write
|
854
653
|
|
855
|
-
|
654
|
+
Replace the entire todo list for sequential execution workflow. Tasks are executed in array order, building upon previous work.
|
856
655
|
|
857
|
-
```
|
858
|
-
|
656
|
+
```json
|
657
|
+
{
|
658
|
+
"todos": [
|
659
|
+
{
|
660
|
+
"id": "task1",
|
661
|
+
"content": "Set up database schema",
|
662
|
+
"status": "pending"
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"id": "task2",
|
666
|
+
"content": "Create API endpoints",
|
667
|
+
"status": "pending",
|
668
|
+
"metadata": {
|
669
|
+
"custom_key": "custom_value"
|
670
|
+
}
|
671
|
+
}
|
672
|
+
]
|
673
|
+
}
|
674
|
+
```
|
675
|
+
|
676
|
+
**Sequential Workflow Rules:**
|
677
|
+
- Each todo must have unique ID
|
678
|
+
- Only one task can be "in_progress" at a time (sequential execution)
|
679
|
+
- Tasks execute in array order - no priority system
|
680
|
+
- Required fields: id, content, status
|
681
|
+
- Status values: "pending", "in_progress", "completed"
|
682
|
+
- Workspace-first: Todo management is mandatory for all workspace operations
|
683
|
+
|
684
|
+
#### todo_update
|
859
685
|
|
860
|
-
|
861
|
-
skydeckai-code-cli --list-tools
|
686
|
+
Update a specific todo item by ID for sequential workflow progression.
|
862
687
|
|
863
|
-
|
864
|
-
|
688
|
+
```json
|
689
|
+
{
|
690
|
+
"todo_id": "task1",
|
691
|
+
"updates": {
|
692
|
+
"status": "in_progress",
|
693
|
+
"metadata": {
|
694
|
+
"new_key": "new_value"
|
695
|
+
}
|
696
|
+
}
|
697
|
+
}
|
698
|
+
```
|
699
|
+
|
700
|
+
**Returns:**
|
701
|
+
```json
|
702
|
+
{
|
703
|
+
"success": true,
|
704
|
+
"updated_todo": {
|
705
|
+
"id": "task1",
|
706
|
+
"content": "Set up database schema",
|
707
|
+
"status": "in_progress",
|
708
|
+
"updated_at": "2023-10-01T12:00:00Z",
|
709
|
+
"metadata": {
|
710
|
+
"new_key": "new_value"
|
711
|
+
}
|
712
|
+
},
|
713
|
+
"counts": {
|
714
|
+
"pending": 1,
|
715
|
+
"in_progress": 1,
|
716
|
+
"completed": 0,
|
717
|
+
"total": 2
|
718
|
+
},
|
719
|
+
"workspace": "/path/to/workspace"
|
720
|
+
}
|
721
|
+
```
|
722
|
+
|
723
|
+
The todo system maintains separate sequential task lists for each workspace, enforcing mandatory usage for all workspace operations. Tasks execute in order, building upon previous work without priority-based scheduling.
|
724
|
+
|
725
|
+
## Configuration
|
726
|
+
|
727
|
+
Configuration file: `~/.skydeckai_code/config.json`
|
728
|
+
|
729
|
+
```json
|
730
|
+
{
|
731
|
+
"allowed_directory": "/path/to/workspace"
|
732
|
+
}
|
865
733
|
```
|
866
734
|
|
867
735
|
## Debugging
|