What problem does it solve?
This Skill prevents fragmented, inconsistent agent logging by giving every skill and agent a single, structured place to record run outcomes, details, and timestamps.
Core Features & Use Cases
- Structured append-only logging: Writes each run as a timestamped table row with run ID, skill name, status, and detail.
- Automatic rotation: Keeps the log bounded by trimming the oldest entries after the file exceeds 200 data rows.
- Shared utility for other skills: Centralizes log formatting and file management so other skills do not write directly to the log.
- Use case: A workspace maintenance skill can record a successful sync, while a failed setup can log its error reason without duplicating logging logic.
Quick Start
Use the log skill to append a structured entry for the current run with the appropriate status and a concise detail message.