The Classify Dashboard is the first screen you see after logging in. It is designed to surface the information that needs your attention right now: the projects you care about most and the tasks that are still waiting to be completed. Two dedicated sections — Featured Projects and Pending Tasks — keep you oriented without requiring you to dig through individual project pages.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.
Featured Projects
The Featured Projects carousel displays up to ten of your favorited projects, ordered by their number of non-completed tasks (bothPendiente and En Progreso) in descending order. Projects with the most unfinished work bubble to the front so you always open the busiest project first.
Data for this section comes from GET /api/dashboard/featured, which returns your favorited projects together with each project’s pending task count.
Up to 10 projects shown
Only projects you have personally marked as favorites appear here. Projects without the favorite flag are never included regardless of activity.
Sorted by pending tasks
Projects are ordered by their count of non-completed tasks (both
Pendiente and En Progreso), descending.Marking a Project as Favorite
To add a project to your Featured Projects carousel, open the project’s detail page and click the star icon in the project header.- UI
- API
- Navigate to Projects and open the project you want to feature.
- Click the star icon next to the project name in the header.
- The icon fills to confirm the project is now favorited and will appear in the Dashboard carousel.
- Click the icon again to unfavorite and remove it from the carousel.
Only the project owner can toggle the favorite flag. If you are a member but not the owner of a project, you will not see the star icon on that project’s detail page.
Pending Tasks
The Pending Tasks section aggregates every task across all your accessible projects that has not yet been completed. Tasks are fetched fromGET /api/dashboard/pending and sorted by deadline in ascending order — the task with the nearest due date appears at the top.
Pendiente
Tasks that have not been started yet. Shown in the pending list until moved to En Progreso or Completado.
En Progreso
Tasks actively being worked on. These remain visible on the Dashboard until marked complete.
- Task summary and the project name it belongs to
- Priority indicator (Alta / Media / Baja) with colour coding
- Status indicator (
PendienteorEn curso)
Theme Toggle
Classify supports both light and dark visual themes. The toggle is accessible from the Dashboard header and persists your preference across sessions.- Light Mode
- Dark Mode
The default theme. Clean white backgrounds with dark text, suited to well-lit environments.
localStorage under the key classify-theme. Clearing site data or switching browsers will reset the preference to the default light theme.
Dashboard API Reference
Unique project identifier.
Display name of the favorited project.
Number of non-completed tasks (status is not
Completado) for this project. Used to sort the carousel.Unique task identifier.
The task title, or description if no title is set, as entered on the project’s task board.
Either
Pendiente or En curso. Tasks with board status En Progreso are returned as En curso.Task priority:
Alta, Media, or Baja.Name of the project the task belongs to, for display context on the Dashboard card.