Show HN: I built a social media management tool in 3 weeks with Claude and Codex
TL;DR Highlight
**SoloDev built a Buffer/Sendible alternative open-source social media management platform in 3 weeks by leveraging AI coding tools like Claude Opus and OpenAI Codex.**
Who Should Read
Developers looking to apply AI coding tools to real-world production projects, or those seeking a self-hosted social media management tool instead of SaaS options like Buffer or Sendible.
Core Mechanics
- This project resulted in a full-stack SaaS-level platform completed solo in 3 weeks, featuring integrations with 12 social platforms (Facebook, Instagram, LinkedIn, TikTok, YouTube, Pinterest, Threads, Bluesky, Google Business Profile, Mastodon, etc.), multi-tenant authentication, encrypted credential storage, background job processing, approval workflows, and a unified inbox.
- Detailed spec documents, architecture documents, and style guides were created *before* writing any code and were all made public. The developer emphasized that 'this pre-planning phase was everything; without it, the AI agents would be a mess.'
- Specs were divided into tasks executable in parallel and tasks requiring sequential processing to form multi-agent workflows. This categorization was key to the AI coding workflow.
- Claude Opus 4.6 (Claude Code) was used for maintaining large contexts and making architectural decisions across multiple files, particularly excelling at cascading changes across models, views, and templates when restructuring the permission system.
- OpenAI Codex 5.3 was leveraged to review implemented code, identify security issues, and fix bugs. Token consumption between the two models was roughly equal.
- AI excelled in areas like standard CRUD operations (Django models/views/serializers), provider modules for well-documented APIs (Facebook, LinkedIn), Tailwind layouts and HTMX interactions, test generation, and large-scale refactoring across files.
- AI faltered in areas with poor documentation or unique upload flows, such as TikTok’s Content Posting API, repeatedly generating incorrect code with confidence. A multi-tenant permission logic bug exposed data across workspaces, even passing tests, making it more dangerous.
- OAuth edge cases (token refresh, permission revocation, platform-specific error codes) and background task orchestration (retry logic, rate limit backoff, error handling) all required manual implementation. AI handles 'happy paths' well but is vulnerable in defensive coding.
Evidence
- "Some responses questioned the credibility of the '3 weeks of vibe coding' claim, with one commenter noting that similar open-source tools had poor quality and self-hosting experiences, leading them to prefer paid premium products. The claim signaled a lack of battle testing and potential maintenance issues."
How to Apply
- When building production-level projects with AI agents, create detailed spec documents and architecture documents *before* writing code, and separate tasks into those executable in parallel and those requiring sequential processing. Benchmark your spec writing against the specs published in the brightbean-studio repository’s development_specs folder.
- When configuring multi-agent workflows, use Claude Opus (or a high-performance model) for initial architecture design and large-scale refactoring, and a separate model (Codex, etc.) for reviewing implemented code and identifying security issues. This can catch more bugs and security vulnerabilities than using a single model.
- When implementing multi-tenant environments, do not test AI-generated permission logic only in a single-tenant environment. AI can create data cross-tenant exposure bugs that still pass unit tests, so write separate integration tests explicitly including multi-tenant scenarios.
- Agencies or small teams currently paying $100-$300/month for SaaS solutions like Buffer, Sendible, or SocialPilot can deploy brightbean-studio to their own VPS with Docker Compose or use Render/Railway one-click deployment for the same functionality at no cost. However, be sure to review the AGPL-3.0 license conditions (requirement to open-source modifications).
Terminology
Related Papers
Unifying Temporal and Structural Credit Assignment in LLM-Based Multi-Agent Prompt Optimization
여러 AI 에이전트가 협력할 때 '어느 라운드의 어느 에이전트'가 실패했는지 정확히 짚어내서 그 프롬프트만 고치는 최적화 프레임워크
Multi-Agent LLM System for Automated Vulnerability Discovery and Reproduction
LLM 기반 멀티 에이전트 시스템으로 C/C++ 코드의 보안 취약점을 자동으로 찾고 재현하는 FuzzingBrain V2 논문으로, AIxCC 2025 대회에서 40개 중 36개(90%) 취약점 탐지에 성공했다.
CORE: Contrastive Reflection Enables Rapid Improvements in Reasoning
성공/실패 추론 트레이스를 비교해 짧은 자연어 인사이트를 뽑아내고, 단 5개 학습 샘플로도 GRPO보다 빠르게 모델 추론 성능을 올리는 비파라메트릭 알고리즘.
Claude Code as a Daily Driver: Claude.md, Skills, Subagents, Plugins, and MCPs
Claude Code를 터미널 AI 코딩 도구로 제대로 쓰기 위한 Claude.md 설정, 서브에이전트, 플러그인, MCP 연동 실전 가이드
FinHarness: An Inline Lifecycle Safety Harness for Finance LLM Agents
금융 AI 에이전트가 실행 중간에 위험한 툴 호출을 차단하면서도 정상 승인율을 유지하는 인라인 안전 프레임워크
Retrying vs Resampling in AI Control
Claude Code처럼 의심 행동을 막고 재시도하는 방식이 오히려 공격자에게 힌트를 줘서 더 위험할 수 있다는 연구.