> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Task Details

> View and manage a single task including status, priority, due date, assignee, comments, dependencies, and time tracking.

The Task Details page provides a full view of a single task, enabling status transitions, edits, dependency management, discussion threads, and time tracking. It is reached at `/tasks/:taskId`.

## Overview

The page resolves the `:taskId` URL parameter and fetches the task via `useTask`. It displays:

* **Header**: task title, status badge, priority badge, source type badge, and a dropdown with Edit, Complete/Pause/Resume, and Delete actions.
* **Metadata section**: assignee avatar, due date, created date, linked entity.
* **Checklist**: task sub-items (if any).
* **Dependencies**: editable list via `TaskDependencyEditor`.
* **Discussion**: `TaskDiscussionThread` for comments.
* **Time tracking**: `TaskTimeSection` for logging time entries.

The breadcrumb label updates dynamically to the task's title via `useEntityBreadcrumb`.

## Who it's for

Access follows your organization's role and module configuration. Access is limited by organization scoping; users can only see tasks belonging to their organization.

## Before you start

* You need the task's ID (typically navigated to from `/tasks` or a linked entity).
* Editing or deleting requires appropriate permissions on the task entity.

## Steps

1. Click a task from the **Tasks** list (`/tasks`) or a linked entity to navigate to `/tasks/:taskId`.
2. Review task details including status, priority, due date, and assignee.
3. Use the dropdown (three-dot menu) to **Edit**, **Complete**, **Pause/Resume**, or **Delete** the task.
4. Add comments in the **Discussion** section.
5. Add or remove task dependencies as needed.
6. Log time entries in the **Time tracking** section.

## Key concepts

**Source type** — indicates where the task originated (manual, automation, module trigger).

**Dependencies** — tasks that must be completed before or after this task.

## Related

<Columns cols={2}>
  <Card title="Platform Foundation" icon="layer-group" href="/pf/overview">
    Platform Foundation overview.
  </Card>

  <Card title="Governance & parity" icon="scale-balanced" href="/governance/index" />
</Columns>

<Note>
  This page documents shipped product behavior. It is not medical, legal, or
  billing advice. Verify against your organization's policies and applicable
  regulations before using it for clinical, compliance, or billing decisions.
  Protected health information (PHI) shown in the product is governed by your
  tenant's access controls and is never exposed in this documentation.
</Note>

<Accordion title="Documentation sources">
  * src/routes/platform.tsx
  * src/platform/tasks/pages/TaskDetailPage.tsx
  * src/platform/tasks/hooks/useTask.ts
  * src/platform/tasks/components/TaskDependencyEditor.tsx
</Accordion>
