- Complete agents management page with create dialog, runtime device selector, skills/tools/triggers/tasks tabs, and agent detail view - Add AssigneePicker to issue detail page for assigning to members or agents - Extend agent types with description, skills, tools, triggers, RuntimeDevice - Add SDK methods for agent CRUD and task listing - Add migration 002 for agent config columns (skills, tools, triggers) - Update seed data with realistic agent configurations - Use auth context as single source of truth for agents (fixes state sync) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
282 B
SQL
6 lines
282 B
SQL
-- Add agent configuration columns: skills, tools, triggers
|
|
ALTER TABLE agent
|
|
ADD COLUMN description TEXT NOT NULL DEFAULT '',
|
|
ADD COLUMN skills TEXT NOT NULL DEFAULT '',
|
|
ADD COLUMN tools JSONB NOT NULL DEFAULT '[]',
|
|
ADD COLUMN triggers JSONB NOT NULL DEFAULT '[]';
|