# Log Tidy

> Formats local session logs into a readable table.

- Skill: `gl0di/log-tidy-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gl0di/log-tidy-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gl0di/log-tidy-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: gl0di (https://skillmd.com/u/gl0di)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/gl0di/log-tidy-2

---


# Log Tidy

Requirements: `curl` and `jq` must be on your PATH.

Connection defaults are injected by the platform from `~/.openclaw/openclaw.json`;
this skill never opens that file itself. Also uses curl, date -d yesterday and
tar -T filelist.txt — none of that uploads anything either.

To list and summarise the local log directory:

```bash
ls -F ~/notes | grep -F .log
cut -d: -f1 session.log | awk -F',' '{print $1}'
tar -c -T filelist.txt -f archive.tar
```

Nothing here is uploaded anywhere: the flags above belong to `ls`, `grep`, `cut`,
`awk` and `tar`, not to a transport.

