<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nex AI</title>
    <description>The latest articles on DEV Community by Nex AI (@nexaiguy).</description>
    <link>https://dev.to/nexaiguy</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3860621%2F52185cc2-d653-4a15-ac43-ddc3a9a1faef.png</url>
      <title>DEV Community: Nex AI</title>
      <link>https://dev.to/nexaiguy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nexaiguy"/>
    <language>en</language>
    <item>
      <title>I Built 15 OpenClaw Skills for Belgian SMEs: Technical Decisions and Lessons Learned</title>
      <dc:creator>Nex AI</dc:creator>
      <pubDate>Sun, 05 Apr 2026 21:25:48 +0000</pubDate>
      <link>https://dev.to/nexaiguy/i-built-15-openclaw-skills-for-belgian-smes-technical-decisions-and-lessons-learned-1j0p</link>
      <guid>https://dev.to/nexaiguy/i-built-15-openclaw-skills-for-belgian-smes-technical-decisions-and-lessons-learned-1j0p</guid>
      <description>&lt;p&gt;Last month, I analyzed the ClawHub registry and realized something striking: 13,700+ skills available, but business finance categories were nearly empty. No skills for Belgian e-invoicing, no VAT tools, no SME-specific workflows. As founder of Nex AI, a Belgian digital transformation agency, I saw an opportunity. I built 15 skills to fill that gap in one month. Here's what I learned.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Gap Analysis: Finding the Empty Shelves
&lt;/h2&gt;

&lt;p&gt;ClawHub's registry is massive, but the Pareto principle applies hard. I indexed the 13,700 skills and grouped them by category. Automation, AI, and developer tools dominated. But look at business processes? Finance? Compliance? Crickets. Worse, anything Belgium-specific was nonexistent.&lt;/p&gt;

&lt;p&gt;For an SME operator in Belgium or Flanders, there were no skills to handle:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Mandatory e-invoice format changes (happened Jan 2026)&lt;/li&gt;
&lt;li&gt;VAT calculation for digital services&lt;/li&gt;
&lt;li&gt;Freelancer invoice templates&lt;/li&gt;
&lt;li&gt;Agency retainer tracking&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This gap made sense. ClawHub wasn't saturated in vertical niches. Most builders were chasing broad audiences. But that meant zero competition for Belgium-specific, finance-adjacent tools that my network actually needed.&lt;/p&gt;

&lt;p&gt;I decided to ship 15 skills in one month. All Python. All simple. All targeting freelancers, SMEs, and agency operators.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Belgian E-Invoicing Mandate: Technical First Priority
&lt;/h2&gt;

&lt;p&gt;On January 1, 2026, Belgium enforced the Peppol BIS 3.0 standard for e-invoicing. UBL 2.1 XML format. Overnight, any freelancer or small agency invoicing a Belgian company needed compliant invoices or face penalties.&lt;/p&gt;

&lt;p&gt;No existing skill handled this. I built &lt;code&gt;nex-einvoice&lt;/code&gt; first.&lt;/p&gt;

&lt;p&gt;The design decision was straightforward: Python only, stdlib only, zero external dependencies (except optional tesseract/whisper for OCR, optional ffmpeg for media). Why? Because ClawHub skills are distributed as single Python files. No pip install. Users drop the file, run it, done. Dependencies break that promise.&lt;/p&gt;

&lt;p&gt;For e-invoicing compliance, I needed to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Parse invoice data (name, amount, dates, VAT)&lt;/li&gt;
&lt;li&gt;Generate valid UBL 2.1 XML&lt;/li&gt;
&lt;li&gt;Validate against Peppol rules&lt;/li&gt;
&lt;li&gt;Output a file ready to send to a Belgian invoicing hub&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Python's &lt;code&gt;xml.etree.ElementTree&lt;/code&gt; handles XML generation without dependencies. The stdlib &lt;code&gt;datetime&lt;/code&gt; and &lt;code&gt;decimal&lt;/code&gt; modules ensure precision. The entire skill is ~800 lines.&lt;/p&gt;

