Loading...
Loading...
Build local-first executive assistant workflows with OpenClaw for data intake, operational memory, and communications triage
npx skill4agent add aradotso/hermes-skills openclaw-executive-assistant-webinarSkill by ara.so — Hermes Skills collection.
code-along/
├── INDEX.md
├── 01-data-intake-review/
│ ├── incoming/ # Files to inspect
│ ├── prompts/intake-review.md
│ ├── outputs/intake-review.md
│ └── expected/report-outline.md
├── 02-operational-memory/
│ ├── inbox/ # Notes and work residue
│ ├── prompts/daily-log.md
│ ├── prompts/weekly-hype.md
│ ├── outputs/daily-log.md
│ ├── outputs/weekly-hype.md
│ └── schedule/cron-examples.md
├── 03-offline-communications-triage/
│ ├── eml/ # Exported email files
│ ├── prompts/email-triage.md
│ ├── outputs/email-triage.md
│ └── expected/report-outline.md
└── mission-control/ # Dashboard linksgit clone https://github.com/dandenney/webinars-build-your-own-executive-assistant-with-openclaw.git
cd webinars-build-your-own-executive-assistant-with-openclawwebinar-runbook.htmlcode-along/incoming/cd code-along/01-data-intake-reviewincoming/prompts/intake-review.mdoutputs/intake-review.mdYou are reviewing files for an executive assistant intake process.
Files to review: [list files from incoming/]
For each file, provide:
1. Filename and type
2. Brief content summary
3. Priority level (high/medium/low)
4. Recommended next action
5. Any concerns or flags
Output format: structured markdown with sections.cd code-along/02-operational-memoryinbox/prompts/daily-log.mdoutputs/daily-log.mdprompts/weekly-hype.mdoutputs/weekly-hype.mdReview today's work residue and create a daily log.
Input sources: [files from inbox/]
Generate a daily log with:
- Date
- Key accomplishments
- Decisions made
- Blocked items
- Tomorrow's priorities
Format: clean markdown with bullet points.Synthesize this week's daily logs into a weekly summary.
Input: [daily logs from outputs/]
Create a weekly summary with:
- Week ending date
- Top 3 wins
- Key metrics or milestones
- Learnings or insights
- Next week's focus areas
Format: narrative markdown with emphasis on momentum.schedule/cron-examples.md# Daily log generation at 6 PM
0 18 * * * cd /path/to/project && ./generate-daily-log.sh
# Weekly summary on Friday at 5 PM
0 17 * * 5 cd /path/to/project && ./generate-weekly-summary.shcd code-along/03-offline-communications-triageeml/.emlprompts/email-triage.mdoutputs/email-triage.mdTriage these exported emails and create an action list.
Input: [.eml files from eml/ directory]
For each email, extract:
- Sender and subject
- Summary (1-2 sentences)
- Required action (reply/delegate/file/delete)
- Priority (urgent/normal/low)
- Deadline (if mentioned)
Group by action type and priority.
Output: structured markdown report.# Email Triage Report
Generated: 2026-05-11
## Urgent Actions Required
- [Sender Name] RE: [Subject] - [Action needed] - Due: [Date]
## Normal Priority
- [Sender Name] RE: [Subject] - [Action needed]
## Low Priority / FYI
- [Sender Name] RE: [Subject] - [Action: file]
## Deletable
- [Sender Name] RE: [Subject] - [Reason]export OPENCLAW_WORKSPACE="/path/to/code-along"
export OPENCLAW_OUTPUT_DIR="${OPENCLAW_WORKSPACE}/outputs"
export OPENCLAW_ARCHIVE_DIR="${OPENCLAW_WORKSPACE}/archive"prompts/# 1. Place files in appropriate incoming/ directory
# 2. Load the prompt template
# 3. Pass files and prompt to AI assistant
# 4. Save markdown output
# 5. Review and iterate if needed# Daily: inbox/ → daily-log.md
# Weekly: daily logs → weekly-hype.md
# Monthly: weekly summaries → monthly-review.md# Export emails to .eml
# Run triage prompt on entire batch
# Generate single consolidated report
# Archive processed emails##YYYY-MM-DDContext files to review:
- project-background.md
- stakeholder-map.md
- current-priorities.md
Then process: [actual files]prompts/
├── daily-log-v1.md
├── daily-log-v2.md # current
└── daily-log-archive/code-along/prompts/intake-review.mdoutputs/[filename].mddaily-log-2026-05-11.mdcode-along/04-custom-workflow/
├── inputs/
├── prompts/
│ └── custom-prompt.md
├── outputs/
└── expected/mission-control/<!DOCTYPE html>
<html>
<head><title>Executive Assistant Dashboard</title></head>
<body>
<h1>Today's Reports</h1>
<ul>
<li><a href="../01-data-intake-review/outputs/intake-review.md">Intake Review</a></li>
<li><a href="../02-operational-memory/outputs/daily-log.md">Daily Log</a></li>
<li><a href="../03-offline-communications-triage/outputs/email-triage.md">Email Triage</a></li>
</ul>
</body>
</html>