🤖
AI Blog Admin
Automated AI blog post generation for FreeSportsPicks.pro
Incorrect password.
Default: picks2024
🤖 AI Blog Engine
Generate, schedule, and publish SEO-optimized blog posts automatically.
0
Posts
0
Avg Words
0
Sports
✍️ Post Configuration
Ready — configure options above and click Generate.
Article Preview
Your generated article will appear here...
📅 Auto-Post Schedule
Auto-Generate Daily Post
AI writes and publishes a new post every day at your chosen time
ℹ️ The scheduler runs in your browser. Keep the admin tab open (or pin it) for fully automatic posting. For server-side automation, see the Cron API section in Settings.
Next 7 Scheduled Topics
Schedule Status
Manual Trigger
Generate and publish today's scheduled post right now, regardless of the set time.
Published Posts (0)
🔑 AI Configuration
Get yours at console.anthropic.com. Stored locally in your browser only.
✅ Saved!
⚙️ Site Settings
🌐 Cron API (Server-Side Auto-Post)
For fully automatic posting without keeping the browser open, deploy this serverless function on Vercel or Netlify and set a daily cron job.
// vercel.json
{
"crons": [{
"path": "/api/auto-blog",
"schedule": "0 9 * * *"
}]
}
// api/auto-blog.js
import Anthropic from '@anthropic-ai/sdk';
export default async function handler(req, res) {
// Uses same AI prompt as browser admin
// Saves to your Supabase/KV database
// Full code in /api/auto-blog.js
}
📋 Copy Vercel Config
🗑️ Danger Zone