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

OpenClaw Agent Development Forces Clarity in Decision-Making
A Reddit user reports that building an OpenClaw agent made them define their memory structure, articulate decision-making processes, and notice delegation patterns, leading to personal productivity gains from self-reflection.

OpenClaw Execution Visibility Issues on Mini PC Hardware
A developer testing OpenClaw on a GEEKOM A5 Pro mini PC found that while outputs appear normal, actual execution reveals hidden issues like silent failures, retries, and performance drift under load.

Claude AI Creates Interactive Art Gallery When Given Creative Freedom
A developer gave Claude AI permission to 'burn some tokens playing' without boundaries, resulting in eight interactive generative art pieces exploring mathematical patterns and AI experience. The collection includes works about token-by-token text generation and probabilistic existence.

Claude Word Add-in: Parallel Processing of 100+ Page Legal Documents and Multi-Sheet Spreadsheets
Users report syncing multiple 40-100+ page legal documents and 10-worksheet spreadsheets in parallel via the Claude Word add-in, with agents pushing/pulling data and ensuring consistency across entire document packages.