$npx -y skills add mocasus/paleo --skill paleo-summaryUse when user says "summarize output", "condense this", "tldr", or a tool result / log / file dump / long stdout is large. Reduce long content (tool output, logs, diffs, docs) to a concise intisari with key fields preserved. Saves context tokens on bulky payloads. Off: "full outp
| 1 | # paleo-summary |
| 2 | Condense bulky content. Tool results, logs, diffs, dumps → tight intisari. |
| 3 | |
| 4 | ## Rules |
| 5 | - Lead with the answer/result, then supporting detail. |
| 6 | - Preserve: status codes, error messages, IDs, paths, numbers, key fields. |
| 7 | - Drop: stack traces beyond the root-cause line, repeated rows, boilerplate banners. |
| 8 | - Logs: keep first error + last N lines + counts (e.g. "12 WARN, 3 ERROR"). |
| 9 | - Diffs: summarize file set + net change; show only consequential hunks. |
| 10 | - Tables/lists: keep header + outliers, summarize the rest. |
| 11 | |
| 12 | ## Levels |
| 13 | - `lite`: trim noise, keep structure. |
| 14 | - `full` (default): intisari + preserved key fields. |
| 15 | - `ultra`: one-line result + the single most important detail. |
| 16 | |
| 17 | ## Switch |
| 18 | - `paleo-summary` / `tldr` / `condense this` on. `full output` off. |
| 19 | |
| 20 | ## Gotchas |
| 21 | - Never drop the actual error string — that's the diagnosis. |
| 22 | - If the content is the deliverable (a generated file), don't summarize it; deliver as-is. |
| 23 | - Security/credential output: summarize counts, never echo secrets. |