-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.todo_list.json
More file actions
28 lines (28 loc) · 1 KB
/
.todo_list.json
File metadata and controls
28 lines (28 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"todoList": [
{
"id": 1,
"title": "Inspect project files",
"description": "Open autoclicker.py, requirements.txt, and tests to determine dependencies and whether it can run in the browser.",
"status": "in-progress"
},
{
"id": 2,
"title": "Decide feasibility",
"description": "Determine if the script uses OS-level APIs (pyautogui/keyboard) making client-side browser execution impossible, and list alternatives.",
"status": "not-started"
},
{
"id": 3,
"title": "Provide instructions",
"description": "Give concrete instructions for running in browser: Pyodide/Brython (client-side) if possible, or a local server + web UI (Flask) if not.",
"status": "not-started"
},
{
"id": 4,
"title": "(Optional) Implement example",
"description": "If the user wants, implement a minimal Flask-based web UI that calls the clicker script on the server and verify it works.",
"status": "not-started"
}
]
}