-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
36 lines (31 loc) · 1.55 KB
/
Copy path.env.example
File metadata and controls
36 lines (31 loc) · 1.55 KB
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
33
34
35
36
# =============================================================================
# Super Agent Skill — environment template
# Copy to .env and fill in. Never commit real secrets.
# =============================================================================
# --- Core (existing) ---------------------------------------------------------
VITE_SUPABASE_URL=https://<project>.supabase.co
VITE_SUPABASE_ANON_KEY=
SUPABASE_URL=https://<project>.supabase.co
SUPABASE_SERVICE_ROLE_KEY=
SUPABASE_JWT_SECRET=
# --- AI Gateway --------------------------------------------------------------
AI_GATEWAY_BASE_URL=https://api.openai.com/v1
AI_GATEWAY_API_KEY=
AI_GATEWAY_MODEL=openai/gpt-4o-mini
# --- Trust Score: release signing (Phase 2 + Phase 6) ------------------------
# Generate locally with:
# openssl genpkey -algorithm ed25519 -out priv.pem
# openssl pkey -in priv.pem -pubout -out pub.pem
# Then export the PEM contents (multi-line preserved):
# export SIGNING_PRIVATE_KEY="$(cat priv.pem)"
# export SIGNING_PUBLIC_KEY="$(cat pub.pem)"
SIGNING_PRIVATE_KEY=
SIGNING_PUBLIC_KEY=
# --- Telemetry anonymization (Phase 2) ---------------------------------------
# Any high-entropy string >= 32 chars. Workspaces are hashed with this salt
# before storage so analytics never sees raw workspace ids.
TELEMETRY_SALT=change-me-to-a-long-random-string
# --- CLI distribution (Phase 4 / viral) --------------------------------------
# Override only for self-hosted registries; users normally don't set this.
SUPER_AGENT_REGISTRY=https://superagentskill.com
SUPER_AGENT_TELEMETRY=1