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-workflowsSkill 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
│ │ └── weekly-hype.md
│ ├── outputs/
│ │ ├── daily-log.md
│ │ └── weekly-hype.md
│ └── schedule/
│ ├── cron-examples.md
│ └── heartbeat-note.md
├── 03-offline-communications-triage/
│ ├── eml/ # Exported email files
│ ├── prompts/
│ │ └── email-triage.md
│ ├── outputs/
│ │ └── email-triage.md
│ └── expected/
│ └── report-outline.md
└── mission-control/ # Optional dashboardcd code-along/01-data-intake-reviewincoming/prompts/intake-review.mdoutputs/intake-review.md# Data Intake Review Prompt
Review all files in the incoming/ directory and create a structured report:
## Summary
- Total files reviewed
- File types present
- Overall assessment
## File-by-File Analysis
For each file:
- Filename
- Type
- Size
- Key contents
- Recommendation (keep/archive/delete/action)
## Action Items
List any files requiring immediate attention
## Archive Candidates
List files safe to archive# Intake Review - [DATE]
## Summary
3 files reviewed
- 1 PDF document
- 1 CSV dataset
- 1 text note
## File Analysis
### document.pdf
- **Type**: PDF proposal
- **Size**: 2.4 MB
- **Contents**: Q2 budget proposal draft
- **Recommendation**: ACTION - Review by EOD Friday
### data.csv
- **Type**: CSV dataset
- **Size**: 145 KB
- **Contents**: Customer feedback responses
- **Recommendation**: KEEP - Reference for analysis
## Action Items
1. Review document.pdf budget proposal
2. Schedule feedback analysis meetingcd code-along/02-operational-memory# Daily Log Prompt
Review all notes and work artifacts in inbox/ from today.
Generate a daily log with:
## Work Completed
- Tasks finished
- Decisions made
- Problems solved
## In Progress
- Ongoing work
- Blockers encountered
## Notes for Tomorrow
- Priorities
- Follow-ups needed
## Quick Wins
- Small achievements worth noting# Weekly Hype Prompt
Review the past week's daily logs.
Create a weekly summary:
## 🎯 Goals Achieved
What got done this week
## 📈 Progress Made
Movement on larger initiatives
## 🔥 Highlights
Wins worth celebrating
## 🚀 Next Week Focus
Top 3 priorities
## 💡 Lessons Learned
Key insights from the week# Daily log at 5 PM
0 17 * * * cd ~/code-along/02-operational-memory && ./generate-daily-log.sh
# Weekly summary on Friday at 4 PM
0 16 * * 5 cd ~/code-along/02-operational-memory && ./generate-weekly-hype.sh#!/bin/bash
# generate-daily-log.sh
DATE=$(date +%Y-%m-%d)
PROMPT_FILE="prompts/daily-log.md"
OUTPUT_FILE="outputs/daily-log-${DATE}.md"
# Read prompt and process inbox
echo "Generating daily log for ${DATE}..."
# Copy prompt template
cp "$PROMPT_FILE" "$OUTPUT_FILE"
# Add date header
echo "# Daily Log - ${DATE}" >> "$OUTPUT_FILE"
# Process would happen here via AI agent
# This is a manual copy/paste workflow in the workshopcd code-along/03-offline-communications-triage.emleml/# Email Triage Prompt
Review all .eml files in the eml/ directory.
Create a triage report:
## 🚨 Urgent - Respond Today
Emails requiring immediate attention
## 📋 Action Required - This Week
Emails needing response within 3-5 days
## 📖 For Review
Informational emails worth reading
## 🗑️ Low Priority
Can be archived or handled later
For each email include:
- From
- Subject
- Date
- Brief summary
- Recommended action
- Estimated time required# Email Triage Report - 2026-04-25
## 🚨 Urgent - Respond Today
### Email 1
- **From**: sarah@company.com
- **Subject**: Q2 Budget Approval Needed
- **Date**: 2026-04-25 09:15 AM
- **Summary**: Budget requires sign-off before Monday meeting
- **Action**: Review and approve budget spreadsheet
- **Time**: 30 minutes
## 📋 Action Required - This Week
### Email 2
- **From**: team@project.com
- **Subject**: Design Review Feedback
- **Date**: 2026-04-24 02:30 PM
- **Summary**: Design mockups ready for review
- **Action**: Provide feedback on 3 design options
- **Time**: 45 minutes
## 📖 For Review
### Email 3
- **From**: newsletter@industry.com
- **Subject**: Weekly Industry Update
- **Date**: 2026-04-24 08:00 AM
- **Summary**: Market trends and competitor news
- **Action**: Read when available
- **Time**: 15 minutes# Mission Control
Last updated: 2026-04-25 17:00
## 📥 Latest Intake Review
[View Report](../01-data-intake-review/outputs/intake-review.md)
- 3 files processed
- 1 action item pending
## 📝 Today's Log
[View Log](../02-operational-memory/outputs/daily-log-2026-04-25.md)
- 5 tasks completed
- 2 in progress
## 📧 Email Triage
[View Report](../03-offline-communications-triage/outputs/email-triage.md)
- 1 urgent response needed
- 3 actions this weekworkflow-name/
├── incoming/ # Raw inputs
├── prompts/ # Reusable prompt templates
├── outputs/ # Generated artifacts
└── expected/ # Reference outputsdaily-log-YYYY-MM-DD.md
weekly-hype-YYYY-WW.md
intake-review-YYYY-MM-DD.md
email-triage-YYYY-MM-DD.mdchmod +x script.sh.eml