Prompt Slimmer

Audit and slim down OpenClaw workspace files (SOUL.md, AGENTS.md, TOOLS.md, IDENTITY.md, USER.md, HEARTBEAT.md, MEMORY.md) to reduce system prompt token usag...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 131 · 2 current installs · 2 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (reduce workspace token usage) match the SKILL.md instructions: scanning .md files, measuring sizes, deduplicating, archiving to memory/archive/, and producing before/after metrics. No unrelated binaries, env vars, or external services are requested.
Instruction Scope
The SKILL.md instructs the agent to list and move .md files, perform section-level analysis, and edit/move content into memory/archive/. This is within scope for slimming workspace prompts, but the instructions require write access to workspace files and assume a working memory_search/indexing system — verify those exist and run on a copy first to avoid accidental data loss.
Install Mechanism
Instruction-only skill, no install spec, no downloads, no packages. Lowest-risk install surface.
Credentials
No environment variables, credentials, or config paths are requested. The SKILL.md references workspace files and memory_search but does not ask for unrelated secrets or access.
Persistence & Privilege
Skill is not always-enabled and does not request persistent privileges. However, it performs modifications to workspace files (moves content to archive/). Users should be aware it changes persisted files and ensure backups and proper file permissions before use.
Assessment
This skill is coherent with its stated purpose and does not request credentials or installs, but it will modify workspace files. Before running: 1) make a backup copy of your workspace or run the procedure in a clone; 2) confirm that memory_search/archive indexing works and that archived content remains accessible and access-controlled; 3) review which sections are marked for archiving to avoid accidentally removing safety constraints or identity-critical text (SOUL.md); 4) test on a small subset first and verify before/after metrics; and 5) ensure the agent has only the necessary file permissions (read/write) in the workspace and not broader system access.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.1.0
Download zip
latestvk97f0w0r09w1a4emk9ab2hn9bh82pee4

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

Prompt Slimmer

Audit and optimize OpenClaw workspace files to reduce system prompt token overhead without losing information.

Why This Matters

Every workspace file (SOUL.md, MEMORY.md, etc.) is injected into the system prompt on every API call. A 50K-char workspace means ~12K tokens sent with every single message — even a simple "hi". At Opus pricing ($15/1M input tokens), that's $0.18 per message just for workspace overhead.

Quick Start

Run the audit:

1. Measure all workspace files (chars + lines)
2. Analyze each section for frequency-of-use
3. Identify redundancies across files
4. Generate slim-down plan with before/after estimates
5. Execute (with user approval) and verify

The Method: Frequency-Based Layering

Layer 1: Always-On (workspace files)

Content needed in every session: core identity, active relationships, behavioral rules, critical safety constraints.

Layer 2: Searchable (memory/archive/)

Content needed sometimes: completed projects, historical records, detailed technical specs, one-time learnings. Retrieved via memory_search when relevant.

Layer 3: Skill-Embedded

Content needed only for specific tasks: workflow steps, code templates, platform-specific guides. Lives in SKILL.md files, loaded only when the skill triggers.

Audit Procedure

Step 0: Ghost File Scan (Often the Biggest Win!)

OpenClaw injects all .md files in the workspace root into the system prompt — not just the standard files. Scan for "ghost files": old reports, task materials, research notes, or temp files sitting in the workspace root.

cd <workspace_dir>
echo "=== All .md files in workspace root ==="
for f in *.md; do
  [ -f "$f" ] && echo "$f: $(wc -c < "$f") chars"
done
echo "=== Standard files ==="
echo "SOUL.md AGENTS.md TOOLS.md IDENTITY.md USER.md HEARTBEAT.md MEMORY.md BOOTSTRAP.md GARDEN.md"

Any .md file NOT in the standard list is a ghost file candidate. Move completed task files, old research, and temp notes to memory/archive/ or a subdirectory (subdirectories are not injected).

Real example: One instance had 15K in standard files but 31K in two ghost files (an old promotion review + research report) — removing them saved 63% instantly.

Step 1: Measure Standard Files

