home / skills / thebushidocollective / han / task

This skill retrieves and presents detailed information about a specific ClickUp task, including status, assignees, due date, and recent activity.

npx playbooks add skill thebushidocollective/han --skill task

Review the files below or copy the command above to add this skill to your agents.

Files (1)
SKILL.md
1.1 KB
---
name: task
description: Get detailed information about a specific ClickUp task
---

# task

## Name

clickup:task - Get detailed information about a specific ClickUp task

## Synopsis

```
/task [arguments]
```

## Description

Get detailed information about a specific ClickUp task

## Implementation

Retrieve and display comprehensive details for a ClickUp task.

**Usage**: `/task #ABC123` or `/task ABC123`

Use the ClickUp MCP tool `clickup_get_task` to fetch full task details.

Display in sections:

## đź“‹ Task: #ABC123

**Name**: {task name}
**Status**: {status}
**Assignees**: {assignees}
**Priority**: {priority}
**Due Date**: {due date}
**Created**: {created date}
**Updated**: {updated date}
**List**: {list name}
**Folder**: {folder name}
**Space**: {space name}

## Description

{full description with formatting}

## Checklist Items

{show all checklist items with completion status}

- [x] Completed item
- [ ] Incomplete item

## Custom Fields

{show any relevant custom fields}

## Recent Comments

{Show last 3 comments with author and date}

## Time Tracked

{show time entries if any}

Provide the direct link to the task at the end.

Overview

This skill retrieves and presents comprehensive details about a specific ClickUp task. It formats task metadata, description, checklist items, custom fields, recent comments, and time tracking into a clear, scannable report. Use it to quickly inspect a task without opening the ClickUp UI.

How this skill works

Provide a task identifier (with or without the # prefix) and the tool fetches full task data via the ClickUp MCP endpoint clickup_get_task. The skill organizes the response into sections: core metadata, formatted description, checklist items with completion status, custom fields, up to three recent comments, time tracking entries, and a direct task link. All fields returned by the API are mapped to human-friendly labels for immediate review.

When to use it

  • When you need a quick, consolidated view of a task without navigating ClickUp.
  • Before a meeting to gather status, assignees, due date, and recent discussion.
  • To verify custom field values or checklist progress for reporting or handoff.
  • When auditing recent activity, comments, or tracked time on a task.
  • During triage to see status, priority, and related list/folder/space context.

Best practices

  • Provide the exact task ID (with or without leading #) to avoid ambiguity.
  • Use the direct task link included in the report to open ClickUp when deeper edits are needed.
  • Check the Recent Comments section for context before changing status or reassigning.
  • Verify custom field values shown in the output when using them for automation triggers.
  • If time tracking matters, confirm that time entries are synced from your tracking tool.

Example use cases

  • Prepare for a standup by fetching each attendee’s assigned task details and progress.
  • Review a task before reassigning or changing priority to ensure no recent blockers were posted.
  • Generate a summary for stakeholders that includes due date, assignees, and key comments.
  • Validate that checklist items are complete before marking a task done.
  • Collect task data for a retrospective or billing audit using time tracked and comments.

FAQ

What input formats are accepted for the task identifier?

You can pass the task ID with or without a leading # (for example, #ABC123 or ABC123).

How many recent comments are shown?

The skill shows up to the last three comments with author and date for quick context.

Does the skill modify the task?

No. This skill only retrieves and displays task information; it does not change task data.