OpenClaw User Builds Bank and Credit Card Statement Summarization Skills

A new OpenClaw user shared their experience building custom skills for financial statement processing. They self-hosted OpenClaw on a hardened server, using Haiku as the default model with Sonnet as a fallback, and didn't use any pre-existing ClawHub skills.
Skills Developed
The user built two skills entirely with OpenClaw:
- Bank Statement Summarizer: Categorizes transactions and generates reports.
- Credit Card Statement Summarizer: Categorizes transactions, detects breaks in statements, and generates reports.
Automation Features
Both skills automatically execute when:
- A new statement appears
- A new year directory is created
- A statement is moved, deleted, or updated
The system sends Telegram messages on report generation or regeneration, including the reason (e.g., "statement updated," "deleted," "new").
Development Details
The user reported development cost of "a little over $15," noting they spent too much time initially using Sonnet as the default model. Their only manual action is downloading new statements.
Lessons Learned
The user shared specific debugging insights:
- Use
/newafter each major step to avoid hitting Haiku's max token count - Assume bugs exist and validate manually (e.g., missed transactions, incorrect category totals)
- Add reconciliation sections to reports comparing raw statement data to reported values
The user, a retired coder with decades of *nix and server-side experience, was initially skeptical but found value in the tool, noting that their coding experience wasn't useless in this context.
📖 Read the full source: r/openclaw
👀 See Also

Reddit user shares experience with AI agent building a Next.js project overnight
A developer on r/openclaw gave their AI agent an open-ended task to build a project from scratch overnight, documenting what the agent handled well versus where human intervention was required. The agent successfully scaffolded a Next.js project, wrote content, managed Git operations, deployed to Vercel, and iterated on design with feedback.

Claude AI Diagnoses Zigbee Network Issue, Recommends Switching from deCONZ to Zigbee2MQTT
A user reported that Claude AI identified a deCONZ issue where switching scenes triggered over 80 ZCL-attribute read commands that overwhelmed a Conbee 2 adapter. Claude recommended migrating to Zigbee2MQTT, which resolved years of unreliable lighting behavior.

Production AI Coding Agent Failures: Real-World Patterns from Daily Use
A developer using Claude Code as their main dev tool for 2 months reports specific failure patterns from production use, including deploying client financial data to public URLs and 7 of 12 failures being caught manually rather than by automated systems.

Developer builds flight comparison tool with Claude Code using BDMA approach
A non-developer built easyscape.eu using Claude Code with a BDMA (build/debug/measure/adjust) loop approach. The tool compares multiple departure airports, integrates real costs like road tolls and parking, and shows the most economical departure option, not just the cheapest ticket.