File size: 1,581 Bytes
81ff144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
-- Agent Marketplace Table
CREATE TABLE IF NOT EXISTS agent_templates (
    id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
    name TEXT NOT NULL,
    role TEXT NOT NULL,
    description TEXT,
    model TEXT NOT NULL,
    api_provider TEXT NOT NULL,
    system_prompt TEXT,
    category TEXT, -- e.g., 'Marketing', 'Development', 'Legal'
    author_id UUID REFERENCES auth.users(id),
    is_featured BOOLEAN DEFAULT false,
    usage_count INT DEFAULT 0,
    created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP
);

-- RLS for Marketplace (Public View)
ALTER TABLE agent_templates ENABLE ROW LEVEL SECURITY;

CREATE POLICY "Anyone can view templates" ON agent_templates
    FOR SELECT USING (true);

CREATE POLICY "Users can create their own templates" ON agent_templates
    FOR INSERT WITH CHECK (auth.uid() = author_id);

-- Seed some marketplace templates
INSERT INTO agent_templates (name, role, description, model, api_provider, category, system_prompt)
VALUES 
('Growth Hacker', 'Marketing Expert', 'Optimizes funnels and generates viral content ideas.', 'gpt-4o', 'openai', 'Marketing', 'You are a Growth Hacker focused on low-cost, high-impact strategies.'),
('Code Architect', 'Senior Developer', 'Designs robust software architectures and reviews code.', 'gpt-4o', 'openai', 'Development', 'You are a Code Architect. Focus on scalability, security, and clean code.'),
('Legal Analyst', 'Legal Advisor', 'Analyzes contracts and identifies legal risks.', 'gpt-4o', 'openai', 'Legal', 'You are a Legal Analyst. Review documents with high precision and caution.');