TidyFactor Ecosystem
v1.3.0 RELEASE

TidyFactor Next.js

Production-grade Multi-Tenant SaaS architecture, locked Postgres RLS data isolation & dual performance engine for AI coding agents.

Locked Postgres RLS
Next.js 16 & React 19
Fail-Closed Edge Auth
Dual Perf Engine (8-Tier + 6 Models)
tenant-isolation-policy.sql
🔒 RLS ENFORCED
-- Strict fail-closed tenant boundary
ALTER TABLE organizations ENABLE ROW LEVEL SECURITY;

CREATE POLICY "org_tenant_isolation"
  ON organizations FOR ALL
  USING (tenant_id = (auth.jwt() ->> 'tenant_id')::uuid)
  WITH CHECK (tenant_id = (auth.jwt() ->> 'tenant_id')::uuid);
$ npx @tidyfactor/cli-next add-skill
âš¡ INSTANT INJECT