惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
The Blog of Author Tim Ferriss
罗磊的独立博客
月光博客
月光博客
GbyAI
GbyAI
腾讯CDC
G
Google Developers Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
C
Check Point Blog
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
雷峰网
雷峰网
B
Blog RSS Feed
美团技术团队
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
D
Docker

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Starting to Build a One‑Person Company on Azure with Open...
David Au Yeu · 2026-04-25 · via DEV Community

What I Built

I built a fully automated daily campaign‑letter summarizer running on an Azure VM using OpenClaw. Every morning at 9am, my AI agent scans a folder of campaign letters, summarizes them, and writes a clean daily report.

The most interesting part?

I didn't write any .claw files, YAML, or Python glue code manually.

Instead, I discovered that OpenClaw can create skills and cron tasks directly through conversation, which turned out to be the most reliable way to build automation.

This project became my first step toward a "one‑person AI company", a system that runs tasks for me automatically, every day.

How I Used OpenClaw

1. Setting Up the Azure VM

I deployed an Ubuntu VM on Azure to host OpenClaw. This gave me a stable, always‑on environment for scheduled tasks.

2. Installing WSL + Ubuntu

Inside the VM, I used WSL to create a clean Ubuntu environment.

This kept OpenClaw isolated and easy to reset.

wsl --install

Enter fullscreen mode Exit fullscreen mode

3. Installing OpenClaw

I installed OpenClaw using the official script:

curl "fsSL https://get.openclaw.ai/install.sh | bash

Enter fullscreen mode Exit fullscreen mode

Then launched the TUI:

openclaw tui

Enter fullscreen mode Exit fullscreen mode

This dropped me into the interactive agent environment.

4. Upgrading Ollama to Cloud Pro

Free Ollama API key caused authentication and provider errors.

Switching to Ollama Cloud Pro solved everything instantly (I paid for a month for this POC (˵ ͡° ͜ʖ ͡°˵)).

My agent now runs on:

ollama/kimi-k2.5:cloud

Enter fullscreen mode Exit fullscreen mode

Then in TUI:

/model ollama/kimi-k2.5:cloud

Enter fullscreen mode Exit fullscreen mode

5. Creating the Skill (Just by Asking)

At first, I tried to follow the docs and create skills manually-writing Python files and placing them under:

~/.openclaw/workspaces/main/skills/

Enter fullscreen mode Exit fullscreen mode

Those never loaded properly in my environment.

The real breakthrough came when I stopped fighting the filesystem and simply asked the agent in chat:

"Create the skill that summarizes campaign letters from a folder."

and showed him the example:

from claw import skill
import os

@skill
def summarize_campaign_letters(folder: str = "~/openclaw/campaign_letters"):
    folder = os.path.expanduser(folder)
    summaries = []

    for filename in os.listdir(folder):
        path = os.path.join(folder, filename)
        if not os.path.isfile(path):
            continue

        with open(path, "r", encoding="utf-8") as f:
            content = f.read()

        summary = skill.llm(
            f"Summarize the following campaign letter in 5 bullet points:\n\n{content}"
        )

        summaries.append(f"## {filename}\n{summary}\n")

    if not summaries:
        return "No campaign letters found."

    return "\n".join(summaries)

Enter fullscreen mode Exit fullscreen mode

Then OpenClaw generated the "skill", and the /skill command just worked:

/skill summarize_campaign_letters "~/openclaw/campaign_letters"

Enter fullscreen mode Exit fullscreen mode

Under the hood, the Python script that actually runs lives at:

~/.npm-global/lib/node_modules/openclaw/skills/summarize-campaign-letters/scripts/summarize.py

Enter fullscreen mode Exit fullscreen mode

6. Creating the Daily Automation (Cron via Chat)

My agent didn't have a /schedule command, so OpenClaw offered to create a cron job instead.

I simply chatted:

Yes, create one.
Daily summary at 9am
run /skill summarize_campaign_letters

Enter fullscreen mode Exit fullscreen mode

OpenClaw generated the cron entry automatically.

Reminder: Gateway is running but in read-only mode. The cron job needs write capability to create jobs.

Now every morning at 9am (HKT), the agent runs:

/skill summarize_campaign_letters

Enter fullscreen mode Exit fullscreen mode

and writes the output into my reports folder.

Demo

Here's how the system behaves:

" I place text files into the ~/openclaw/campaign_letters folder

" At 9am, the cron job runs

" OpenClaw summarizes each letter

" A new campaign"summary.md appears in my reports folder

This can easily be extended to:

" Email delivery

" Slack notifications

" PDF OCR

" Multi‑step workflows

But even the basic version already saves me time every morning.

What I Learned

1. Chat‑Driven Creation Beats Manual Files

I tried to manually place Python skills under ~/.openclaw/workspaces/main/skills/ and reload them. That path, plus bootstrap and loading behavior, made things fragile.

Simply describing what I wanted in natural language and letting the agent use its own skill-creator flow was:

  • Faster
  • More robust
  • Less error‑prone

2. Cron Is the Real Scheduler in My Setup

My agent didn't have /schedule, but it did know how to:

  • Inspect existing cron jobs
  • Propose new ones
  • Write them for me

So instead of fighting for a missing command, I let the agent set up cron directly.

3. You Can Build Real Automation with Zero Manual Code

The most surprising part:

I ended up with a working, daily automation system without manually writing:

  • .claw files
  • Schedules
  • Skill boilerplate

I just described what I wanted, answered questions, and let OpenClaw wire everything together.

ClawCon Michigan

I didn't attend ClawCon Michigan, but I followed the event online and enjoyed seeing how others used OpenClaw creatively. This challenge pushed me to build something practical and automated, and I'm glad I did.

Love AI!