Skip to main content
Starter templates live in the public GitHub repo usenaive/app-dev-templates, organized as {type}/{variant}. Direct-mode users clone a template, build locally, and deploy with POST /v1/apps/:id/deploy. In orchestrated mode, the same templates are scaffolded into engineer agent workspaces automatically.
curl https://api.usenaive.ai/v1/apps/templates \
  -H "Authorization: Bearer nv_sk_live_..."
{
  "repoUrl": "https://github.com/usenaive/app-dev-templates",
  "templates": [
    {
      "type": "frontend_only",
      "description": "Next.js landing/marketing site (no backend)",
      "defaultVariant": "dark-premium",
      "variants": [
        {
          "variant": "dark-premium",
          "path": "frontend_only/dark-premium",
          "cloneCommand": "git clone https://github.com/usenaive/app-dev-templates naive-app && cd naive-app/frontend_only/dark-premium"
        },
        { "variant": "clean-minimal", "path": "frontend_only/clean-minimal", "cloneCommand": "..." },
        { "variant": "bold-energetic", "path": "frontend_only/bold-energetic", "cloneCommand": "..." },
        { "variant": "warm-human", "path": "frontend_only/warm-human", "cloneCommand": "..." }
      ]
    },
    {
      "type": "fullstack",
      "description": "Next.js + Supabase (database, auth, storage)",
      "defaultVariant": "saas-dashboard",
      "variants": [
        {
          "variant": "saas-dashboard",
          "path": "fullstack/saas-dashboard",
          "cloneCommand": "git clone https://github.com/usenaive/app-dev-templates naive-app && cd naive-app/fullstack/saas-dashboard"
        }
      ]
    }
  ]
}

Template Block on Apps

Every app’s create and get responses include a template object resolved for that app:
{
  "template": {
    "repoUrl": "https://github.com/usenaive/app-dev-templates",
    "path": "fullstack/saas-dashboard",
    "variant": "saas-dashboard",
    "cloneCommand": "git clone https://github.com/usenaive/app-dev-templates naive-app && cd naive-app/fullstack/saas-dashboard"
  }
}

Variant Styles

VariantStyleBest For
dark-premiumDark, cyan accents, Stripe/Vercel aestheticDev tools, AI, premium SaaS
clean-minimalLight, blue accents, Linear/Notion feelB2B SaaS, productivity
bold-energeticWhite + orange/purple gradients, high energyConsumer, creative, marketplaces
warm-humanWarm cream, serif headings, editorial feelCommunities, wellness, creators
saas-dashboardFullstack dashboard with Supabase wiringSaaS products with a database