Skip to content

Latest commit

 

History

History
294 lines (223 loc) · 6.74 KB

File metadata and controls

294 lines (223 loc) · 6.74 KB

Adobe Setup Recommendation

Mi Recomendación: Empieza CON /webpost-haiku-images

¿Por qué NO empezar con Adobe?

  1. Complejidad innecesaria

    • Adobe requiere: Client ID + Secret + Access Token
    • Configuración de MCP
    • Dependencias adicionales
  2. Costo inicial

    • Adobe tiene modelo de precios complejo
    • Pueden tener límites de quota
    • Trial credits pueden ser limitados
  3. Ya tienes todo para Haiku

    • Anthropic key: ✅ Ya lo tienes
    • Brave API: ✅ Opcional (mock fallback)
    • Runway: ✅ Ya configurado
    • Perfecto para empezar

Plan Recomendado (Paso a Paso)

Fase 1: Haiku (AHORA) ✅

/webpost-haiku-images
- Solo necesita: ANTHROPIC_API_KEY
- Costo: ~$0.03-0.04 por post
- Token: ~200-250 por post
- Setup: 5 minutos
- Calidad: Muy buena

Por qué es perfecto:

  • ✅ Una sola API (Haiku)
  • ✅ Haiku genera post + image prompts
  • ✅ HTML frames determinísticos (0 API calls)
  • ✅ Funciona día 1
  • ✅ Barato
  • ✅ Rápido (~3 segundos)

Fase 2: Hyperframes (Después de una semana)

/webpost-hyperframes
- Agrega: HEYGEN_API_KEY
- Costo: +$0.10-0.50 por video
- Token: ~150 (Haiku es más barato)
- Setup: 10 minutos (ya tienes Haiku)
- Calidad: Animado + mejor para social

Cuándo migrar:

  • Cuando veas que Haiku funciona bien
  • Cuando quieras animated frames (mejor engagement)
  • Cuando tengas presupuesto para HeyGen

Fase 3: Adobe (Mes 2) - SI quieres

/webpost-adobe
- Agrega: Adobe credentials
- Costo: +$50-200/mes Adobe API
- Token: ~150
- Setup: 20 minutos (MCP setup)
- Calidad: Profesional estático

Cuándo es útil:

  • Cuando necesites imágenes profesionales ESTÁTICAS
  • Cuando tengas presupuesto para Adobe
  • Para contenido muy premium

Comparación: ¿Cuándo usar cada una?

/webpost-haiku-images (PRIMERA) ⭐

Best for: Empezar, testear, producción diaria

  • Tokens: ~200-250
  • Costo API: Solo Haiku (~$0.03)
  • Speed: ~3 segundos
  • Setup: 5 minutos
  • Images: HTML frames (determinísticas)

/webpost-hyperframes (SEGUNDA)

Best for: Social media con animaciones

  • Tokens: ~150
  • Costo API: HeyGen (~$0.10-0.50)
  • Speed: ~5 segundos
  • Setup: 10 minutos
  • Images: Animated video frames

/webpost-adobe (TERCERA)

Best for: Premium professional content

  • Tokens: ~150
  • Costo API: Adobe (~$1-2)
  • Speed: ~4 segundos
  • Setup: 20 minutos
  • Images: Professional AI-generated

Roadmap Recomendado

Week 1:
├─ Deploy /webpost-haiku-images
├─ Test with Telegram
├─ Publish 5-10 posts
└─ Monitor quality & costs

Week 2-3:
├─ Keep using haiku-images
├─ Get HeyGen API key
├─ Deploy /webpost-hyperframes
├─ Compare results (haiku vs hyperframes)
└─ Pick favorite for daily use

Month 2:
├─ If budget allows: Get Adobe credentials
├─ Deploy /webpost-adobe
├─ Reserve for premium content
└─ Keep haiku-images as default

Token Cost Comparison

Daily (10 posts):

/webpost-haiku-images:    ~2,000-2,500 tokens/day = ~$0.30/day
/webpost-hyperframes:     ~1,500 tokens/day + HeyGen = ~$0.20 + HeyGen
/webpost-adobe:           ~1,500 tokens/day + Adobe = ~$0.20 + Adobe

