Install
$ agentstack add skill-aiengkenn-agent-skills-sanity-next-revalidate ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Sanity Next.js Revalidation
Make Publish in Studio update the Next.js site reliably.
Ask first
- Next App Router or Pages?
- Hosting (Vercel / other)?
- Existing webhook? Secret header name?
- Using
fetchtags,unstable_cache, or onlyrevalidateseconds?
Recommended pattern (App Router)
1. Tag fetches
fetch(sanityUrl, { next: { tags: ["sanity"] } });
// or sanityFetch wrapper that tags by document type
2. Route handler
app/api/revalidate/sanity/route.ts (or similar):
- Verify
SANITY_REVALIDATE_SECRET(header or query) - Parse webhook body (
_type,_id, slug) - Call
revalidateTag("sanity")and/or type-specific tags - Optionally
revalidatePathfor known routes - Return 401 on bad secret, 200 on success
3. Sanity webhook
- Dataset: production
- Trigger: create / update / delete (and ideally published documents)
- Filter: optional by
_type - URL:
https://yoursite.com/api/revalidate/sanity?secret=… - Projection: minimal
_id,_type,slug
4. Env
SANITY_REVALIDATE_SECRET— server only- Never expose write token to the browser
Debugging “I published but site unchanged”
- Did they click Publish (not only Save)?
- Webhook deliveries in Sanity manage → success?
- Handler logs 200? Secret mismatch?
- Fetch using tags that the handler revalidates?
- ISR/
revalidate: Nstill serving stale edge cache — wait or purge - Wrong dataset (staging content vs prod site)?
Anti-patterns
- Revalidate every path on every webhook (slow/expensive) without tags
- Secret in client bundle
- Relying only on
revalidate: 60for editorial sites that need instant updates
Deliverable
Webhook config · route handler path · tags used · test Publish checklist.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: AIEngKenn
- Source: AIEngKenn/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.