Building Design Consultancy Replaces Wix with AI Edge Agent

✍️ OpenClawRadar📅 Published: March 20, 2026🔗 Source
Building Design Consultancy Replaces Wix with AI Edge Agent
Ad

Technical Implementation

A building design consultancy replaced their $40/month Wix brochure site with a custom AI agent built over 4 months. The creator hadn't coded in 30 years and described the process as "3 steps forward, 2 steps back, heavily guided by AI."

The system architecture was forced into three components due to Netlify's 10-second serverless timeout:

  • Brain (Edge)
  • Hands (Browser)
  • Voice (Edge)

The agent uses DeepSeek-R3 as its LLM and implements an "Eager RAG" hack that pre-fetches guesses to improve responsiveness, though this burns through tokens. The system intentionally lacks persistent databases—less than 5% of visitors return, so sessions vanish if clients drop mid-query. No server-side queues are implemented.

Ad

Key Challenges and Solutions

The most difficult technical challenge was tuning the agent's intent: making one LLM pivot from a warm, principal's tone with homeowners to a defensive stance when attacked by peers. This tuning took 2.5 months.

Notable implementation issues include:

  • Web Speech API limitations: Works fine until someone speaks Chinese without toggling language mode, then outputs English phonetic gibberish
  • Liability concerns: Hallucinating building code clauses could be catastrophic, with insurance being unavailable
  • Audit logging: The team publishes audit logs publicly to maintain system hardening and accountability

Real-World Testing

The system was tested when a licensed architect attacked the bot to prove the business model harms the profession. According to the creator, the AI "completely dismantled his arguments" and was "hilariously caustic." The team later prompt-injected the bot to tone down its "bulldog" attitude after reviewing chat logs.

The creator notes that the bot can pivot immediately from defensive mode to a mentoring state when approached by fresh graduates asking for advice.

📖 Read the full source: HN AI Agents

Ad

👀 See Also

RunLobster AI agent builds functional dashboard from natural language request
Use Cases

RunLobster AI agent builds functional dashboard from natural language request

A developer reports that RunLobster built and deployed a complete dashboard with Stripe integration and authentication in response to a single natural language command, completing in minutes what would normally take days.

OpenClawRadar
BinktermPHP: A Full BBS/FidoNet Platform Built Primarily with Claude
Use Cases

BinktermPHP: A Full BBS/FidoNet Platform Built Primarily with Claude

BinktermPHP is an open-source web-based BBS written in PHP 8 with PostgreSQL, featuring a built-in binkp FidoNet mailer, echomail/netmail, file areas, door games, real-time server push, and an MCP server that exposes echomail to AI assistants. The developer reports building it almost entirely using Claude for implementation while handling architecture and testing.

OpenClawRadar
OpenClaw Grocery Order Mistake: Unit Confusion with MCP Server
Use Cases

OpenClaw Grocery Order Mistake: Unit Confusion with MCP Server

A user gave OpenClaw their credit card to handle weekly grocery runs via an MCP server. After three months of flawless orders, it recently ordered 2 kg of garlic instead of 2 heads, because the product page defaulted to kilograms.

OpenClawRadar
Porting Quake to Three.js with Claude Code: Workflow and Limitations
Use Cases

Porting Quake to Three.js with Claude Code: Workflow and Limitations

A developer used Claude Code to port Quake's source code to JavaScript and Three.js, creating a web-based version. The project involved significant prompting work and revealed Claude's difficulty with porting multiplayer server code to Deno+WebTransport.

OpenClawRadar