slm-status
仓库创建 2026年2月5日最近提交 1 天前SkillHot 收录 6 小时前
▸ 精选理由
快速判断 SLM 健康与节省情况,适合运维与调优。
这个 Skill 做什么
检查 SuperLocalMemory 的健康、压缩与缓存统计并输出系统状态。
查看 SuperLocalMemory 的健康状况、压缩与缓存效果:可以调用 slm_optimize_stats() 查看压缩和缓存计数,或用 slm status / slm doctor 得到系统状态和预检信息。常用于确认压缩是否真的节省了 tokens、数据库大小和事实/实体计数等指标。把这些工具合起来用,能判断优化配置是否生效并定位性能问题。
▸ 展开 SKILL.md 英文原文
Health and optimization stats for SuperLocalMemory — call slm_optimize_stats() for live compression and cache counters (compress_runs, tokens_saved_compress, cache_proxy_hits, cache_proxy_misses, cache_kv_hits, cache_kv_misses); run slm status [--json] for system state (mode, profile, DB size, fact/entity/edge counts) and slm doctor [--json] for preflight including the "Optimize (Surface B)" health line; use together to confirm optimization is actually saving tokens.
199
Stars
34
Forks
37
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/qualixar/superlocalmemory/main/codex-plugin/skills/slm-status/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/qualixar/superlocalmemory/main/codex-plugin/skills/slm-status/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# slm-status — Health and Optimize Stats ## Purpose Use this skill to answer: "Is SLM healthy?", "Is compression/caching actually saving tokens?", and "What does the system look like right now?" It covers three surfaces: the MCP stats tool, the `slm status` CLI, and the `slm doctor` preflight. ## Primary MCP Tool: slm_optimize_stats ``` slm_optimize_stats() -> dict ``` No arguments. Returns counters from the current daemon and MCP process session. ### Return dict (all keys always present) | Key | Type | Meaning | |-----|------|---------| | `ok` | bool | `True` on success; `False` on internal error | | `compress_runs` | int | Total compress calls recorded by the daemon (persisted acros
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有