Monthly (300 posts):

/webpost-haiku-images:    ~$90-120 (Haiku only)
/webpost-hyperframes:     ~$60 + $100-200 HeyGen = ~$160-260
/webpost-adobe:           ~$60 + $150-500 Adobe = ~$210-560

Winner for cost: Haiku images (~$90-120/month) ✅


Quick Setup: /webpost-haiku-images (5 minutes)

Step 1: Copy module

cp /tmp/map/webpost-haiku-images-module.js .

Step 2: Add to bot.js

// Top:
const WebPostHaikuImages = require('./webpost-haiku-images-module.js');
const webpostHaikuImages = new WebPostHaikuImages();

// In message handler:
if (msg.text?.startsWith('/webpost-haiku-images ')) {
  const query = msg.text.replace('/webpost-haiku-images ', '').trim();
  const result = await webpostHaikuImages.run(query);
  const formatted = webpostHaikuImages.formatForTelegram(result);
  await bot.sendMessage(chatId, formatted, { parse_mode: 'Markdown' });
}

Step 3: That's it!

  • Already have ANTHROPIC_API_KEY ✅
  • Brave is optional (mock fallback works)
  • Deploy to Render
  • Test: /webpost-haiku-images your topic

Why Skip Adobe Initially?

Adobe requires:

  1. Get Client ID + Secret from: https://developer.adobe.com/console
  2. Generate Access Token
  3. Set up MCP endpoint
  4. Configure HeyGen/Render integration
  5. Handle API rate limits

That's 5 extra steps vs Haiku's 0!


When to Add Adobe

Good reasons to add Adobe:

  • ✅ You're making professional branding content
  • ✅ Budget allows $150-500/month additional
  • ✅ You need static professional images (not animated)
  • ✅ You want Adobe Creative features (filters, effects)

Not worth it yet if:

  • ❌ You're still testing
  • ❌ You're on tight budget
  • ❌ Haiku images are "good enough"
  • ❌ You prefer animated frames (use Hyperframes instead)

Final Recommendation

TODAY:
→ Deploy /webpost-haiku-images
  • 5 minute setup
  • Test with real posts
  • See if quality is acceptable
  • Cost: ~$90/month for daily use

AFTER 1 WEEK:
→ If happy with results: Add /webpost-hyperframes
  • Better for social (animated)
  • Slightly cheaper tokens
  • Cost: +$100-200/month

AFTER 1 MONTH:
→ If budget allows: Consider Adobe
  • Professional static images
  • Premium feel
  • Cost: +$150-500/month

TL;DR

Start with: /webpost-haiku-images (TODAY) ✅

  • Only Haiku API
  • 5 minute setup
  • Works great
  • Cheap (~$90/month)

Don't worry about Adobe yet - it's Phase 3 (month 2+)

If you want animations: Skip Adobe, get Hyperframes instead


Migration Path When Ready

When you DO want Adobe (later):

  1. Get credentials: https://developer.adobe.com/console
  2. Copy webpost-haiku-adobe-mcp-module.js
  3. Follow: MCP_ADOBE_CREATIVE_CONFIG.md
  4. Easy integration (already documented)

But don't do this yet. Start simple with Haiku. ✅


Questions?

Question Answer
Need Adobe today? No, use Haiku images
Need animated frames? Use Hyperframes, not Adobe
Have budget? Use Haiku, save budget for later
Want professional images? Haiku is good, Adobe is overkill initially
Can I start with Adobe? Yes, but unnecessary complexity

Bottom Line

Use this progression:

  1. Week 1: /webpost-haiku-images ← START HERE ⭐
  2. Week 3: /webpost-hyperframes ← Add if you like
  3. Month 2: /webpost-adobe ← Only if needed

You're welcome to skip Adobe entirely - Haiku + Hyperframes covers 90% of use cases.


Ready to start?

Copy this snippet to bot.js: → BOT_WEBPOST_HAIKU_IMAGES_SNIPPET.js

Deploy → Test → Done! 🚀