Install
openclaw skills install agent-runlogWrap shell commands with the agent-runlog CLI to capture concise, redacted run logs for debugging, CI reproduction, long-running agent commands, repeated failures, test/lint/build evidence, and handoffs where stdout/stderr plus git state should be preserved without flooding chat.
openclaw skills install agent-runlogUse agent-runlog when command output needs to be preserved and summarized for debugging or handoff. It writes a small local ledger under .agent-runs/<timestamp>/.
From the project root:
npx agent-runlog -- npm test
npx agent-runlog -- npm run lint
npx agent-runlog -- npm run build
Then inspect:
cat .agent-runs/*/report.md | tail -n 120
For automation:
npx agent-runlog --json -- npm test > run.json
--no-redact unless the user explicitly needs raw local logs..agent-runs/ local and summarize instead of posting full logs.npx agent-runlog -- <command> [args...]
npx agent-runlog -o .agent-runs/lint -- npm run lint
npx agent-runlog --cwd ./subproject -- npm test
npx agent-runlog --quiet -- npm test