fizzy_step
Manage steps on Fizzy kanban cards by creating, completing, updating, uncompleting, or deleting them based on provided parameters.
Instructions
Create, complete, update, uncomplete, or delete a step on a card.
Mode detection:
stepabsent → CREATE (requirescontent)steppresent, no other params → COMPLETE (default action)step+content→ UPDATE contentstep+completed: false→ UNCOMPLETEstep+delete: true→ DELETE
Arguments:
account_slug(optional): Uses session default if omittedcard_number(required): Card number containing the stepstep(optional): Content substring to match OR 1-based index to identify existing stepcontent(optional): Step text for create or updatecompleted(optional): Set completion state (true or false)delete(optional): Delete the step
Returns: JSON with step id, content, completed status.
Examples:
Create:
{card_number: 42, content: "Write tests"}Complete:
{card_number: 42, step: "Write tests"}Uncomplete:
{card_number: 42, step: 1, completed: false}Update:
{card_number: 42, step: 1, content: "Write unit tests"}Delete:
{card_number: 42, step: "Write tests", delete: true}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account_slug | No | Account slug. Uses default if omitted. | |
| card_number | Yes | Card number containing the step. | |
| step | No | Step to act on: content substring or 1-based index. Omit to create. | |
| content | No | Step text for create or update. | |
| completed | No | Set completion state. | |
| delete | No | Delete the step. |