$npx -y skills add catalystbyzoho/agent-skills --skill catalyst-cacheCatalyst Cache — in-memory key-value store with TTL for ephemeral session and temporary data. Trigger on 'Cache', 'cache segment', 'cache key', 'TTL', 'segment.put', 'segment.get', or 'temporary data Catalyst'.
| 1 | ## How It Works |
| 2 | |
| 3 | 1. **Get Segment ID** — Use MCP (`CatalystbyZoho_List_Cache_Segments`) if available; otherwise retrieve it from the console or `.catalystrc`. |
| 4 | 2. **Load `references/cache-basics.md`** — for SDK operations, TTL limits (48 hr max), and the `segment.delete()` / `segment.update()` gotchas. |
| 5 | 3. **String values only** — All cache values are strings. Always `JSON.stringify` before `put` and `JSON.parse` after `get`. |
| 6 | 4. **TTL behavior** — `segment.update()` resets TTL to the new value, not adds to existing. `segment.delete()` returns `null` (not an error) if the key is missing. |
| 7 | |
| 8 | ## Triggers |
| 9 | |
| 10 | Use this skill for: "Cache", "cache segment", "cache key", "cache value", "TTL", "in-memory store", `segment.get`, `segment.put`, `segment.delete`, "session data", "temporary data Catalyst", "cache vs Data Store", or "48-hour cache". |
| 11 | |
| 12 | ## References |
| 13 | |
| 14 | | Reference | Load when the query is about… | |
| 15 | |-----------|-------------------------------| |
| 16 | | `references/cache-basics.md` | SDK operations (get, put, delete, update), Segment ID, 48hr TTL max, string-only values, segment.delete() null gotcha, segment.update() TTL gotcha | |