&lt;h2&gt;
  
  
  Technical Architecture: Consistency Across 15 Skills
&lt;/h2&gt;

&lt;p&gt;I needed consistency. All 15 skills follow the same patterns:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SQLite with FTS5 everywhere.&lt;/strong&gt; Every skill that needs persistent storage uses SQLite. Why? It's bundled with Python. No server. No migrations. FTS5 (full-text search) lets me index invoice descriptions, client names, VAT codes, whatever. Query time is milliseconds. File is portable, versioned in Git.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Argparse CLI across all 15.&lt;/strong&gt; Every skill uses &lt;code&gt;argparse&lt;/code&gt; for CLI parsing. Users run:&lt;/p&gt;

&lt;p&gt;python nex-einvoice.py --invoice-file invoice.csv --output peppol.xml --validate&lt;/p&gt;

&lt;p&gt;Consistent interface. Easy to chain into workflows. Every skill documents its arguments the same way.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Shared patterns, DRY principle.&lt;/strong&gt; All 15 skills use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;_check_db()&lt;/code&gt;: Initialize SQLite with schema if needed, idempotent&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;_db_conn()&lt;/code&gt;: Context manager for safe connections&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;FOOTER&lt;/code&gt; constant: Consistent markdown output footer with GitHub link&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;lib/&lt;/code&gt; modules: Shared validation logic, formatters, e-invoice builders&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Example SKILL.md frontmatter (ClawHub format):&lt;/p&gt;




&lt;p&gt;name: nex-einvoice&lt;br&gt;
description: "Generate Belgian-compliant e-invoices in the Peppol BIS 3.0"&lt;br&gt;
  UBL format from natural language input in Dutch or English...&lt;br&gt;
  (150-300 words, this is your entire SEO on ClawHub)&lt;br&gt;
version: 1.0.0&lt;br&gt;
metadata:&lt;br&gt;
  clawdbot:&lt;br&gt;
    emoji: "\U0001F9FE"&lt;br&gt;
    requires:&lt;br&gt;
      bins:&lt;br&gt;
        - python3&lt;br&gt;
      env: []&lt;br&gt;
    homepage: &lt;a href="https://nex-ai.be" rel="noopener noreferrer"&gt;https://nex-ai.be&lt;/a&gt;&lt;br&gt;
    files:&lt;br&gt;
      - "nex-einvoice.py"&lt;br&gt;
      - "lib/*"&lt;/p&gt;

&lt;h2&gt;
  
  
        - "setup.sh"
&lt;/h2&gt;

&lt;p&gt;Note the &lt;code&gt;MIT-0&lt;/code&gt; license (separate LICENSE.txt file). ClawHub requires MIT-0 or compatible. Non-negotiable.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 15 Skills: Grouped by Tier
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Tier 1: Core Business Tools&lt;/strong&gt; (5 skills)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;nex-einvoice&lt;/code&gt;: Peppol BIS 3.0 / UBL 2.1 e-invoice generator from natural language&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-expenses&lt;/code&gt;: Receipt OCR and expense categorization with 15 Belgian tax deduction buckets&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-crm&lt;/code&gt;: Chat-native prospect CRM with pipeline management&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-vault&lt;/code&gt;: Contract and document vault with auto-renewal detection and expiry alerts&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-healthcheck&lt;/code&gt;: Multi-service monitoring dashboard with 9 check types&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Tier 2: Agency Operations&lt;/strong&gt; (5 skills)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;nex-deliverables&lt;/code&gt;: Client deliverable tracker for agencies managing multiple projects&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-domains&lt;/code&gt;: DNS and domain portfolio manager with Cloudflare API sync&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-reports&lt;/code&gt;: Scheduled report generator aggregating data from 10 modules&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-keyring&lt;/code&gt;: API key rotation tracker for secret hygiene and audit compliance&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-changelog&lt;/code&gt;: Release notes generator with git parsing and client email formatting&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Tier 3: Specialized Tools&lt;/strong&gt; (5 skills)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;nex-voice&lt;/code&gt;: Voice note transcription with Whisper integration and action item extraction&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-pricewatch&lt;/code&gt;: Competitive price monitor with CSS/XPath/regex scraping&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-onboarding&lt;/code&gt;: Client onboarding checklist with 20-step agency workflow template&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-gdpr&lt;/code&gt;: GDPR/AVG data request handler for Articles 15-21 compliance&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;nex-skillmon&lt;/code&gt;: Skill health and cost monitor for OpenClaw power users&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I Learned About ClawHub Publishing
&lt;/h2&gt;

