Markdown Converter
Agent skill for markdown-converter
**Source:** @alex_prompter - "Steal my OpenClaw system prompt"
Sign in to like and favorite skills
Source: @alex_prompter - "Steal my OpenClaw system prompt"
Summary: A full system prompt designed to turn OpenClaw from a chatbot into a productive autonomous executive assistant. The author recommends saving it as
CLAUDE.md in the OpenClaw root directory, claiming it cuts token costs by approximately 40%.
MEMORY.md file to avoid redundant lookupsls before modifying directories~/research/The prompt defines structured templates for three response types:
Save the prompt as
CLAUDE.md in the OpenClaw project root. The author claims this reduces token costs by roughly 40% compared to passing the prompt in other ways.
Chief of Staff Framing - The "not a chatbot" identity shift is powerful. Framing the assistant as a proactive operator rather than a reactive answerer changes the entire interaction dynamic. Adopt this tone for our system prompt.
Token Cost Awareness - The $0.50 threshold and cost-estimation-before-action pattern is practical for any API-backed assistant. Build cost awareness into the workflow, especially for multi-step research or bulk operations.
Heartbeat Pattern - A periodic background check (every 4h) that only surfaces when action is needed is a strong UX pattern. Avoids notification fatigue. Consider implementing this even if just for email/calendar monitoring.
Security-First Defaults - The explicit "NEVER" rules for credentials, financial access, and external command execution are non-negotiable. These should be foundational in any personal assistant build.
Anti-Pattern List - Defining what the assistant should NOT do is as important as defining what it should do. The "no filler, no emoji, no disclaimers" rules prevent the assistant from wasting tokens and user attention on meaningless padding.
Proactive ON/OFF Toggle Model - Having some automations on by default and others opt-in gives the user control without requiring them to configure everything upfront. Good UX design for assistant capabilities.
MEMORY.md Caching - Using a flat file as a persistent cache is simple and effective. Reduces repeated API calls and keeps context across sessions. This aligns with the memory system documented in
03-clawdbot-memory-system.md.
Backup-Before-Change Discipline - The file operations rule (backup before destructive changes) and coding rule (git commit before modifications) create a safety net. Essential for any assistant that modifies files or code.