7 AI-Role · JD + Boundary
Karyawan digital dengan kontrak implisit. Setiap role = 1 row di ai_roles D1 table (Layer A Role Registry). Budget locked, tools allowlist, approval gate wajib, escalation rule tertulis.
AI Growth Operator
Menghasilkan 24/7 aset GTM: draft konten, repurposing, SEO clustering, email nurture, landing copy, KPI summary.
AI SDR Operator
Prospect research, ICP matching, first-message drafting, follow-up cadence, CRM hygiene, meeting prep brief.
AI Support & Docs Operator
FAQ answering, ticket triage, docs draft, onboarding checklist, issue summarization, escalation routing.
AI Finance Ops Assistant
Invoice prep, contract checklist, payment reminder, monthly cashflow labeling, compliance reminder, document routing.
AI Research & Market Intel
Competitor watch, market trend digest, buyer brief, insight summary untuk founder decision-making.
AI QA / Release Analyst
Release notes drafting, test checklist, anomaly detection, bug summary, postmortem analysis.
Founder Copilot Chamber
Daily briefing, anomaly alerts, revenue summary, blocker escalation, approval proposals, canon freeze proposal.
Role Registry Schema (Layer A · Production DDL)
CREATE TABLE IF NOT EXISTS ai_roles (
id TEXT PRIMARY KEY, -- 'ai-growth-op-v1'
tenant_id TEXT NOT NULL, -- Canon #8 Tenant Isolation
role_name TEXT NOT NULL,
mission TEXT NOT NULL,
ring_primary INTEGER CHECK (ring_primary BETWEEN 1 AND 7),
ring_secondary INTEGER CHECK (ring_secondary BETWEEN 1 AND 7),
tools_allowed TEXT NOT NULL, -- JSON array
tools_forbidden TEXT NOT NULL, -- JSON array
budget_daily_usd REAL NOT NULL,
budget_monthly_usd REAL NOT NULL,
approval_gate_rule TEXT NOT NULL, -- JSON policy
escalation_rule TEXT NOT NULL, -- JSON trigger
kpi_target TEXT NOT NULL, -- JSON KPI
status TEXT NOT NULL DEFAULT 'active', -- active | paused | retired
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (tenant_id) REFERENCES tenants(id)
);
CREATE INDEX idx_ai_roles_tenant ON ai_roles(tenant_id, status);Repo owner: Lane-eco-budget-control-system· Canon protects: #1 · #8 · #16