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 taskReview the files below or copy the command above to add this skill to your agents.
---
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.
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.
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.
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.