M9-C — Autonomous Workflows
How to read this note
Autonomous does not mean "no human ever." It means: you set the goal and rules once — the agent runs the repeat steps without you holding its hand every second.
🔄 Autonomous workflow = agent + trigger + loop
TRIGGER AGENT LOOP OUTPUT
──────── ────────── ──────
Every morning → search news → summarise → save to Obsidian
New email → classify → draft reply → wait for your OK
File uploaded → chunk+RAG → index → chat ready
Compare to Module 4 prompt automation:
| Prompt automation (Module 4) | Agent workflow (Module 9) |
|---|---|
| You paste between steps | Software/agent connects steps |
| Fixed text prompts | Agent can choose tools dynamically |
| You always start it | Trigger can start it (time, event) |
🎬 Example — Daily study quote agent
Trigger: 7 AM every day
Goal: Send one motivational quote + one exam tip from uploaded notes
Loop:
1. Read notes folder
2. Pick random chunk
3. Generate quote + tip
4. Send to Telegram
5. Log what was sent (memory)
You set this up once. It runs autonomously each morning.
You still check logs weekly — that is human oversight.
⚙️ Backend picture
┌────────────┐
│ Scheduler │ cron / n8n / OpenClaw timer
└─────┬──────┘
▼
┌────────────┐
│ Agent │ LLM + memory + tools
│ runtime │
└─────┬──────┘
▼
┌────────────┐ ┌────────────┐
│ Tool API │────▶│ External │
│ layer │ │ world │
└────────────┘ └────────────┘
(email, files, web)
| Component | Plain English |
|---|---|
| Scheduler | Alarm clock that starts the agent |
| Agent runtime | Brain loop from M9-A — What Are AI Agents |
| Tool API | Hands — search, write, send |
Module 12 (N8N install) covers n8n as the scheduler + connector layer.
🚦 Levels of autonomy
| Level | Name | Example |
|---|---|---|
| 0 | Manual | You copy-paste every prompt |
| 1 | Semi-auto | Agent drafts, you always approve send |
| 2 | Conditional auto | Auto-send if confidence high, else ask you |
| 3 | Full auto | Runs without you (risky for customer-facing) |
For beginners, stay at Level 0–1
Level 3 is for mature systems with testing — not day one homework.
🎯 Brochure capstone — Business Automation System
Entrepreneur track example:
Trigger: New lead form submitted
→ Agent reads product PDF
→ Drafts personalised WhatsApp
→ Waits for human approve
→ Sends message
→ Logs in spreadsheet
Autonomous preparation. Human approval. That is professional design.
✅ Design your first autonomous workflow
Fill this template in Obsidian:
Name:
Trigger (time / event):
Goal (one sentence):
Tools allowed:
Max steps:
Human must approve before:
What memory file to update:
Previous: M9-B — Memory Planning and Execution
Next: M10-A — When One Agent Is Not Enough
Tools: Open claw · N8N install