scribe
Scans OpenClaw logs, config files, chat history, cursor history, behavior, desires, tastes, and drafts to take comprehensive daily and weekly notes with summaries.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/austindixson/scribeScribe | OpenClaw Skill
Comprehensive note-taking system that scans multiple OpenClaw data sources to generate daily and weekly notes with summaries.
Description
Scribe automatically scans and analyzes:
- OpenClaw logs - Errors, warnings, gateway events, subagent activity
- Config files - Model preferences, gateway settings, agent configurations
- Chat history - Cursor IDE chat messages from SQLite databases
- Cursor history - Workspace-specific conversation history
- Memory files - Daily notes and long-term memory (MEMORY.md)
- Behavior files - BEHAVIOR.md, DESIRES.md, TASTES.md, PREFERENCES.md
- Drafts - Blog posts, tweets, and other draft files
Generates structured markdown notes with summaries at the top of each file.
Installation
clawhub install scribe
Or clone into your skills directory:
git clone https://github.com/Org/scribe.git workspace/skills/scribe
Usage
Daily Notes
Generate a daily note covering the last 24 hours:
python3 workspace/skills/scribe/scripts/scribe.py --mode daily
Weekly Notes
Generate a weekly note covering the last 7 days:
python3 workspace/skills/scribe/scripts/scribe.py --mode weekly
Both Daily and Weekly
Generate both notes at once:
python3 workspace/skills/scribe/scripts/scribe.py --mode both
JSON Output
Get results in JSON format:
python3 workspace/skills/scribe/scripts/scribe.py --mode daily --json
Examples
Example 1: Daily Note Generation
Scenario: You want a daily summary of OpenClaw activity.
Action: Run python3 workspace/skills/scribe/scripts/scribe.py --mode daily.
Outcome: A markdown file workspace/Notes/daily/YYYY-MM-DD.md with a summary at the top, followed by detailed sections for logs, chat history, memory, drafts, behavior, and config.
Example 2: Weekly Summary
Scenario: You want a weekly overview of patterns and trends.
Action: Run python3 workspace/skills/scribe/scripts/scribe.py --mode weekly.
Outcome: A markdown file workspace/Notes/weekly/YYYY-MM-DD.md with weekly statistics, trends, and activity summaries.
Example 3: Cron Job Integration
Scenario: Automate daily note generation.
Action: Add a cron job that runs scribe.py --mode daily every day at midnight.
Outcome: Daily notes are automatically generated and saved to workspace/Notes/daily/.
Commands
python3 workspace/skills/scribe/scripts/scribe.py --mode daily # Generate daily note
python3 workspace/skills/scribe/scripts/scribe.py --mode weekly # Generate weekly note
python3 workspace/skills/scribe/scripts/scribe.py --mode both # Generate both
python3 workspace/skills/scribe/scripts/scribe.py --mode daily --json # JSON output
python3 workspace/skills/scribe/scripts/scribe.py --openclaw-home /path/to/openclaw # Custom home directory
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-austindixson-scribe": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
what-just-happened
When the gateway comes back online, check recent logs and post a short message about what happened (restart, SIGUSR1, auth change, reconnect). User sees the response in TUI or Telegram.
agent-loops
Multi-agent workflow orchestrator. Use when the user asks to build, create, make, ship, develop, or launch any software (apps, webapps, websites, mobile apps, APIs, tools, bots, dashboards, SaaS, MVPs); fix or debug bugs; review or audit code; research topics; refactor code; or publish skills.
composio-composer-xskill
Enables posting tweets to Twitter/X through Composio's integration platform via HTTP and BeautifulSoup. Use when posting tweets or integrating with Composio.
creative-agents
Integration scripts for the creative agent swarm managed by overstory (Claude Code). Use when configuring or running researcher, social media, blog, or scribe agents.
skill-doc-formatter
Formats SKILL.md (OpenClaw/Cursor skill docs) for optimal display on ClawHub. Produces a consistent structure—Description, Installation, Usage with benefit-focused examples, and Commands—so skill pages are clear and scannable.