Practical Lessons from Building an E-commerce AI Agent with OpenClaw

Infrastructure Setup
The developer used a Digital Ocean VPS with 4GB RAM and ~80GB storage, costing about $24/month. They set it up by having Claude walk them through the process in a second browser, noting this approach works well for beginners.
Security Recommendations
Important security lessons include: don't give the agent access to your whole machine (they had a VPS wiped clean early on), keep it sandboxed, move away from Discord to Telegram to prevent unauthorized prompting, set up SSH security with a firewall, ensure access is only through local host, and disable any reverse proxy to prevent online server access.
File Access Workflow
They started with FileZilla but found it clunky. The breakthrough was setting up SSHFS to connect VPS files directly to an Obsidian vault, allowing real-time viewing and editing with bidirectional changes.
Model Selection and Costs
Primary model: Kimi K2.5 at roughly $0.50 input / $2-3 output. A full workday of prompting costs about $10-15. For heartbeats and background tasks, they switched to cheaper models like Gemini Flash to avoid bleeding money (heartbeats alone were costing $1-2/day). They note that weaker models require more rigid rules and documentation since they "get dumber the longer a session runs," while strong models anticipate needs and cheap models need hand-holding.
Memory Architecture
This is identified as the most important consideration. They recommend setting up a strong memory foundation from day one, letting it grow organically with everything connected like Obsidian backlinks: files linking to related content, maps of content for different categories, and clear navigation structures. Without this early setup, you'll spend tokens retrofitting later and create a mess. Also, be explicit about what the agent can and can't modify to prevent important files from being wiped.
Additional Workflow Tips
- Sub-agent templates for consistent structure across new agents (identity, memory format, configs)
- Decision trees instead of one massive instruction file to reduce token usage and improve navigability
- Master command sheet in notes app with shortcuts for restarting gateway, accessing browser UI, modifying configs
- When Kimi struggles, open Opus or Sonnet on the side to troubleshoot
📖 Read the full source: r/openclaw
👀 See Also

Using OpenClaw's SkyClaw bot for personal expense tracking via Discord and Google Sheets
A user describes using SkyClaw, a cloud-native bot powered by OpenClaw, to log expenses through Discord messages and receipt images, which are automatically added to a Google Sheet without needing access to sensitive personal accounts.

Reddit user pulls health data from 3 sources with OpenClaw for cardiology appointment
A Reddit user used OpenClaw to merge export files from a fitness watch, text messages, and handwritten notes into a doctor-requested Excel workbook. OpenClaw resolved date conflicts, extracted medication info, and emailed the result without leaking financial data.

Practical Lessons from Deploying OpenClaw for Five Businesses
A developer shares specific infrastructure choices, billing approaches, and model tiering strategies learned from running OpenClaw agents for five real businesses, including a care agency, events business, and auto detailer.

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.