tinacms — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited tinacms (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Complete skill for integrating TinaCMS into modern web applications.
TinaCMS is an open-source, Git-backed headless content management system (CMS) that enables developers and content creators to collaborate seamlessly on content-heavy websites.
tina/config.ts)Use the appropriate setup pattern based on your framework choice.
#### App Router (Next.js 13+)
Steps:
npx @tinacms/cli@latest initpublic {
"scripts": {
"dev": "tinacms dev -c \"next dev\"",
"build": "tinacms build && next build",
"start": "tinacms build && next start"
}
} # .env.local
NEXT_PUBLIC_TINA_CLIENT_ID=your_client_id
TINA_TOKEN=your_read_only_token npm run dev http://localhost:3000/admin/index.htmlKey Files Created:
tina/config.ts - Schema configurationapp/admin/[[...index]]/page.tsx - Admin UI route (if using App Router)Template: See templates/nextjs/tina-config-app-router.ts
#### Pages Router (Next.js 12 and below)
Setup is identical, except admin route is:
pages/admin/[[...index]].tsx instead of app directoryData Fetching Pattern:
// pages/posts/[slug].tsx
import { client } from '../../tina/__generated__/client'
import { useTina } from 'tinacms/dist/react'
export default function BlogPost(props) {
// Hydrate for visual editing
const { data } = useTina({
query: props.query,
variables: props.variables,
data: props.data
})
return (
<article>
<h1>{data.post.title}</h1>
<div dangerouslySetInnerHTML={{ __html: data.post.body }} />
</article>
)
}
export async function getStaticProps({ params }) {
const response = await client.queries.post({
relativePath: `${params.slug}.md`
})
return {
props: {
data: response.data,
query: response.query,
variables: response.variables
}
}
}
export async function getStaticPaths() {
const response = await client.queries.postConnection()
const paths = response.data.postConnection.edges.map((edge) => ({
params: { slug: edge.node._sys.filename }
}))
return { paths, fallback: 'blocking' }
}Template: See templates/nextjs/tina-config-pages-router.ts
Steps:
npm install react@^19 react-dom@^19 tinacms npx @tinacms/cli@latest initpublic import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 3000 // TinaCMS default
}
}) {
"scripts": {
"dev": "tinacms dev -c \"vite\"",
"build": "tinacms build && vite build",
"preview": "vite preview"
}
}Option A: Manual route (React Router)
// src/pages/Admin.tsx
import TinaCMS from 'tinacms'
export default function Admin() {
return <div id="tina-admin" />
}Option B: Direct HTML
<!-- public/admin/index.html -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tina CMS</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/@fs/[path-to-tina-admin]"></script>
</body>
</html> import { useTina } from 'tinacms/dist/react'
import { client } from '../tina/__generated__/client'
function BlogPost({ initialData }) {
const { data } = useTina({
query: initialData.query,
variables: initialData.variables,
data: initialData.data
})
return (
<article>
<h1>{data.post.title}</h1>
<div>{/* render body */}</div>
</article>
)
} # .env
VITE_TINA_CLIENT_ID=your_client_id
VITE_TINA_TOKEN=your_read_only_tokenTemplate: See templates/vite-react/
Steps:
npx create-tina-app@latest --template tina-astro-starterOr initialize manually:
npx @tinacms/cli@latest init {
"scripts": {
"dev": "tinacms dev -c \"astro dev\"",
"build": "tinacms build && astro build",
"preview": "astro preview"
}
} // astro.config.mjs
import { defineConfig } from 'astro/config'
import react from '@astro/react'
export default defineConfig({
integrations: [react()] // Required for Tina admin
})client:tinaDirective for interactive editing # .env
PUBLIC_TINA_CLIENT_ID=your_client_id
TINA_TOKEN=your_read_only_tokenBest For: Content-focused static sites, documentation, blogs
Template: See templates/astro/
Applies to: Hugo, Jekyll, Eleventy, Gatsby, Remix, or any framework
Steps:
npx @tinacms/cli@latest init {
"scripts": {
"dev": "tinacms dev -c \"<your-dev-command>\"",
"build": "tinacms build && <your-build-command>"
}
}http://localhost:<port>/admin/index.html TINA_CLIENT_ID=your_client_id
TINA_TOKEN=your_read_only_tokenLimitations:
Define your content structure in tina/config.ts.
import { defineConfig } from 'tinacms'
export default defineConfig({
// Branch configuration
branch: process.env.GITHUB_BRANCH ||
process.env.VERCEL_GIT_COMMIT_REF ||
'main',
// TinaCloud credentials (if using managed service)
clientId: process.env.NEXT_PUBLIC_TINA_CLIENT_ID,
token: process.env.TINA_TOKEN,
// Build configuration
build: {
outputFolder: 'admin',
publicFolder: 'public',
},
// Media configuration
media: {
tina: {
mediaRoot: '',
publicFolder: 'public',
},
},
// Content schema
schema: {
collections: [
// Define collections here
],
},
})Collection = Content type + directory mapping
{
name: 'post', // Singular, internal name (used in API)
label: 'Blog Posts', // Plural, display name (shown in admin)
path: 'content/posts', // Directory where files are stored
format: 'mdx', // File format: md, mdx, markdown, json, yaml, toml
fields: [/* ... */] // Array of field definitions
}Key Properties:
name: Internal identifier (alphanumeric + underscores only)label: Human-readable name for admin interfacepath: File path relative to project rootformat: File extension (defaults to 'md')fields: Content structure definition| Type | Use Case | Example |
|---|---|---|
string | Short text (single line) | Title, slug, author name |
rich-text | Long formatted content | Blog body, page content |
number | Numeric values | Price, quantity, rating |
datetime | Date/time values | Published date, event time |
boolean | True/false toggles | Draft status, featured flag |
image | Image uploads | Hero image, thumbnail, avatar |
reference | Link to another document | Author, category, related posts |
object | Nested fields group | SEO metadata, social links |
Complete reference: See references/field-types-reference.md
#### Blog Post Collection
{
name: 'post',
label: 'Blog Posts',
path: 'content/posts',
format: 'mdx',
fields: [
{
type: 'string',
name: 'title',
label: 'Title',
isTitle: true, // Shows in content list
required: true
},
{
type: 'string',
name: 'excerpt',
label: 'Excerpt',
ui: {
component: 'textarea' // Multi-line input
}
},
{
type: 'image',
name: 'coverImage',
label: 'Cover Image'
},
{
type: 'datetime',
name: 'date',
label: 'Published Date',
required: true
},
{
type: 'reference',
name: 'author',
label: 'Author',
collections: ['author'] // References author collection
},
{
type: 'boolean',
name: 'draft',
label: 'Draft',
description: 'If checked, post will not be published',
required: true
},
{
type: 'rich-text',
name: 'body',
label: 'Body',
isBody: true // Main content area
}
],
ui: {
router: ({ document }) => `/blog/${document._sys.filename}`
}
}Template: See templates/collections/blog-post.ts
#### Documentation Page Collection
{
name: 'doc',
label: 'Documentation',
path: 'content/docs',
format: 'mdx',
fields: [
{
type: 'string',
name: 'title',
label: 'Title',
isTitle: true,
required: true
},
{
type: 'string',
name: 'description',
label: 'Description',
ui: {
component: 'textarea'
}
},
{
type: 'number',
name: 'order',
label: 'Order',
description: 'Sort order in sidebar'
},
{
type: 'rich-text',
name: 'body',
label: 'Body',
isBody: true,
templates: [
// MDX components can be defined here
]
}
],
ui: {
router: ({ document }) => {
const breadcrumbs = document._sys.breadcrumbs.join('/')
return `/docs/${breadcrumbs}`
}
}
}Template: See templates/collections/doc-page.ts
#### Author Collection (Reference Target)
{
name: 'author',
label: 'Authors',
path: 'content/authors',
format: 'json', // Use JSON for structured data
fields: [
{
type: 'string',
name: 'name',
label: 'Name',
isTitle: true,
required: true
},
{
type: 'string',
name: 'email',
label: 'Email',
ui: {
validate: (value) => {
if (!value?.includes('@')) {
return 'Invalid email address'
}
}
}
},
{
type: 'image',
name: 'avatar',
label: 'Avatar'
},
{
type: 'string',
name: 'bio',
label: 'Bio',
ui: {
component: 'textarea'
}
},
{
type: 'object',
name: 'social',
label: 'Social Links',
fields: [
{
type: 'string',
name: 'twitter',
label: 'Twitter'
},
{
type: 'string',
name: 'github',
label: 'GitHub'
}
]
}
]
}Template: See templates/collections/author.ts
#### Landing Page Collection (Multiple Templates)
{
name: 'page',
label: 'Pages',
path: 'content/pages',
format: 'mdx',
templates: [ // Multiple templates for different page types
{
name: 'basic',
label: 'Basic Page',
fields: [
{
type: 'string',
name: 'title',
label: 'Title',
isTitle: true,
required: true
},
{
type: 'rich-text',
name: 'body',
label: 'Body',
isBody: true
}
]
},
{
name: 'landing',
label: 'Landing Page',
fields: [
{
type: 'string',
name: 'title',
label: 'Title',
isTitle: true,
required: true
},
{
type: 'object',
name: 'hero',
label: 'Hero Section',
fields: [
{
type: 'string',
name: 'headline',
label: 'Headline'
},
{
type: 'string',
name: 'subheadline',
label: 'Subheadline',
ui: { component: 'textarea' }
},
{
type: 'image',
name: 'image',
label: 'Hero Image'
}
]
},
{
type: 'object',
name: 'cta',
label: 'Call to Action',
fields: [
{
type: 'string',
name: 'text',
label: 'Button Text'
},
{
type: 'string',
name: 'url',
label: 'Button URL'
}
]
}
]
}
]
}When using templates: Documents must include _template field in frontmatter:
---
_template: landing
title: My Landing Page
---Template: See templates/collections/landing-page.ts
Error Message:
ERROR: Schema Not Successfully Built
ERROR: Config Not Successfully ExecutedCauses:
window, DOM APIs, React hooks)Solution:
Import only what you need:
// ❌ Bad - Imports entire component directory
import { HeroComponent } from '../components/'
// ✅ Good - Import specific file
import { HeroComponent } from '../components/blocks/hero'Prevention Tips:
tina/config.ts imports minimal.schema.ts files if neededReference: See references/common-errors.md#esbuild
Error Message:
Error: Could not resolve "tinacms"Causes:
Solution:
# Clear cache and reinstall
rm -rf node_modules package-lock.json
npm install
# Or with pnpm
rm -rf node_modules pnpm-lock.yaml
pnpm install
# Or with yarn
rm -rf node_modules yarn.lock
yarn installPrevention:
package-lock.json, pnpm-lock.yaml, yarn.lock)--no-optional or --omit=optional flagsreact and react-dom are installed (even for non-React frameworks)Error Message:
Field name contains invalid charactersCause:
Solution:
// ❌ Bad - Uses hyphens
{
name: 'hero-image',
label: 'Hero Image',
type: 'image'
}
// ❌ Bad - Uses spaces
{
name: 'hero image',
label: 'Hero Image',
type: 'image'
}
// ✅ Good - Uses underscores
{
name: 'hero_image',
label: 'Hero Image',
type: 'image'
}
// ✅ Good - CamelCase also works
{
name: 'heroImage',
label: 'Hero Image',
type: 'image'
}Note: This is a breaking change from Forestry.io migration
Error:
Cause:
127.0.0.1 (localhost only) by default0.0.0.0 binding to accept external connectionsSolution:
# Ensure framework dev server listens on all interfaces
tinacms dev -c "next dev --hostname 0.0.0.0"
tinacms dev -c "vite --host 0.0.0.0"
tinacms dev -c "astro dev --host 0.0.0.0"Docker Compose Example:
services:
app:
build: .
ports:
- "3000:3000"
command: npm run dev # Which runs: tinacms dev -c "next dev --hostname 0.0.0.0"_template Key ErrorError Message:
GetCollection failed: Unable to fetch
template name was not providedCause:
templates array (multiple schemas)_template field in frontmattertemplates to fields and documents not updatedSolution:
Option 1: Use `fields` instead (recommended for single template)
{
name: 'post',
path: 'content/posts',
fields: [/* ... */] // No _template needed
}Option 2: Ensure `_template` exists in frontmatter
---
_template: article # ← Required when using templates array
title: My Post
---Migration Script (if converting from templates to fields):
# Remove _template from all files in content/posts/
find content/posts -name "*.md" -exec sed -i '/_template:/d' {} +Error:
Cause:
path in collection config doesn't match actual file directorySolution:
// Files located at: content/posts/hello.md
// ✅ Correct
{
name: 'post',
path: 'content/posts', // Matches file location
fields: [/* ... */]
}
// ❌ Wrong - Missing 'content/'
{
name: 'post',
path: 'posts', // Files won't be found
fields: [/* ... */]
}
// ❌ Wrong - Trailing slash
{
name: 'post',
path: 'content/posts/', // May cause issues
fields: [/* ... */]
}Debugging:
npx @tinacms/cli@latest audit to check pathsformat fieldError Message:
ERROR: Cannot find module '../tina/__generated__/client'
ERROR: Property 'queries' does not exist on type '{}'Cause:
tinacms buildSolution:
{
"scripts": {
"build": "tinacms build && next build" // ✅ Tina FIRST
// NOT: "build": "next build && tinacms build" // ❌ Wrong order
}
}CI/CD Example (GitHub Actions):
- name: Build
run: |
npx @tinacms/cli@latest build # Generate types first
npm run build # Then build frameworkWhy This Matters:
tinacms build generates TypeScript types in tina/__generated__/Error Message:
Failed to load resource: net::ERR_CONNECTION_REFUSED
http://localhost:4001/...Causes:
admin/index.html to production (loads assets from localhost)basePath not configuredSolution:
For Production Deploys:
{
"scripts": {
"build": "tinacms build && next build" // ✅ Always build
// NOT: "build": "tinacms dev" // ❌ Never dev in production
}
}For Subdirectory Deployments:
// tina/config.ts
export default defineConfig({
build: {
outputFolder: 'admin',
publicFolder: 'public',
basePath: 'your-subdirectory' // ← Set if site not at domain root
}
})CI/CD Fix:
# GitHub Actions / Vercel / Netlify
- run: npx @tinacms/cli@latest build # Always use build, not devError:
Cause:
Solutions:
Option 1: Split collections
// Instead of one huge "authors" collection
// Split by active status or alphabetically
{
name: 'active_author',
label: 'Active Authors',
path: 'content/authors/active',
fields: [/* ... */]
}
{
name: 'archived_author',
label: 'Archived Authors',
path: 'content/authors/archived',
fields: [/* ... */]
}Option 2: Use string field with validation
// Instead of reference
{
type: 'string',
name: 'authorId',
label: 'Author ID',
ui: {
component: 'select',
options: ['author-1', 'author-2', 'author-3'] // Curated list
}
}Option 3: Custom field component (advanced)
Choose the deployment approach that fits your needs.
Best For: Quick setup, free tier, managed infrastructure
Steps:
NEXT_PUBLIC_TINA_CLIENT_ID=your_client_id
TINA_TOKEN=your_read_only_token npx @tinacms/cli@latest init backendPros:
Cons:
Reference: See references/deployment-guide.md#tinacloud
Best For: Full control, Cloudflare ecosystem, edge deployment
Steps:
npm install @tinacms/datalayer tinacms-authjs npx @tinacms/cli@latest init backend // workers/src/index.ts
import { TinaNodeBackend, LocalBackendAuthProvider } from '@tinacms/datalayer'
import { AuthJsBackendAuthProvider, TinaAuthJSOptions } from 'tinacms-authjs'
import databaseClient from '../../tina/__generated__/databaseClient'
const isLocal = process.env.TINA_PUBLIC_IS_LOCAL === 'true'
export default {
async fetch(request: Request, env: Env) {
const handler = TinaNodeBackend({
authProvider: isLocal
? LocalBackendAuthProvider()
: AuthJsBackendAuthProvider({
authOptions: TinaAuthJSOptions({
databaseClient,
secret: env.NEXTAUTH_SECRET,
}),
}),
databaseClient,
})
return handler(request)
}
} export default defineConfig({
contentApiUrlOverride: '/api/tina/gql', // Your Workers endpoint
// ... rest of config
}) {
"name": "tina-backend",
"main": "workers/src/index.ts",
"compatibility_date": "2025-10-24",
"vars": {
"TINA_PUBLIC_IS_LOCAL": "false"
},
"env": {
"production": {
"vars": {
"NEXTAUTH_SECRET": "your-secret-here"
}
}
}
} npx wrangler deployPros:
Cons:
Complete Guide: See references/self-hosting-cloudflare.md
Template: See templates/cloudflare-worker-backend/
Best For: Next.js projects, Vercel ecosystem
Steps:
npm install @tinacms/datalayer tinacms-authjs // api/tina/backend.ts
import { TinaNodeBackend, LocalBackendAuthProvider } from '@tinacms/datalayer'
import { AuthJsBackendAuthProvider, TinaAuthJSOptions } from 'tinacms-authjs'
import databaseClient from '../../../tina/__generated__/databaseClient'
const isLocal = process.env.TINA_PUBLIC_IS_LOCAL === 'true'
const handler = TinaNodeBackend({
authProvider: isLocal
? LocalBackendAuthProvider()
: AuthJsBackendAuthProvider({
authOptions: TinaAuthJSOptions({
databaseClient,
secret: process.env.NEXTAUTH_SECRET,
}),
}),
databaseClient,
})
export default handler {
"rewrites": [
{
"source": "/api/tina/:path*",
"destination": "/api/tina/backend"
}
]
} {
"scripts": {
"dev": "TINA_PUBLIC_IS_LOCAL=true tinacms dev -c \"next dev --port $PORT\""
}
} NEXTAUTH_SECRET=your-secret
TINA_PUBLIC_IS_LOCAL=false vercel deployPros:
Cons:
Reference: See references/deployment-guide.md#vercel
Steps:
npm install express serverless-http @tinacms/datalayer tinacms-authjs // netlify/functions/tina.ts
import express from 'express'
import ServerlessHttp from 'serverless-http'
import { TinaNodeBackend, LocalBackendAuthProvider } from '@tinacms/datalayer'
import { AuthJsBackendAuthProvider, TinaAuthJSOptions } from 'tinacms-authjs'
import databaseClient from '../../tina/__generated__/databaseClient'
const app = express()
app.use(express.json())
const tinaBackend = TinaNodeBackend({
authProvider: AuthJsBackendAuthProvider({
authOptions: TinaAuthJSOptions({
databaseClient,
secret: process.env.NEXTAUTH_SECRET,
}),
}),
databaseClient,
})
app.post('/api/tina/*', tinaBackend)
app.get('/api/tina/*', tinaBackend)
export const handler = ServerlessHttp(app) [functions]
node_bundler = "esbuild"
[[redirects]]
from = "/api/tina/*"
to = "/.netlify/functions/tina"
status = 200
force = true netlify deploy --prodReference: See references/deployment-guide.md#netlify
Use for: Local development, no production deployment
// tina/__generated__/databaseClient or backend config
const isLocal = process.env.TINA_PUBLIC_IS_LOCAL === 'true'
authProvider: isLocal ? LocalBackendAuthProvider() : /* ... */Environment Variable:
TINA_PUBLIC_IS_LOCAL=trueSecurity: NO authentication - only use locally!
Use for: Self-hosted with OAuth providers (GitHub, Discord, Google, etc.)
Install:
npm install next-auth tinacms-authjsConfigure:
import { AuthJsBackendAuthProvider, TinaAuthJSOptions } from 'tinacms-authjs'
import DiscordProvider from 'next-auth/providers/discord'
export const AuthOptions = TinaAuthJSOptions({
databaseClient,
secret: process.env.NEXTAUTH_SECRET,
providers: [
DiscordProvider({
clientId: process.env.DISCORD_CLIENT_ID,
clientSecret: process.env.DISCORD_CLIENT_SECRET,
}),
// Add GitHub, Google, etc.
],
})
const handler = TinaNodeBackend({
authProvider: AuthJsBackendAuthProvider({
authOptions: AuthOptions,
}),
databaseClient,
})Supported Providers: GitHub, Discord, Google, Twitter, Facebook, Email, etc.
Reference: https://next-auth.js.org/providers/
Use for: TinaCloud hosted service
import { TinaCloudBackendAuthProvider } from '@tinacms/auth'
authProvider: TinaCloudBackendAuthProvider()Setup:
Use for: Existing auth system, custom requirements
const CustomBackendAuth = () => {
return {
isAuthorized: async (req, res) => {
const token = req.headers.authorization
// Your validation logic
const user = await validateToken(token)
if (user && user.canEdit) {
return { isAuthorized: true }
}
return {
isAuthorized: false,
errorMessage: 'Unauthorized',
errorCode: 401
}
},
}
}
authProvider: CustomBackendAuth()TinaCMS automatically generates a type-safe GraphQL client.
TinaCloud:
import client from '../tina/__generated__/client'
// Single document
const post = await client.queries.post({
relativePath: 'hello-world.md'
})
// Multiple documents
const posts = await client.queries.postConnection()Self-Hosted:
import client from '../tina/__generated__/databaseClient'
// Same API as TinaCloud client
const post = await client.queries.post({
relativePath: 'hello-world.md'
})Next.js Example:
import { useTina } from 'tinacms/dist/react'
import { client } from '../../tina/__generated__/client'
export default function BlogPost(props) {
// Hydrate data for visual editing
const { data } = useTina({
query: props.query,
variables: props.variables,
data: props.data
})
return (
<article>
<h1>{data.post.title}</h1>
<p>{data.post.excerpt}</p>
<div dangerouslySetInnerHTML={{ __html: data.post.body }} />
</article>
)
}
export async function getStaticProps({ params }) {
const response = await client.queries.post({
relativePath: `${params.slug}.md`
})
return {
props: {
data: response.data,
query: response.query,
variables: response.variables
}
}
}How It Works:
useTina returns the initial data (no overhead)useTina connects to GraphQL and updates in real-timetemplates/nextjs/ - Next.js App Router + Pages Router configstemplates/vite-react/ - Vite + React setuptemplates/astro/ - Astro integrationtemplates/collections/ - Pre-built collection schemastemplates/cloudflare-worker-backend/ - Cloudflare Workers self-hostingreferences/schema-patterns.md - Advanced schema modeling patternsreferences/field-types-reference.md - Complete field type documentationreferences/deployment-guide.md - Deployment guides for all platformsreferences/self-hosting-cloudflare.md - Complete Cloudflare Workers guidereferences/common-errors.md - Extended error troubleshootingreferences/migration-guide.md - Migrating from Forestry.ioscripts/init-nextjs.sh - Automated Next.js setupscripts/init-vite-react.sh - Automated Vite + React setupscripts/init-astro.sh - Automated Astro setupscripts/check-versions.sh - Verify package versionsEstimated Savings: 65-70% (10,900 tokens saved)
Without Skill (~16,000 tokens):
With Skill (~5,100 tokens):
This skill prevents 9 common errors (100% prevention rate):
_template key errors# 1. Create Next.js app
npx create-next-app@latest my-blog --typescript --app
# 2. Initialize TinaCMS
cd my-blog
npx @tinacms/cli@latest init
# 3. Set environment variables
echo "NEXT_PUBLIC_TINA_CLIENT_ID=your_client_id" >> .env.local
echo "TINA_TOKEN=your_token" >> .env.local
# 4. Start dev server
npm run dev
# 5. Access admin
open http://localhost:3000/admin/index.html# 1. Use official starter
npx create-tina-app@latest my-docs --template tina-astro-starter
# 2. Install dependencies
cd my-docs
npm install
# 3. Start dev server
npm run dev
# 4. Access admin
open http://localhost:4321/admin/index.html# 1. Initialize project
npm create cloudflare@latest my-app
# 2. Add TinaCMS
npx @tinacms/cli@latest init
npx @tinacms/cli@latest init backend
# 3. Install dependencies
npm install @tinacms/datalayer tinacms-authjs
# 4. Copy Cloudflare Workers backend template
cp -r [path-to-skill]/templates/cloudflare-worker-backend/* workers/
# 5. Configure and deploy
npx wrangler deployIssues? Check references/common-errors.md first
Still Stuck?
Last Updated: 2025-10-24 Skill Version: 1.0.0 TinaCMS Version: 2.9.0 CLI Version: 1.11.0
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.