board-update

Update kanban task status, assignment, and metadata via Supabase.

Updated Mar 1, 2026
One-click install
npx skills add https://github.com/clenisa/optimal-cli --skill board-update
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: board-update
Source: https://github.com/clenisa/optimal-cli/tree/main/skills/board-update
Command: npx skills add https://github.com/clenisa/optimal-cli --skill board-update

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Provides a concise, programmatic way to update a kanban task's status, assignment, priority, or metadata to avoid manual edits, synchronization drift, and lost activity context.

Core Features & Use Cases

  • Status transitions: Change task state across backlog, ready, in_progress, blocked, review, done, and canceled.
  • Assignment and priority: Assign an agent and adjust priority to route work to the correct owner.
  • Audit logging: Record activity entries when updates occur to preserve an actionable change history.
  • Use Case: An agent claims a task, sets status to in_progress, assigns themselves, and adds a brief message so teammates see progress and blockers.

Quick Start

Update task 123e4567-e89b-12d3-a456-426614174000 to status done, assign it to agent claude-code, set priority 2, and add the message Completed the requested changes.

Frequently Asked Questions about board-update

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I update a kanban task status in Supabase?

To update a Supabase kanban task status, call lib/board/index.ts functions to transition states like backlog, ready, in_progress, blocked, review, done, or canceled. The Skill applies these changes programmatically and returns an updated task summary.

Can I assign an agent and change priority on a kanban task simultaneously?

Yes, you can update a kanban task assignment and priority simultaneously. By passing the agent identifier and priority level to the board update function, it routes work to the correct owner and adjusts priority in a single operation.

Does updating a kanban task automatically log activity history?

Yes, updating a kanban task automatically logs activity history. The Skill records activity entries during status transitions and assignment updates to preserve an actionable change history for teammates tracking progress and blockers.

What Supabase credentials are required for agent-driven kanban board updates?

Agent-driven kanban board updates require valid Supabase credentials configured in your environment. These credentials allow the Skill to authenticate and execute lib/board/index.ts functions to modify task metadata and log activity.

What's the best way to flag a kanban task as blocked in an automated workflow?

The best way to flag a kanban task as blocked is to programmatically set its status to blocked using the board update function. You can include a brief message explaining the blocker, which is then preserved in the activity log for teammates.