paperclip_update_goal
Update a goal's title, description, or status to reflect progress or changes. Use after planning sessions or when completing tasks.
Instructions
Update a goal's title, description, or status.
Args:
goalId: string — Goal UUID (example: "gol_abc123")
title: string (optional) — New title
description: string (optional) — New description (markdown)
status: string (optional) — New status (example: "completed")
Returns: Returns the updated goal object with all fields.
Examples:
Use when: closing a completed goal or updating its description after a planning session
Don't use when: you need to create a goal — use paperclip_create_goal instead
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: goal not found → verify ID with paperclip_list_goals
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goalId | Yes | Goal UUID | |
| title | No | New title | |
| description | No | New description (markdown) | |
| status | No | New status (e.g. active, completed) |