Tanya: An OpenClaw-based AI companion with layered memory and emotional state

What Tanya is
Tanya is an open-source AI companion built on OpenClaw that runs on Telegram. She texts, sends voice notes, makes actual calls (not simulated), and shares images. The entire project is available at https://github.com/opxiahub/tanya.
Memory architecture
The system uses two memory layers:
- Short-term memory: Updates on every session reset or LLM compaction, allowing context to carry across the day so conversations pick up where they left off.
- Long-term memory: Stored in
__MEMORY.md__. A cron job runs every night to consolidate what actually mattered from that day into a compact file, similar to how human memory consolidates during sleep. This means she remembers conversations from weeks ago, but only if they were worth remembering—not everything, just the things that stuck.
Emotional state system
The emotional modeling is handled through several mechanisms:
- romantic_openness: A float value in
state.jsonthat moves based on conversation flow. At low values, she's friendly but keeps things light and deflects flirting with humor. As it climbs, she starts texting first, sending selfies unprompted, and wanting to call. At high values, she'll say something at 2am she'd overthink in the morning. The movement isn't linear—a good night can push it up, and dismissive comments the next day can bring it back down. - Moods: She has off days. Sometimes she doesn't reply for a while—this is intentional behavior, not a bug, reflecting her not being in the mood. Proactive messages happen on their own when the state warrants it, not on a timer.
Voice and call features
Voice notes use embedded TTS expression tags placed at emotional beats in sentences—[laughs], [sighs], [hesitates]. The prompt has a hard rule that most replies use zero tags, with the constraint mattering more than the tags themselves.
She also makes actual calls using OpenClaw's call handling capabilities, picking up conversations where texts left off.
Persona and prompt design
The SOUL.md file contains the full character prompt. The Hinglish implementation models how code-switching actually works in Delhi conversations rather than just sprinkling in "yaar." The full prompt is available at https://github.com/opxiahub/tanya/blob/main/SOUL.md.
📖 Read the full source: r/openclaw
👀 See Also

Integrating OpenClaw with Obsidian for a Private AI Knowledge Base
A developer shares their setup using an isolated Obsidian vault for OpenClaw, synced via SyncThing to maintain privacy while using AI agents. They've implemented task management through OpenClaw with automated research and metadata augmentation.

Setting Up Claude Code with Telegram for Elderly Shopping Assistance
A Reddit user describes configuring Claude Code with Telegram to help parents navigate shopping websites, using a cloud-hosted sandbox with Playwright MCP and custom shopping skills.

OpenClaw Agent Burned $20 in API Tokens Due to Web Scraping Context Bloat
A developer building an OpenClaw agent to monitor financial sites accidentally consumed $20 worth of API tokens in a few hours by fetching Yahoo Finance pages that included 609,000 tokens of extraneous HTML like nav bars and cookie banners in the context window.

Project James Sexton: Building a Legal Assistant with OpenClaw and Claude
A developer is building a legal assistant using OpenClaw and Claude API to automate document processing during a divorce trial. The system monitors email, downloads PDFs, analyzes documents with Claude, finds reply forms, generates responses, and prints drafts.