- growth-engine: Autonomous experiment engine (Karpathy autoresearch for marketing) - sales-pipeline: RB2B router, deal resurrector, trigger prospector, ICP learner - content-ops: Expert panel, quality gate, editorial brain, quote miner - outbound-engine: Cold outbound optimizer, lead pipeline, competitive monitor - seo-ops: Content attack briefs, GSC optimizer, trend scout - finance-ops: CFO briefing, cost estimate, scenario modeler 79 files, all sanitized - zero hardcoded credentials or internal references.
73 lines
3 KiB
Text
73 lines
3 KiB
Text
# Growth Engine Configuration
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# ── Core Settings ──────────────────────────────────────────────────────────────
|
|
|
|
# Where experiment data is stored (default: ./data/experiments)
|
|
GROWTH_ENGINE_DATA_DIR=./data/experiments
|
|
|
|
# Comma-separated list of agent/channel names to track
|
|
GROWTH_ENGINE_AGENTS=content,email,linkedin,seo,blog
|
|
|
|
# Agents with high-volume data (need only 10 samples/variant for significance)
|
|
HIGH_VOLUME_AGENTS=content,email
|
|
|
|
# Agents with low-volume data (need 30 samples/variant for significance)
|
|
LOW_VOLUME_AGENTS=seo,linkedin,blog
|
|
|
|
# ── Statistical Thresholds ─────────────────────────────────────────────────────
|
|
|
|
# p-value threshold for declaring a winner (default: 0.05)
|
|
P_WINNER=0.05
|
|
|
|
# p-value threshold for "trending" early signal (default: 0.10)
|
|
P_TREND=0.10
|
|
|
|
# Minimum % lift required for "keep" decision (default: 15.0)
|
|
LIFT_WIN=15.0
|
|
|
|
# Number of bootstrap resamples for confidence intervals (default: 1000)
|
|
BOOTSTRAP_ITERATIONS=1000
|
|
|
|
# Maximum variants allowed in batch mode (default: 10)
|
|
BATCH_MODE_MAX_VARIANTS=10
|
|
|
|
# ── Pacing Alert: Pipeline API ─────────────────────────────────────────────────
|
|
|
|
# Your pipeline/CRM dashboard API endpoint
|
|
PIPELINE_API_URL=
|
|
# Bearer token for pipeline API authentication
|
|
PIPELINE_AUTH_TOKEN=
|
|
|
|
# ── Pacing Alert: Recruiting API ───────────────────────────────────────────────
|
|
|
|
# Your recruiting/candidate dashboard API endpoint
|
|
RECRUITING_API_URL=
|
|
# Bearer token for recruiting API authentication
|
|
RECRUITING_AUTH_TOKEN=
|
|
|
|
# ── Pacing Alert: Email Platform ───────────────────────────────────────────────
|
|
|
|
# Email sending platform API base URL (e.g., Instantly, Lemlist, Smartlead)
|
|
EMAIL_API_URL=
|
|
# Bearer token for email platform API
|
|
EMAIL_AUTH_TOKEN=
|
|
|
|
# Campaign IDs as JSON objects: {"Campaign Name": "campaign-uuid"}
|
|
OUTBOUND_CAMPAIGNS={}
|
|
RECRUITING_CAMPAIGNS={}
|
|
|
|
# ── Pacing Alert: Targets ─────────────────────────────────────────────────────
|
|
|
|
# Minimum leads to stage per day (alert if below this)
|
|
DAILY_LEAD_TARGET=10
|
|
|
|
# Weekly candidate sourcing target
|
|
WEEKLY_CANDIDATE_TARGET=400
|
|
|
|
# ── Timezone ───────────────────────────────────────────────────────────────────
|
|
|
|
# UTC offset for local time display (e.g., -7 for PDT, -8 for PST)
|
|
TZ_OFFSET=-7
|
|
# Label for display
|
|
TZ_LABEL=PDT
|