cd <workspace_dir>
for f in SOUL.md AGENTS.md TOOLS.md IDENTITY.md USER.md HEARTBEAT.md MEMORY.md; do
  [ -f "$f" ] && echo "$f: $(wc -c < "$f") chars, $(wc -l < "$f") lines"
done

Step 2: Section-Level Analysis

For each file, extract ## headings and measure each section's size. Then classify:

CategoryCriteriaAction
🟢 KeepReferenced every session, identity-criticalKeep as-is
🟡 SlimUseful but verbose, can be compressedRewrite concisely
🔴 ArchiveCompleted/paused projects, historical recordsMove to memory/archive/
⚫ DeduplicateSame info in multiple filesKeep in one place, remove others

Step 3: Cross-File Deduplication Check

Common duplication patterns:

  • IDENTITY.md ↔ MEMORY.md (appearance, voice info)
  • SOUL.md ↔ MEMORY.md (behavioral rules)
  • HEARTBEAT.md ↔ AGENTS.md (task scheduling rules)
  • MEMORY.md ↔ Skill files (project details duplicated in both)

Rule: Information lives in the most specific location. If a skill covers it, remove from MEMORY.md.

Step 4: Execute Slim-Down

  1. Create archive file: memory/archive/projects.md (or topic-specific files)
  2. Move archived sections: Cut from workspace file → paste to archive
  3. Replace with pointer: Details: see memory/archive/projects.md or just a 1-line summary
  4. Verify memory_search: Confirm archived content is findable via search
  5. Measure result: Compare before/after char counts

Step 5: Verify Integrity

After slimming, verify:

  • memory_search can find archived content
  • No critical behavioral rules were accidentally removed
  • Core identity (name, relationships, key rules) still present
  • Safety constraints still in workspace files (not just archive)
  • Pointers/references are correct paths

File-Specific Heuristics

MEMORY.md (Usually the biggest win)

Typical bloat sources:

  • Paused/completed project details → archive, keep 1-line status
  • Detailed timelines/changelogs → archive
  • Team roster tables → archive
  • Cron job indexescron list can fetch this live
  • Platform account details → slim to name + ID only
  • Milestone lists → archive (historical)
  • Cross-referenced content → remove if covered by skill or other file

Target: MEMORY.md should be < 5,000 chars for a well-maintained instance.

HEARTBEAT.md

Typical bloat sources:

  • Code templates (osascript, shell snippets) → agent already knows these
  • Verbose priority descriptions → compress to 1-2 lines per priority
  • Paused project references → 1 line max
  • Repeated emphasis ("核心!", "每次 HB 必做!") → once is enough

Target: HEARTBEAT.md should be < 3,000 chars.

SOUL.md

Be careful here. SOUL.md is identity-critical. Don't optimize away personality.

  • Hierarchy diagrams → can be compressed
  • Behavioral rules → review for overlap with AGENTS.md
  • Generally leave SOUL.md alone unless it's > 10,000 chars.

TOOLS.md

Usually already lean. Check for:

  • Deprecated tool entries → remove
  • Detailed port tables for rarely-used services → slim or archive

AGENTS.md

Usually already lean. Check for:

  • Redundancy with system prompt (OpenClaw injects its own rules)
  • Over-detailed workflow descriptions → reference skill instead

Expected Results

Workspace SizeBeforeAfterTypical Savings
Light (<20K)20K15K25%
Medium (20-50K)35K18K50%
Heavy (50K+)60K22K63%

Cost Impact

At Opus pricing ($15/1M input, $1.50/1M cached):

SavingsChars SavedTokens Saved$/message saved$/day (100 msg)
25%5K~2K$0.03$3
50%25K~10K$0.15$15
63%38K~15K$0.23$23

With prompt caching, savings are ~90% less but still meaningful for cache-miss turns.

What NOT to Slim

  • Safety constraints (never archive security rules)
  • Core identity (name, key relationships, personality)
  • Active behavioral rules that prevent known failure modes
  • Credentials management rules (how to handle secrets)
  • Cross-instance coordination rules (if running multiple agents)

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…