Adding a task is the core action in Gestor de Tareas. When you select option 1 from the main menu, the application prompts you for a title and a description, then immediately persists the new task toDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/FranksGP/Gestor_de_tareas/llms.txt
Use this file to discover all available pages before exploring further.
Tareas.json with a status of Pending. Every task you create follows this same structure, making it straightforward to manage your list over time.
Workflow
Run the application
Open a terminal in the directory that contains The main menu is displayed:
index.py and start the program:Enter a title
The application asks for the task title. Type a short, descriptive name and press Enter:
Full terminal example
The complete interaction for adding a single task looks like this:What happens internally
When you confirm your input, the application executes the following chain:agregarTask(titulo, descripcion)is called with the values you entered. It loads the current task list from disk viacargarTask(), appends a new dictionary to the list, and then callsguardarTask(tasks).guardarTask(tasks)opensTareas.jsonin write mode and serialises the entire updated list back to disk usingjson.dumpwith an indent of 4 spaces.
Resulting JSON structure
After adding the example task above,Tareas.json will contain:
Every task created through option 1 always starts with
"completed": false. There is no way to add a task that is already marked as completed from the menu — the initial status is set unconditionally inside agregarTask.