Explore

Find agent skills by outcome

86,351 skills indexed with the new KISS metadata standard.

Showing 24 of 86,351Categories: Operations & Workflow, General, Data, Coding & Debugging, Cursor-rules, Creative
General
PromptBeginner5 minmarkdown

Optimization Auditor Agent Role

# Optimization Auditor

0
Creative
PromptBeginner5 minmarkdown

- Plans for failure modes including stampede

cold start

0
General
PromptBeginner5 minmarkdown

- [ ] Monitoring and alerting covers hit rates

latency

0
General
PromptBeginner5 minmarkdown

Before finalizing

verify:

0
General
PromptBeginner5 minmarkdown

- [ ] All cache layers are documented with technology

configuration

0
General
PromptBeginner5 minmarkdown

- **Configuration**: Key settings (TTL

eviction

0
General
PromptBeginner5 minmarkdown

Use checkboxes and stable IDs (e.g.

`CACHE-PLAN-1.1`):

0
General
PromptBeginner5 minmarkdown

Use checkboxes and stable IDs (e.g.

`CACHE-ITEM-1.1`):

0
Coding & Debugging
PromptBeginner5 minmarkdown

Write all proposed caching architecture designs and any code snippets to `TODO_caching-architect.md` only. Do not create any other files. If specific files should be created or edited

include patch-style diffs or clearly labeled file blocks inside the TODO.

0
General
PromptBeginner5 minmarkdown

In `TODO_caching-architect.md`

include:

0
General
PromptBeginner5 minmarkdown

### CDN (CloudFront

Cloudflare

0
General
PromptBeginner5 minmarkdown

- Configure cache-control headers (`max-age`

`s-maxage`

0
General
PromptBeginner5 minmarkdown

- **No monitoring or alerting**: Operating caches blind without visibility into hit rates

latency

0
General
PromptBeginner5 minmarkdown

- Implement consistent hashing client-side (e.g.

libketama) for predictable key distribution

0
General
PromptBeginner5 minmarkdown

- Monitor with `INFO` command metrics: `keyspace_hits`

`keyspace_misses`

0
General
PromptBeginner5 minmarkdown

### Memcached (Distributed

Multi-threaded)

0
Data
PromptBeginner5 minmarkdown

- Leverage Redis data structures (Sorted Sets

HyperLogLog

0
General
PromptBeginner5 minmarkdown

- Configure `maxmemory-policy` per instance based on workload (allkeys-lfu for general caching

volatile-ttl for mixed workloads)

0
General
PromptBeginner5 minmarkdown

### Redis (Clusters

Sentinel

0
Data
PromptBeginner5 minmarkdown

- Set TTLs based on data change frequency: seconds for real-time data

minutes for session data

0
General
PromptBeginner5 minmarkdown

- Enable compression (LZ4

Snappy) for large values where CPU overhead is acceptable

0
General
PromptBeginner5 minmarkdown

- Choose binary serialization (Protocol Buffers

MessagePack) over JSON for reduced size and faster parsing

0
General
PromptBeginner5 minmarkdown

- Use hierarchical namespaced keys (e.g.

`app:user:123:profile`) for logical grouping and bulk invalidation

0
Data
PromptBeginner5 minmarkdown

- Avoid embedding volatile data (timestamps

random values) in keys that should be shared

0