ccmd
Installation
SKILL.md
ccmd - Command Output Caching
The ccmd module caches the stdout of commands for a specified duration, preventing unnecessary re-execution of slow or resource-intensive processes.
When to Activate
- When performing repeated network requests (e.g.,
curl). - When running slow diagnostic tools or complex file system searches.
- When a user wants to maintain a "snapshot" of a command's output for a period.
Core Principles & Rules
- Duration Format: Supports time units like
s,m,h,d,w(e.g.,1hfor one hour). Default is1d. - Command Separation: The
--separator is mandatory when providing the command to be executed. - Cache Management: Use
invalidateto force a refresh orclearto remove all cached data.