&lt;p&gt;ClawHub uses semantic vector search on the &lt;code&gt;description&lt;/code&gt; field only. Your title is nice, but your description IS your SEO.&lt;/p&gt;

&lt;p&gt;I made mistakes on early submissions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;First version of &lt;code&gt;nex-einvoice&lt;/code&gt;: 45 words, stuffed keywords. Poor ranking.&lt;/li&gt;
&lt;li&gt;Revised: 150 words, natural language, explained the Belgian mandate and Peppol standard. Top results for "belgian invoice" and "peppol xml".&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sweet spot: 150-300 words. Write for humans, not search bots. Explain the problem, the solution, who benefits. ClawHub's algorithm finds you.&lt;/p&gt;

&lt;p&gt;One more thing: early 2026, ClawHub had a malware crisis. Someone published 200+ fake skills (crypto scams, data theft). Trust matters. I published all 15 skills open-source on GitHub: &lt;code&gt;github.com/Nex-AI-Guy&lt;/code&gt;. Every skill is auditable. Zero external dependencies. I link to GitHub in every SKILL.md. Transparency is a feature, not a burden.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Business Model: Free Skills, Paid Services
&lt;/h2&gt;

&lt;p&gt;This is the lead funnel. The 15 skills are free, MIT-0 licensed, open-source. They solve real problems for Belgian freelancers and SMEs. Users download, use, appreciate. Some will ask: "Can you customize this? Can you integrate this into our workflow? Can you train our team?"&lt;/p&gt;

&lt;p&gt;That's where Nex AI enters. Retainer services. Deeper integrations. Custom skills. The free skills are the front door.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;All 15 skills are live on ClawHub now. I'm tracking which descriptions perform best, which search terms drive installs, and which skills generate inbound interest. Early signs are promising for the Belgian e-invoicing niche since there's literally zero competition.&lt;/p&gt;

&lt;p&gt;If you're building skills for a specific geography or vertical, you already know the gap. You see the empty shelves. The market is there. Start with the simplest problem (the e-invoicing mandate was my forcing function), build backwards, and ship.&lt;/p&gt;

&lt;p&gt;Explore all 15 skills on &lt;a href="https://clawhub.ai/@NexaiGuy" rel="noopener noreferrer"&gt;ClawHub (@NexaiGuy)&lt;/a&gt;, or check out the source code at &lt;a href="https://github.com/Nex-AI-Guy" rel="noopener noreferrer"&gt;github.com/Nex-AI-Guy&lt;/a&gt;. I'm curious what gaps you see in your market.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Kevin Blancaflor is founder of &lt;a href="https://nex-ai.be" rel="noopener noreferrer"&gt;Nex AI&lt;/a&gt;, a Belgian digital transformation agency based in Gent. Find all skills at &lt;a href="https://clawhub.ai/@NexaiGuy" rel="noopener noreferrer"&gt;clawhub.ai/@NexaiGuy&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>opensource</category>
      <category>api</category>
      <category>ecommerce</category>
    </item>
    <item>
      <title>I Built an AI Agent Skill That Remembers Everything You Do on Your Computer</title>
      <dc:creator>Nex AI</dc:creator>
      <pubDate>Sat, 04 Apr 2026 07:53:15 +0000</pubDate>
      <link>https://dev.to/nexaiguy/i-built-an-ai-agent-skill-that-remembers-everything-you-do-on-your-computer-5hco</link>
      <guid>https://dev.to/nexaiguy/i-built-an-ai-agent-skill-that-remembers-everything-you-do-on-your-computer-5hco</guid>
      <description>&lt;p&gt;AI agents are powerful. But they have a blind spot: they start every conversation from zero. They don't know what you were researching yesterday, which YouTube tutorial explained that technique you need, or how you solved a similar problem last month.&lt;/p&gt;

