🇺🇸 EN

AI Tools

PostClaw ships with AI generation for text, images, and video. Use the built-in quota or bring your own API keys (BYOK).

Text Generation

The AI composer is available in every post editor. Click AI Generate or press Cmd+K.

Available actions:

  • Draft from topic — describe your post idea, get a full caption
  • Rewrite — adjust tone (professional, casual, witty, urgent)
  • Shorten / Expand — fit platform character limits
  • Hashtag suggestions — AI picks relevant tags for your niche
  • Thread splitter — convert long content into a Twitter thread

Platform-aware generation

When multiple platforms are selected, the AI generates platform-specific variants automatically — a punchy tweet, a detailed LinkedIn post, and a casual Instagram caption from the same brief.

Image Generation

Go to Media → Generate Image or use the image button in the composer.

Supported providers:

  • Google Gemini (default, included in quota)
  • OpenAI DALL-E 3 (BYOK)
  • Stability AI (BYOK)
// Example: generate image via API
const res = await fetch("https://api.postclaw.fun/v1/ai/image", {
  method: "POST",
  headers: { "Authorization": `Bearer ${API_KEY}` },
  body: JSON.stringify({
    prompt: "Minimalist flat lay of a coffee cup on white desk",
    size: "1024x1024",
    provider: "gemini"
  })
});
const { url } = await res.json();

Video Generation

Available on Pro and Business plans. Navigate to Media → Generate Video.

  • Short-form clips (5–30 seconds)
  • Provider: Google Veo (default)
  • Resolution: 720p or 1080p
  • Output: MP4, ready for TikTok / Reels / Shorts

Video generation typically takes 30–90 seconds. You’ll receive an in-app notification when ready.

AI Agent

The AI Agent (configurable under Settings → AI Agent) can run autonomously:

  • Monitor RSS feeds and draft posts automatically
  • Apply your brand voice and style guidelines
  • Queue for approval before publishing (recommended)
  • Learn from which posts you approve vs. reject
{
  "personality": "Professional but approachable. Always include a CTA.",
  "tools_enabled": ["web_search", "image_gen", "hashtags"],
  "memory_config": { "enabled": true, "lookback_days": 30 }
}

BYOK (Bring Your Own Key)

Under Settings → AI Usage, add your own API keys to bypass the monthly quota:

ProviderUsed for
OpenAIText + image generation
Google GeminiText + image + video
Anthropic ClaudeText generation
Stability AIImage generation

BYOK keys are encrypted at rest (AES-256-GCM). Usage billed directly by the provider — not through PostClaw.

Monthly Quota

Free and paid plans include a monthly AI call quota. Track usage under Settings → AI Usage.

PlanAI Calls/Month
Free50
Pro500
Business2,000
BYOKUnlimited