惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
IT之家
IT之家
B
Blog
博客园_首页
博客园 - 司徒正美
有赞技术团队
有赞技术团队
博客园 - 聂微东
I
InfoQ
美团技术团队
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Built a 24/7 AI Growth Engine with Claude Code (No ...
tellmefranki · 2026-05-13 · via DEV Community
Cover image for How I Built a 24/7 AI Growth Engine with Claude Code (No DevOps Required)

tellmefrankie

How I Built a 24/7 AI Growth Engine with Claude Code (No DevOps Required)

Most indie hackers treat marketing as an afterthought. I did too — until I realized I could automate the parts that don't need my creativity.

Here's the system I built in a weekend that now runs 24/7: monitors Reddit and HN for opportunities, generates tweets and blog posts on a schedule, and posts them automatically.

The Architecture

Reddit/HN Monitor (every 15 min)
        ↓
Keyword match? → Telegram alert

Content Generator (daily 15:00 KST)
        ↓
Claude API → tweets + blog draft + newsletter
        ↓
Twitter poster → X API v2
        ↓ (weekly Monday)
dev.to poster → dev.to API

Enter fullscreen mode Exit fullscreen mode

All of it runs with node-cron inside the same Node.js process as my news engine. No Lambda, no queue, no Kubernetes. Just pm2 start and forget it.

The Reddit Monitor

const KEYWORDS = [
  'claude skills', 'mcp server', 'claude agent',
  'investment agent', 'trading bot ai', 'options analysis ai',
];

async function searchReddit(keyword: string): Promise<RedditPost[]> {
  for (const sub of SUBREDDITS) {
    const res = await fetch(
      `https://www.reddit.com/r/${sub}/search.json?q=${keyword}&sort=new&t=day`,
      { headers: { 'User-Agent': 'GrowthEngine/1.0' } }
    );
    // ... parse and return posts
  }
}

Enter fullscreen mode Exit fullscreen mode

No Reddit API key needed. The public JSON endpoint is enough for monitoring. When a new post matches a keyword, a Telegram alert fires within 15 minutes.

Content Generation with Claude

The Claude API call is straightforward: pass recent git activity + your skills list, ask for tweets + blog draft + newsletter snippet as JSON. The key is in the prompt framing — "authentic, not salesy" and "show real experience" consistently produces content that doesn't feel AI-generated.

const response = await client.messages.create({
  model: 'claude-sonnet-4-20250514',
  max_tokens: 2000,
  messages: [{
    role: 'user',
    content: `You are a developer marketing writer...

    Generate:
    1. 3 tweets for #BuildInPublic
    2. Blog post draft (300 words)
    3. Newsletter snippet (100 words)

    Output as JSON.`
  }],
});

Enter fullscreen mode Exit fullscreen mode

Posting to dev.to

dev.to's API is free and takes about 10 lines to integrate. The critical detail: always set canonical_url to your own domain to prevent SEO duplicate content penalties.

const payload = {
  article: {
    title,
    published: true,
    body_markdown: bodyWithCTA,
    tags: ['ai', 'claude', 'buildinpublic'],
    canonical_url: 'https://yourdomain.com/blog/slug',
  },
};

await fetch('https://dev.to/api/articles', {
  method: 'POST',
  headers: { 'api-key': process.env.DEVTO_API_KEY },
  body: JSON.stringify(payload),
});

Enter fullscreen mode Exit fullscreen mode

What It Costs

  • Claude API for content generation: ~$0.10/day
  • X API for tweets: ~$0.015/tweet × 30 = $0.45/month
  • dev.to API: free
  • Hosting: $0 (runs alongside existing server)

Total: ~$3.50/month for a fully automated content pipeline.

What I Packaged

Running this system costs ~$3.50/month. I’ve open-sourced the free skills and bundled the full production stack into a Claude Code skills pack.

What’s in the $29 bundle:

  • Investment Briefing Agent — 9-wave coordinated analysis (macro, sector, technicals, news, critique, simulation)
  • Options Flow Analyzer — Distinguishes institutional trades from lottery calls (caught the XLI P/C 5.32 anomaly live)
  • Price Monitor & Alert — Real-time stop-loss/take-profit via Telegram
  • Multi-Agent Orchestrator — Parallel agent team with quality assurance layer
  • News Sentiment Engine (free) — RSS-based AI/tech briefing with sentiment scoring

All skills plug-and-play with Claude Code, Cursor, and any SKILL.md-compatible agent.

Get the AI Agent Skills Pack — $29 →

Or start free: github.com/tellmefrankie/ai-investment-skills — ⭐ the repo if it saves you time.


tags: ai, claude, buildinpublic, typescript