Consumer-rights AI game goes B2B: Claude Code workflow with Opus 4.7 and Haiku 4.5

A Reddit post details the transformation of a viral consumer-rights AI game into a B2B product called socratize.io (formerly fixai.dev). The core loop remains: users argue with an AI that refuses to budge. Companies write custom scenarios (sales objection, churn call, compliance check) and their team practices against the AI customer.
Tech Stack
- Live chat bot: Claude Haiku 4.5 — cheap, fast, and stubborn with the right prompt.
- Backend: Written with Claude Code, driven by Opus 4.7 for heavy lifting (refactors, migrations, retries, prompt-injection hardening).
Claude Code Workflow Details
The developer shared a precise workflow to avoid agent confusion:
- CLAUDE.md at repo root: Contains hard invariants only — e.g.,
auth is B2B-only,schema changes go through migrations,all email through one service. Claude reads this every session and stops violating them. - SPLIT_NOTES.md: A separate file for plans —
what we're going to change. Splitting the two prevents the agent from confusing constraints with TODOs. - Multi-file refactors: Use Opus 4.7 to propose a diff plan first, approve it, then run edits. The developer notes this is the first tier where the plan and the patch reliably match.
Target Audience
Developers building AI-powered conversational tools or using Claude Code for production apps — especially those managing prompt-injection risks and complex refactor workflows.
📖 Read the full source: r/ClaudeAI
👀 See Also

A Dark Cave: Text-Based Survival Game Avoids AI Slop, Embraces Minimalism
A Dark Cave is a free, text-based survival and settlement building browser game that deliberately avoids graphics, using only text, symbols, and sounds to create atmosphere. The developer argues that as AI-generated visuals become ubiquitous, games will need differentiators like storytelling and player imagination.

Open-Claw + Hermes: Multi-Agent Workflow Gains With Separate Orchestrator and Executor
After a 3-week test, one user found that pairing Open-Claw (orchestrator) with Hermes (execution specialist) outperformed either single agent alone, improving throughput and reliability through parallel task handling and cross-diagnosis.

Developer shares lessons from building sports app with Base44 and Claude
A developer built a sports app called glanceplay.com on Base44 for quick, casual-friendly game briefings, but found Base44 credits expensive for iterative code changes. They recommend using platforms like Base44 for initial scaffolding, then relying on Claude for incremental changes and debugging.

Reducing AI Agent Context Bloat with Single Workspace Architecture
A developer shares how they reduced AI assistant startup context from 27,000 to 4,000 tokens by implementing a single workspace approach instead of complex agent swarms, using channel-level identity injection and segregated memory folders.