feat(workspace): add context field for AI agent background info
Add a `context` text field to workspaces, allowing users to provide background information and context for AI agents working in the workspace. Full stack: migration, sqlc queries, Go handler, TS types, SDK, and settings page UI. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
3293607bef
commit
680668ffdb
11 changed files with 85 additions and 19 deletions
1
server/migrations/006_workspace_context.down.sql
Normal file
1
server/migrations/006_workspace_context.down.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE workspace DROP COLUMN IF EXISTS context;
|
||||
1
server/migrations/006_workspace_context.up.sql
Normal file
1
server/migrations/006_workspace_context.up.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE workspace ADD COLUMN context TEXT;
|
||||
Loading…
Add table
Add a link
Reference in a new issue