一键导入
openclaw-executive-assistant-webinar
Build local-first AI executive assistant workflows with OpenClaw for data intake, operational memory, and communications triage
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build local-first AI executive assistant workflows with OpenClaw for data intake, operational memory, and communications triage
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Browser-based interface for viewing and filtering OpenClaw session tool call history with zero dependencies for local network deployment.
AI-powered quantitative research and backtesting platform with end-to-end workflow from research to strategy publication
Give your AI assistant a phone — OpenClaw plugin for real phone calls via Twilio + OpenAI Realtime API with in-call tools, transcripts, and call screening
Run multi-model consensus panels (Lite or Heavy) with your own agent backends—no hosted middleware, your models, your rules.
Build a multi-role JARVIS-style voice assistant with local ASR/TTS, OpenClaw LLM gateway, voice wake words, HUD effects, and speaker verification
Use 37 battle-tested marketing skills covering CRO, copywriting, SEO, paid ads, email, growth, and strategy with real data connectors for Google Ads, Search Console, Meta Ads, and X/Twitter
| name | openclaw-executive-assistant-webinar |
| description | Build local-first AI executive assistant workflows with OpenClaw for data intake, operational memory, and communications triage |
| triggers | ["build an executive assistant with openclaw","set up openclaw local workflows","create data intake review system","generate operational memory logs","triage emails with openclaw","implement openclaw executive assistant","use openclaw for communications management","create markdown artifacts with openclaw"] |
Skill by ara.so — Hermes Skills collection.
This project provides starter files and a structured workshop for building a local-first AI executive assistant using OpenClaw. It demonstrates three core workflows:
All workflows are local-only, produce reviewable markdown artifacts, and use copy/paste prompts with no live integrations.
.
├── webinar-runbook.html # Main workshop walkthrough
└── code-along/
├── INDEX.md
├── 01-data-intake-review/
│ ├── incoming/ # Files to inspect
│ ├── prompts/intake-review.md # Report generation instructions
│ ├── outputs/ # Generated reports
│ └── expected/report-outline.md
├── 02-operational-memory/
│ ├── inbox/ # Work notes and residue
│ ├── prompts/daily-log.md # Daily log prompt
│ ├── prompts/weekly-hype.md # Weekly summary prompt
│ ├── outputs/ # Generated logs
│ └── schedule/ # Cron examples
├── 03-offline-communications-triage/
│ ├── eml/ # Exported email files
│ ├── prompts/email-triage.md # Triage instructions
│ ├── outputs/ # Triage reports
│ └── expected/report-outline.md
└── mission-control/ # Optional dashboard
git clone https://github.com/dandenney/webinars-build-your-own-executive-assistant-with-openclaw.git
cd webinars-build-your-own-executive-assistant-with-openclaw
webinar-runbook.html in a browsercode-along/ folder visible in your editorprompts/ directoriesoutputs/ directoriesGoal: Transform unknown incoming files into a structured intake report.
01-data-intake-review/
├── incoming/ # Place files to review here
├── prompts/
│ └── intake-review.md
├── outputs/
│ └── intake-review.md # Generated report
└── expected/
└── report-outline.md
incoming/prompts/intake-review.mdoutputs/intake-review.mdThe intake review should produce a markdown report containing:
Goal: Create daily logs and weekly summaries from work residue.
02-operational-memory/
├── inbox/ # Work notes, snippets, residue
├── prompts/
│ ├── daily-log.md
│ └── weekly-hype.md
├── outputs/
│ ├── daily-log.md
│ └── weekly-hype.md
└── schedule/
├── cron-examples.md
└── heartbeat-note.md
inbox/prompts/daily-log.md to generate a daily logoutputs/daily-log.mdDaily log structure:
prompts/weekly-hype.md to generate a weekly summaryoutputs/weekly-hype.mdWeekly summary structure:
Reference schedule/cron-examples.md for automation patterns:
# Daily log generation (5 PM weekdays)
0 17 * * 1-5 /path/to/generate-daily-log.sh
# Weekly summary (Friday 5 PM)
0 17 * * 5 /path/to/generate-weekly-summary.sh
Goal: Convert exported email files into an actionable triage report.
03-offline-communications-triage/
├── eml/ # Exported .eml files
├── prompts/
│ └── email-triage.md
├── outputs/
│ └── email-triage.md # Generated triage
└── expected/
└── report-outline.md
.eml files into eml/prompts/email-triage.md with your AI assistantoutputs/email-triage.mdThe email triage report should contain:
Each email entry should include:
All data stays on your machine:
prompts/*.mdoutputs/All outputs are markdown for:
Create new prompt files following the structure:
# [Task Name]
## Context
[What you're working with]
## Goal
[What you want to produce]
## Instructions
[Step-by-step guidance]
## Output Format
[Expected structure]
Combine exercises for compound workflows:
# 1. Review incoming files
# outputs/intake-review.md
# 2. Log the review work
# outputs/daily-log.md (includes intake work)
# 3. Triage any emails found
# outputs/email-triage.md
Edit prompt files to adjust output structure:
Issue: AI generates different format than expected
Solution: Reference expected/*.md files to see the target structure, then refine your prompt with specific format requirements.
Issue: Too many files to process at once
Solution:
Issue: Daily logs vary in format day-to-day
Solution:
Issue: Automated generation fails
Solution:
crontab -lchmod +x script.sh/var/log/cron or system journalWhile this workshop is local-only, you can extend it with:
mission-control/