Skip to content

v1.1.25

Choose a tag to compare

@github-actions github-actions released this 29 Jun 06:33
· 15 commits to main since this release
v1.1.25
868b3bf

clickup_get_task now maps the full subtask tree

Previously clickup_get_task returned only a task's own description, so an agent handed an epic URL couldn't discover or read its children — it had to ask a human to paste every child URL, impractical past one level of nesting. It now traverses the descendant tree in a single request.

What's new

  • clickup_get_task passes include_subtasks=true by default and returns ClickUp's flattened descendant array as subtasks — direct subtasks and sub-subtasks, each slimmed to the same shape as list_tasks and carrying parent / top_level_parent. One GET is enough to rebuild the whole nesting. Pass include_subtasks=false to keep the payload small when you don't need the tree.
  • clickup_list_tasks and clickup_search_tasks gain an opt-in include_subtasks flag, since ClickUp's list/team endpoints omit subtasks by default.

Upgrade

brew upgrade aimonitor

Closes #30 · PR #31