Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Taykl12/Classify/llms.txt

Use this file to discover all available pages before exploring further.

Tasks are the day-to-day work items inside a Project Group. Each task belongs to a single project, carries a priority level, moves through a defined set of status stages, and can have a deadline. The Classify task board gives teams a clear picture of what is in progress, what is waiting, and what has been completed — and active tasks surface directly on the Dashboard so nothing slips through the cracks.

Creating a Task

Tasks are created against a specific project. At minimum you need a title and a projectId. Priority and deadline are optional but highly recommended for deadline-driven academic work.
{
  "projectId": "proj_abc123",
  "title": "Implement soil moisture sensor driver",
  "description": "Write the ESP32 driver code for the capacitive soil moisture sensor and expose a calibrated percentage reading.",
  "priority": "Alta",
  "deadline": "2024-11-15"
}
Classify internally calls the create_tarea_grupo database function to persist the task and link it to the project via id_grupo.
1

Open your project

Go to Projects, select the project where the task belongs, and navigate to the Tasks tab.
2

Create a new task

Click Add Task, enter the title, optional description, priority, and deadline, then confirm.
3

Track progress

Drag the task card between columns or use the status dropdown to move it through Pendiente → En Progreso → Completado.

Priority Levels

Every task is assigned one of three priority levels. If no priority is specified during creation, it defaults to Media.

Alta

High-priority work that should be addressed immediately. Displayed with a red indicator on the task card.

Media

Standard priority. The default for all newly created tasks. Displayed with a yellow indicator.

Baja

Low-priority items that can be addressed when bandwidth allows. Displayed with a green indicator.

Task Status Stages

Tasks flow through three stages on the Kanban board.
StatusMeaning
PendienteNot yet started. All new tasks begin here.
En ProgresoActively being worked on by a team member.
CompletadoWork is finished. Task moves to the completed column.
Keep tasks in En Progreso only while actively working on them. A long list of in-progress tasks makes it harder to see true blockers at a glance.

Task Fields Reference

projectId
string
required
The ID of the project this task belongs to. Must be a project accessible to the authenticated user.
title
string
required
A short, descriptive title for the task. Displayed as the card heading on the Kanban board.
description
string
An optional longer description of the work required. Rendered inside the task detail panel.
priority
string
default:"Media"
One of Alta, Media, or Baja. Controls visual emphasis and sort order in dashboard views.
deadline
string
ISO date string (YYYY-MM-DD). When provided, overdue tasks are highlighted on both the board and the Dashboard pending list.

Tasks on the Dashboard

The Dashboard aggregates tasks that still require attention across all your projects. Any task whose status is Pendiente or En Progreso appears in the Pending Tasks section of the Dashboard, sorted by deadline in ascending order so the most urgent items always appear first.
Completed tasks (Completado) are excluded from the Dashboard pending list. Mark tasks complete promptly to keep your dashboard focused on active work.
See the Dashboard page for more details on how pending tasks are displayed and filtered.

Build docs developers (and LLMs) love