mirror of
https://github.com/coleam00/Archon
synced 2026-04-21 21:47:53 +00:00
Introduces work-centric isolation model where orchestrator is the single source of truth for all isolation decisions. Adapters now pass IsolationHints instead of managing worktrees directly. Key changes: - Add isolation_environments table for workflow-based isolation tracking - Add validateAndResolveIsolation to orchestrator as single decision point - Add cleanup-service for unified event-driven cleanup handling - Simplify GitHub adapter to delegate isolation to orchestrator - Add IsolationHints type for adapter-to-orchestrator communication - Support automatic worktree sharing between linked issues and PRs
70 lines
2.9 KiB
SQL
70 lines
2.9 KiB
SQL
-- Work-centric isolation environments
|
|
-- Version: 6.0
|
|
-- Description: Independent isolation entities with workflow identity
|
|
|
|
CREATE TABLE IF NOT EXISTS remote_agent_isolation_environments (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
codebase_id UUID NOT NULL REFERENCES remote_agent_codebases(id) ON DELETE CASCADE,
|
|
|
|
-- Workflow identification (what work this is for)
|
|
workflow_type TEXT NOT NULL, -- 'issue', 'pr', 'review', 'thread', 'task'
|
|
workflow_id TEXT NOT NULL, -- '42', 'pr-99', 'thread-abc123'
|
|
|
|
-- Implementation details
|
|
provider TEXT NOT NULL DEFAULT 'worktree',
|
|
working_path TEXT NOT NULL, -- Actual filesystem path
|
|
branch_name TEXT NOT NULL, -- Git branch name
|
|
|
|
-- Lifecycle
|
|
status TEXT NOT NULL DEFAULT 'active', -- 'active', 'destroyed'
|
|
created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
|
|
created_by_platform TEXT, -- 'github', 'slack', etc.
|
|
|
|
-- Cross-reference metadata (for linking)
|
|
metadata JSONB DEFAULT '{}',
|
|
|
|
CONSTRAINT unique_workflow UNIQUE (codebase_id, workflow_type, workflow_id)
|
|
);
|
|
|
|
-- Indexes for common queries
|
|
CREATE INDEX IF NOT EXISTS idx_isolation_env_codebase
|
|
ON remote_agent_isolation_environments(codebase_id);
|
|
CREATE INDEX IF NOT EXISTS idx_isolation_env_status
|
|
ON remote_agent_isolation_environments(status);
|
|
CREATE INDEX IF NOT EXISTS idx_isolation_env_workflow
|
|
ON remote_agent_isolation_environments(workflow_type, workflow_id);
|
|
|
|
-- Rename old column to legacy (for migration)
|
|
-- Note: This will fail if column doesn't exist or is already renamed - that's OK
|
|
DO $$
|
|
BEGIN
|
|
IF EXISTS (
|
|
SELECT 1 FROM information_schema.columns
|
|
WHERE table_name = 'remote_agent_conversations'
|
|
AND column_name = 'isolation_env_id'
|
|
AND data_type = 'character varying'
|
|
) THEN
|
|
ALTER TABLE remote_agent_conversations
|
|
RENAME COLUMN isolation_env_id TO isolation_env_id_legacy;
|
|
END IF;
|
|
END $$;
|
|
|
|
-- Add new UUID FK column
|
|
ALTER TABLE remote_agent_conversations
|
|
ADD COLUMN IF NOT EXISTS isolation_env_id UUID
|
|
REFERENCES remote_agent_isolation_environments(id) ON DELETE SET NULL;
|
|
|
|
-- Add last_activity_at for staleness detection
|
|
ALTER TABLE remote_agent_conversations
|
|
ADD COLUMN IF NOT EXISTS last_activity_at TIMESTAMP WITH TIME ZONE DEFAULT NOW();
|
|
|
|
-- Create index for FK lookups
|
|
CREATE INDEX IF NOT EXISTS idx_conversations_isolation_env_id
|
|
ON remote_agent_conversations(isolation_env_id);
|
|
|
|
COMMENT ON TABLE remote_agent_isolation_environments IS
|
|
'Work-centric isolated environments with independent lifecycle';
|
|
COMMENT ON COLUMN remote_agent_isolation_environments.workflow_type IS
|
|
'Type of work: issue, pr, review, thread, task';
|
|
COMMENT ON COLUMN remote_agent_isolation_environments.workflow_id IS
|
|
'Identifier for the work (issue number, PR number, thread hash, etc.)';
|