# Cache

> Project Cache

- Skill: `zedarvates/cache` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add zedarvates/cache`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zedarvates/cache/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: zedarvates (https://skillmd.com/u/zedarvates)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zedarvates/cache

---

# Project Cache
Avoids re-scanning between agents. First agent scans, subsequent agents read cache.

**Trigger:** When multiple agents work on the same project sequentially.

**Usage:**
```python
from skills.cache import ProjectCache
cache = ProjectCache(project_root)
scan = cache.get_or_scan(lambda: scanner.scan())
cache.set_audit_report(report)
```

**Module:** `skills/cache`
**Storage:** `.botte-cache/` directory
**TTL:** 24 hours
**Savings:** -50% re-scan tokens