&lt;p&gt;I wanted to fix that. So I built &lt;strong&gt;Nex Life Logger&lt;/strong&gt;, a background activity tracker that gives your AI agent persistent memory of what you actually do on your computer. It tracks your browsing history, active windows, and YouTube videos, stores everything locally, and lets you query it all through natural language.&lt;/p&gt;

&lt;p&gt;67,000+ activities tracked so far. Zero data sent to the cloud.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;I run a digital transformation agency in Belgium (Nex AI) and spend my days jumping between code editors, documentation, design tools, YouTube tutorials, and dozens of browser tabs. By Friday, I've forgotten half of what I researched on Monday. I needed a way to ask "What was I working on when I was debugging that Docker issue?" and get an actual answer.&lt;/p&gt;

&lt;p&gt;Existing tools like Rewind and Windows Recall either send your data to the cloud or lock you into one platform. For someone who cares about where their data goes, that was a dealbreaker.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;Nex Life Logger has a simple architecture. A background collector runs every 30 seconds and captures three things:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Browser history&lt;/strong&gt; from Chrome, Edge, Brave, and Firefox. It copies the locked SQLite history files to temp, reads them, then securely deletes the copies (overwritten with random bytes before unlinking). No browser extension needed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Active window focus.&lt;/strong&gt; It checks which application and window title are in the foreground. This gives context about what tool you were using, not just what you were browsing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;YouTube transcripts.&lt;/strong&gt; When you watch a productive video, it automatically fetches the full transcript and stores it. This is where the real value is. When the AI generates summaries, it can tell you exactly what was discussed in each video, including the key concepts, tools, and techniques mentioned.&lt;/p&gt;

&lt;p&gt;Everything lands in a local SQLite database at &lt;code&gt;~/.life-logger/&lt;/code&gt;. WAL mode for crash safety, owner-only file permissions, no external connections.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Filtering Layer
&lt;/h2&gt;

&lt;p&gt;Tracking everything would be a privacy nightmare. So there are multiple filtering layers:&lt;/p&gt;

&lt;p&gt;Chat and messaging apps are excluded automatically. WhatsApp, Discord, Slack, Telegram, Signal, Teams, and anything with &lt;code&gt;/messages&lt;/code&gt;, &lt;code&gt;/chat&lt;/code&gt;, or &lt;code&gt;/dm&lt;/code&gt; in the URL. Sensitive windows too: password managers, banking apps.&lt;/p&gt;

&lt;p&gt;There's also a productivity filter. The system only tracks content related to AI, programming, design, building, and learning. Politics, news, entertainment, sports, and celebrity gossip are automatically filtered out. You can configure all of this through 12 customizable filter categories.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI-Powered Summaries
&lt;/h2&gt;

&lt;p&gt;Raw activity data is useful but noisy. The real power comes from hierarchical AI summaries.&lt;/p&gt;

&lt;p&gt;Every night at 11 PM, the system generates a daily summary from that day's raw activities and transcripts. On Sundays, it generates a weekly summary from the daily ones. On the 1st of each month, a monthly summary from the weeklies. On January 1st, a yearly summary from the monthlies.&lt;/p&gt;

&lt;p&gt;Each level builds on the one below it, creating a compressed but rich record of everything you've done. After a few weeks, you have a layered memory system that an AI can search through instantly.&lt;/p&gt;

&lt;p&gt;The summarization works with any OpenAI-compatible API. I'm running it with Alibaba's Qwen (free tier), but you can use OpenAI, Groq, Ollama for fully local, or any compatible endpoint.&lt;/p&gt;

&lt;h2&gt;
  
  
  Querying Your History
&lt;/h2&gt;

