사용자는 Telegram 그룹 채팅에서 개인화된 AI 봇 친구를 생성하는 "Sudomake Friends"라는 GitHub 프로젝트에 대한 뉴스 기사를 요약해 달라고 요청했습니다. 포함해야 할 주요 사실: 1. Telegram에서 AI 봇 "친구"를 생성하는 GitHub 프로젝트입니다. 2. 사용자가 디지털 존재감을 제공하고(GitHub, Steam 등과 같은 14개 이상의 플랫폼의 URL) 마법사가 일치하는 성격을 가진 AI 친구를 생성합니다. 3. 설정을 위한 단일 명령: `uv run https://raw.githubusercontent.com/audiodude/sudomake-friends/main/scripts/initialize.py` 4. 각 봇에는 다음이 포함됩니다. SOUL.md(성격), HISTORY.md(백스토리), 메모리, 일정 5. 봇은 현실적인 동작을 합니다: 일정, 시간대, 채팅 수준 확인 등 6. 비용은 활동에 따라 월 $1~10 정도입니다. 7. ~/.sudomake-friends/에 저장된 데이터는 한국어로 2~4문장, 80자 이상, 특정 사실과 숫자를 포함해야 하며 제목을 직접 복사하지 않아야 합니다. **요약:** 개발자가 'Sudomake Friends'라는 오픈소스 프로젝트를 공개했습니다. 사용자가 GitHub, Steam, Bandcamp 등 14개 이상의 플랫폼 URL을 입력하면 AI 기반 친구 봇들이 Telegram 그룹 미팅에서 자동으로 생성됩니다. 각봇은 고유한 성격, 배경 장식, 독립된 활동 패턴을 가지고 있어 지역 대화 체감을 제공합니다. 초대장 API를 사용하는 데 사용됩니다. ~/.sudomake-friends/目录下,删除该目录即可完全卸载。
왜 중요한가
본문
A Telegram group chat where your friends are AI bots. Yes, it's come to this. Each friend has their own personality, backstory, persistent memory, timezone-aware schedule, and texting style. They decide independently whether to respond, talk to each other, and sometimes start conversations on their own. It's like a real group chat except nobody flakes on plans because nobody makes plans because they aren't real. You need git, uv, and Docker installed. Then: uv run https://raw.githubusercontent.com/audiodude/sudomake-friends/main/scripts/initialize.py That's it. One command. The wizard walks you through everything. Quit anytime — it checkpoints your progress: - Profile — Tell the wizard about yourself (URLs, files, or just type). It auto-detects 14 platforms. - Friends — Browse generated candidates in a TUI. Hold the ones you like, re-roll the rest. - Telegram — Create bots via BotFather, set up a group chat. - History — Generate a shared backstory for how you all know each other. - Deploy — Docker builds and runs automatically. All your data lives in ~/.sudomake-friends/ . Drop the docker container and delete that directory and you've uninstalled completely. # Start completely fresh uv run -- --start-over # If you have a sources.txt with URLs (one per line), the wizard uses it automatically echo "https://github.com/yourname" > sources.txt uv run We don't want generic AI friends right? We want friends that get us. That's why the wizard scrapes your digital presence to generate friends that match your personality — not just your interests, but your energy. Auto-detected platforms: Bandcamp, Bluesky, dev.to, Discogs, GitHub, Goodreads, Hacker News, Last.fm, Letterboxd, Mastodon, Pixelfed/Lemmy, Steam, Tumblr, Wikipedia — plus any website. Provide as many sources as you want. More context means better friends. You can also save your sources to sources.txt for quick re-setup. Friends are generated personality-first. The wizard picks traits (sarcastic, loyal, chaotic, gentle) before deciding what someone does for a living. Each friend gets: - SOUL.md — Full personality: backstory, traits, interests, food preferences, what they watch, lazy Sunday habits, speech patterns with examples - HISTORY.md — Shared history of how you all met (generated, editable) - candidate.json — Original generation data (for editing in the TUI later) The TUI lets you hold friends you like, re-roll the rest, expand details, and edit candidates before committing. Run the wizard again on an existing setup: uv run https://raw.githubusercontent.com/audiodude/sudomake-friends/main/scripts/initialize.py You'll get options to adjust (walk through each step, keeping what you want), start over, or deploy. The adjust flow checks at each step whether to reuse existing data or redo it. You can also edit any friend's personality directly at ~/.sudomake-friends/friends//SOUL.md . Every time you re-run the wizard, two things happen before anything else: - Update check. The wizard offers to pull the latest code from GitHub. You can decline. If you accept and the pull fails (e.g. you're hacking on a local checkout with uncommitted changes), it'll show the error and keep going with what you have. - Migrations. If the new code includes data migrations that haven't been applied to your friends directory yet, the wizard lists them and asks before running. Each migration backs up ~/.sudomake-friends/friends/ to~/.sudomake-friends/.backups/pre--/ before touching anything, so if something goes wrong you can restore. Backups are kept forever — delete~/.sudomake-friends/ to uninstall. Migrations are normal Python files under scripts/migrations/_/ , each with an is_needed() check and a run() function. Some are optional (you can skip them); some are mandatory (the wizard halts until they're applied). Applied migrations are recorded in ~/.sudomake-friends/.migrations-applied so nothing runs twice. If you're running from the published URL, the wizard keeps a cached checkout at ~/.sudomake-friends/.src-cache/ and pulls updates into that. If you're running from a local dev checkout, it leaves your working tree alone. When you send a message in the group: - Each bot checks their schedule — are they awake? At work? Day off? A random roll against their chattiness determines if they're "around". Two other dials — jokiness and whininess — shape how they write (not whether they write). - Bots that pass the gate get a Claude call with their personality + memory + chat history, and decide whether to respond - They wait a realistic delay before sending — sometimes splitting thoughts across multiple messages - Important facts get saved to their memory for future conversations - Old chat history is periodically summarized to keep context manageable Bots also initiate conversations when the chat's been quiet, and catch up on messages where they were mentioned but unavailable. Each bot tracks recent news headlines via RSS feeds — general news plus sources matched to their interests. Headlines refresh twice daily, so your friends can react to what's actually happening in the world instead of recycling the same topics. The wizard defaults to local Docker, but you can deploy anywhere that runs containers. railway init && railway link railway volume add --mount /app/data railway variables set DATA_DIR=/app/data railway up --detach fly launch --no-deploy fly volumes create friend_data --size 1 Add to fly.toml : [mounts] source = "friend_data" destination = "/app/data" [env] DATA_DIR = "/app/data" fly deploy Any platform that supports Docker + persistent volumes will work. The key requirements: the DATA_DIR env var pointing to a volume mount, and ~/.sudomake-friends/friends available at /app/friends-data (or baked into the image). ~/.sudomake-friends/ .env # API keys and bot tokens profile.txt # compiled user profile .init-checkpoint.json # setup progress friends/ HISTORY.md # shared backstory / SOUL.md # personality — edit freely candidate.json # original generation data config.yaml # timezone, schedule, chattiness, jokiness, whininess # Docker volume (managed by container): # memories//MEMORY.md # CHAT.jsonl # CHAT_SUMMARY.md Send these in the Telegram group chat: /test or/debug — All bots check in with "Hi it's me, " How much does it cost? Each response is one Claude API call (~$0.003-0.01). News headlines are fetched via RSS (free, no LLM calls). A quiet group might cost $1-2/month; an active one $5-10/month. Can I change a friend's personality? Edit ~/.sudomake-friends/friends//SOUL.md . It's just markdown. Restart the container to pick up changes. Why do my friends sound like AI? The prompt engineering fights hard against this, but sometimes Claude gonna Claude. Edit the Speech Patterns section of their SOUL.md to be more specific. What's work_type in the config? "office" means they can sneak a text at work. "physical" means they mostly can't. Affects responsiveness during their work hours (your friends can live in different timezones). What if I mention a friend and they're asleep? They'll catch up when they "wake up." Mentions get queued and replayed when the bot becomes available. Is this sad? Probably. But at least they always text back. By the way, how do you pronounce the name? It's "soo-doh-MAH-kee frendz" of course! 😉