move_kanban_card_tool
Move a Kanban card between columns by exact text match. Preserves metadata and formatting for workflow updates.
Instructions
Move a card between columns on a Kanban board (filesystem-native, offline).
Finds a card by matching its text, removes it from the source column, and adds it to the destination column. Preserves all metadata, subtasks, and formatting.
When to use:
Moving tasks through workflow stages
Dragging cards between columns programmatically
Batch workflow updates
Automated status changes
Performance:
< 500ms for boards with 1,000 cards
Returns: Success status, source/destination columns, and card details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Path to Kanban board file (relative to vault) | |
| card_text | Yes | Text of the card to move (must match exactly) | |
| from_column | Yes | Source column name | |
| to_column | Yes | Destination column name | |
| position | No | Where to insert in destination column | end |
| vault_path | No | Path to vault (optional, uses OBSIDIAN_VAULT_PATH env if not provided) | |
| ctx | No |