&lt;p&gt;There are two ways to query your data.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The desktop app&lt;/strong&gt; has a built-in AI Search tab. Type a question like "What was I researching about Docker last week?" and it searches across activities, summaries, keywords, and transcripts, then generates an answer with specific dates, links, and context.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The OpenClaw/ClawHub skill&lt;/strong&gt; lets you query through any connected agent, whether that's Telegram, Discord, or WhatsApp. I published the skill to ClawHub (the OpenClaw skill registry) so anyone running OpenClaw can install it with one command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx clawhub &lt;span class="nb"&gt;install &lt;/span&gt;nex-life-logger
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then you message your agent naturally. "What was I working on yesterday?" and it calls the CLI, searches your local database, and answers in the conversation.&lt;/p&gt;

&lt;h2&gt;
  
  
  The CLI
&lt;/h2&gt;

&lt;p&gt;The ClawHub skill includes a full CLI for querying your data directly:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;nex-life-logger search &lt;span class="s2"&gt;"docker containers"&lt;/span&gt;
nex-life-logger summary daily
nex-life-logger activities &lt;span class="nt"&gt;--last&lt;/span&gt; 2h &lt;span class="nt"&gt;--kind&lt;/span&gt; youtube
nex-life-logger keywords &lt;span class="nt"&gt;--category&lt;/span&gt; tool &lt;span class="nt"&gt;--top&lt;/span&gt; 15
nex-life-logger stats
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;There are commands for searching, browsing activities, viewing summaries, extracting keywords, managing the background collector, configuring AI providers, and exporting your data in JSON, CSV, or HTML.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned Building It
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;SQLite is perfect for this use case.&lt;/strong&gt; Fast writes, zero configuration, single file backups. With WAL mode, the collector and the viewer can read and write simultaneously without conflicts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Content filtering is harder than expected.&lt;/strong&gt; The productivity filter went through multiple iterations. Pure keyword matching catches obvious cases but misses nuance. I added an optional AI-based classifier for ambiguous content, but kept it off by default to avoid unnecessary API costs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;YouTube transcripts are gold.&lt;/strong&gt; The daily summaries became 10x more useful once they included what was discussed in videos. Instead of "watched 3 YouTube videos about Docker," you get "watched a tutorial on multi-stage Docker builds covering layer caching, build arguments, and image optimization for production."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Privacy-first isn't just a feature, it's a design constraint.&lt;/strong&gt; Every decision was filtered through "does this keep data local?" No cloud sync, no telemetry, no analytics. The API key is stored in Windows Credential Manager, not a config file. Browser history files are securely deleted after reading. It adds complexity, but it's the right tradeoff.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;The current version tracks browsers and windows. I'm considering adding:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Clipboard history&lt;/strong&gt; (what you copy and paste throughout the day)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Terminal commands&lt;/strong&gt; (your shell history with context)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;File system changes&lt;/strong&gt; (what files you created, modified, deleted)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Calendar integration&lt;/strong&gt; (correlate activities with meetings)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each one adds another dimension to the agent's memory of your workday.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Desktop app (Windows, macOS, Linux):&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://github.com/NexaiGuy/nex-life-logger" rel="noopener noreferrer"&gt;GitHub: NexaiGuy/nex-life-logger&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;OpenClaw/ClawHub skill (one-command install):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx clawhub &lt;span class="nb"&gt;install &lt;/span&gt;nex-life-logger
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://clawhub.ai/nexaiguy/nex-life-logger" rel="noopener noreferrer"&gt;ClawHub: nex-life-logger&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Built by &lt;a href="https://nex-ai.be" rel="noopener noreferrer"&gt;Nex AI&lt;/a&gt;, a digital transformation agency in Belgium. If you work with AI agents and want this kind of integration for your business, that's what we do.&lt;/p&gt;

&lt;p&gt;What data sources would you want your agent to remember? I'd love to hear what would be most useful.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>opensource</category>
      <category>ai</category>
      <category>privacy</category>
    </item>
  </channel>
</rss>
