Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

prompt-diet及时饮食

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

3,378

周安装

138

GitHub Stars

公开资料未说明

下载量

1,082
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:prompt-diet(及时饮食)
来源仓库:https://github.com/dgkim311/prompt-diet
安装命令:
openclaw skills install prompt-diet
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install prompt-diet

简介

压缩 OpenClaw 系统提示令牌使用的优化分析工具。

  • 适用于 AGENTS.md、SOUL.md 等工作区文件的精简管理场景。
  • 自动识别冗余内容并提供令牌节省建议方案。
  • 需定期运行以监控系统提示的整体资源消耗情况。
  • 安装方式:通过 clawhub 平台使用 openclaw skills install prompt-diet 命令部署。

SKILL.md

name
prompt-diet
description
Analyze and optimize OpenClaw system prompt token usage by compressing workspace files (AGENTS.md, SOUL.md, USER.md, TOOLS.md, IDENTITY.md, HEARTBEAT.md, MEMORY.md). Performance-first approach: only safe compressions that preserve agent behavior quality. Use when: (1) system prompt feels bloated or costs are high, (2) user wants to audit token usage of workspace files, (3) MEMORY.md has grown large with stale entries, (4) periodic prompt hygiene check. NOT for: modifying OpenClaw core system instructions, safety rules, or tool definitions.

Prompt Diet

Overview

Audit → recommend → apply cycle for workspace file token optimization. Run scripts/token_count.py to measure, identify compression opportunities by safety tier, then apply only approved changes with backup.

Target Files

Files analyzed by this skill (all relative to the workspace root):

FilePurposeTypical Size
AGENTS.mdAgent capability declarationsMedium
SOUL.mdPersona and behavioral directivesSmall–Medium
USER.mdUser profile and preferencesSmall–Medium
TOOLS.mdTool configurationsMedium–Large
IDENTITY.mdAgent identity/roleSmall
HEARTBEAT.mdPeriodic check logicSmall–Medium
MEMORY.mdMemory indexGrows over time
Custom context filesAny user-added workspace .md filesVariable

Safety Classification

🟢 Safe — Auto-recommendable

Changes that cannot affect agent behavior:

  • Trailing whitespace and excess blank lines (more than 1 between sections)
  • Empty sections with no content (e.g., `## Section\

\

Next`)

  • Redundant markdown decoration (e.g., --- separators between every item)
  • Exact duplicate sentences or bullet points within the same file
  • Unfilled template placeholders ([TODO: ...], [OPTIONAL], unused scaffolding)
  • Trailing comments that describe what was deleted

🟡 Review — Needs user approval

Changes that reduce information density:

  • Semantic rewrites for brevity (same meaning, fewer words)
  • Example reduction (3 examples → 1 representative example)
  • Long narrative descriptions → key-point bullet lists
  • Archiving stale MEMORY.md entries to daily log files
  • Merging near-duplicate memory entries

🔴 Skip — Never touch

Changes that could break agent behavior:

  • Behavioral directives (what the agent should/shouldn't do)
  • Safety rules and ethical constraints
  • Persona core traits and tone instructions
  • Critical workflow instructions (e.g., commit protocols, tool usage rules)
  • All entries in memory files that the user explicitly saved
  • Tool authentication configs and secrets references

Workflow: Audit

  1. Identify workspace root (default: /home/aif/.openclaw/workspace/ or current working directory's .openclaw/workspace/).
  2. Run token count script:
   python3 skills/prompt-diet/scripts/token_count.py /home/aif/.openclaw/workspace/ --detail
  1. Review output: per-file token count, % of total, per-section breakdown.
  2. Note files where token count is unexpectedly high or has grown since last audit.
  3. Report summary to user before proceeding.

Workflow: Recommend

For each file with compression opportunities, produce a recommendation table:

File: MEMORY.md  (847 tokens, 34% of total)
┌─────────────────────────────────────────────────┬────────┬──────────┐
│ Opportunity                                      │ Tier   │ Savings  │
├─────────────────────────────────────────────────┼────────┼──────────┤
│ 3 entries reference completed 2026-03 project   │ 🟡     │ ~120 tok │
│ 2 near-duplicate feedback entries               │ 🟡     │ ~60 tok  │
│ 4 blank lines between entries                   │ 🟢     │ ~4 tok   │
└─────────────────────────────────────────────────┴────────┴──────────┘

Ask the user: "Apply 🟢 safe changes automatically? Show me which 🟡 review items to approve?"

Do not apply any changes without explicit user confirmation.

Workflow: Apply

Only after user approval:

  1. Create backup before any edits:

- Option A: rename original to <filename>.pre-diet (e.g., MEMORY.md.pre-diet) - Option B: copy all targets to prompt-diet-backup/ directory with timestamp - Default to Option A for single-file edits, Option B for multi-file runs

  1. Apply changes using Edit tool, one file at a time.
  1. Show diff summary: lines removed, tokens saved per file.
  1. Report before/after:
   Before: 2,481 tokens across 7 files
   After:  1,934 tokens across 7 files
   Saved:  547 tokens (22%)
  1. Offer to clean up backup files after user confirms the result looks good.

MEMORY.md Special Handling

MEMORY.md grows continuously and is the highest-yield target. Check for:

  • Stale project entries: reference projects that are completed or no longer active (check if referenced files still exist).
  • Completed task items: memory entries about in-progress work that has since shipped.
  • Duplicate information: entries in MEMORY.md that are already captured in memory/ daily log files (cross-reference).
  • Outdated environment info: OS versions, tool versions, paths that have changed.
  • Over-indexed topics: 5+ entries on the same topic → consider merging into one authoritative entry.

For each candidate removal, show the full entry text and ask: "Archive to daily log, merge, or keep?"

Never silently remove MEMORY.md entries — always show the user what will be deleted.

Cron / Periodic Usage

This skill does NOT auto-register a cron job. To set up periodic audits yourself:

Weekly audit cron (example):

# Add via: /schedule  OR  CronCreate tool
# Schedule: 0 9 * * 1  (every Monday 9am)
# Command: /prompt-diet audit-only

HEARTBEAT.md addition template (copy-paste into your HEARTBEAT.md):

## Prompt Diet Check (Weekly)
- Run token audit on workspace files
- Flag if any file has grown >20% since last check
- Remind user if MEMORY.md exceeds 200 lines

Manual one-off audit:

python3 /home/aif/.openclaw/workspace/skills/prompt-diet/scripts/token_count.py \
  /home/aif/.openclaw/workspace/ --format json | python3 -m json.tool

Limitations

This skill does not touch:

  • OpenClaw core system prompt (injected by the harness, not a workspace file)
  • Tool definitions and schemas
  • Runtime metadata injected at conversation start (git status, date, etc.)
  • Files outside the workspace directory
  • Binary files, images, or non-text assets

Token counts are estimates (tiktoken cl100k_base encoding approximates Claude tokenization; actual Claude token counts may differ by ±5–10%).

Resources

scripts/

  • token_count.py — Standalone token counter. Works with or without tiktoken installed.

references/

  • compression-rules.md — Detailed per-file compression rules and examples.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.32%
按下载量换算977

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills