askill
detail

detailSafety 100Repository

Show detailed information about a ClickUp task including description and comments

1 stars
1.2k downloads
Updated 1/16/2026

Package Files

Loading files...
SKILL.md

/clickup:detail - View Task Details

Purpose

Display comprehensive information about a ClickUp task including title, description, status, priority, tags, custom fields, and recent comments.

Usage

/clickup:detail <task_id>

Behavioral Flow

When this command is invoked with a task ID:

  1. Load Environment: Read ClickUp credentials from .env:

    • CLICKUP_TOKEN
  2. Fetch Task Details:

    curl -s "https://api.clickup.com/api/v2/task/${TASK_ID}" \
      -H "Authorization: ${CLICKUP_TOKEN}"
    
  3. Fetch Task Comments:

    curl -s "https://api.clickup.com/api/v2/task/${TASK_ID}/comment" \
      -H "Authorization: ${CLICKUP_TOKEN}"
    
  4. Display Formatted Output:

    ╔═══════════════════════════════════════════════════════════════════╗
    ║  📋 CLICKUP TASK DETAILS                                          ║
    ╚═══════════════════════════════════════════════════════════════════╝
    
    🆔 Task ID:     {task_id}
    📌 Title:       {task_name}
    📊 Status:      {status} {status_color_emoji}
    🎯 Priority:    {priority_flag} {priority_name}
    🏷️  Tags:        {tags_list or "None"}
    👤 Assignees:   {assignee_names or "Unassigned"}
    📅 Due Date:    {due_date or "No due date"}
    🔗 URL:         https://app.clickup.com/t/{task_id}
    
    ───────────────────────────────────────────────────────────────────
    📝 DESCRIPTION
    ───────────────────────────────────────────────────────────────────
    {task_description or "No description provided."}
    
    ───────────────────────────────────────────────────────────────────
    🔧 CUSTOM FIELDS
    ───────────────────────────────────────────────────────────────────
    {custom_field_name}: {custom_field_value}
    ...
    (If no custom fields: "No custom fields set.")
    
    ───────────────────────────────────────────────────────────────────
    💬 COMMENTS ({comment_count})
    ───────────────────────────────────────────────────────────────────
    
    [{timestamp}] @{username}:
    {comment_text}
    
    [{timestamp}] @{username}:
    {comment_text}
    
    ...
    
    (If no comments: "No comments on this task.")
    
    ═══════════════════════════════════════════════════════════════════
    

Field Extraction

From Task Response

FieldJSON PathDescription
Task IDidUnique task identifier
TitlenameTask name/title
Statusstatus.statusCurrent status name
Status Colorstatus.colorStatus color for emoji mapping
Prioritypriority.priorityPriority level (1=urgent, 4=low)
Priority Namepriority.priority"urgent", "high", "normal", "low"
Tagstags[].nameArray of tag names
Assigneesassignees[].usernameArray of assigned usernames
Due Datedue_dateUnix timestamp (convert to readable)
DescriptiondescriptionMarkdown description
Text Contenttext_contentPlain text version
Custom Fieldscustom_fields[]Array of custom field objects

From Comments Response

FieldJSON PathDescription
Comment Textcomments[].comment_textComment content
Usernamecomments[].user.usernameAuthor username
Timestampcomments[].dateUnix timestamp

Status Emoji Mapping

StatusEmoji
to do
in progress🔵
in review🟡
complete🟢
closed

Priority Emoji Mapping

PriorityEmoji
urgent🔴
high🟠
normal🔵
low

Error Handling

  • Task ID not provided: Show usage instructions
  • Task not found: "Task {task_id} not found. Please verify the task ID."
  • API error: "Failed to fetch task details: {error_message}"
  • Invalid token: "ClickUp authentication failed. Check CLICKUP_TOKEN in .env"

Related Commands

  • /clickup:list - List tasks from ClickUp
  • /clickup:process <id> - Start working on a task
  • /clickup:work <id> - Spawn subagent to work on task
  • /clickup:done - Complete and merge task

Tool Coordination

  • Bash: curl for ClickUp API calls
  • Read: Load .env for credentials

ARGUMENTS: $ARGUMENTS

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

96/100Analyzed 2/12/2026

An exceptionally well-documented skill for ClickUp task integration. It provides clear triggers, technical implementation details including specific API endpoints and JSON path mappings, and a detailed output template.

100
100
90
98
95

Metadata

Licenseunknown
Version-
Updated1/16/2026
Publishermethuz

Tags

api