Install
$ agentstack add skill-mujtaba3b-mutwo-skills-karpathy-gist-check ✓ 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 No
- ✓ 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.
About
Karpathy gist check
Karpathy publishes design patterns and mental models for working with LLMs in his public gists. They sometimes change how core working patterns (like the LLM Wiki) should be set up. This check runs on a ~30 day cadence to surface new or updated gists.
When to run
- Auto-trigger: On session start, if
~/.claude/karpathy-last-checkis missing or its date is more than 30 days before today. - Manual trigger: User asks to check Karpathy's gists.
- Defer if the user is mid-task. Wait for a natural break. Better to skip a check than derail active work.
- At most once per session, even if the staleness file still looks stale after the first run.
Procedure
- Use
/browse(from gstack) to fetchhttps://gist.github.com/karpathyand extract the gist list: id, title, last-active date. - Compare against
~/.claude/karpathy-seen.json(the seen baseline). - If anything is new or has been updated since the seen baseline:
- List new/changed gists, one line each (
id title last_active). - Ask the user whether to read any of them now or defer.
- Overwrite
~/.claude/karpathy-last-checkwith today's date (YYYY-MM-DD). - Overwrite
~/.claude/karpathy-seen.jsonwith the fresh snapshot.
First-time setup
If ~/.claude/karpathy-seen.json doesn't exist:
- Fetch the gist list fresh.
- Treat all current gists as the baseline (do NOT surface them as "new"; the protocol is for changes going forward).
- Write the baseline and today's date as above.
Notes
- Use
/browse, not WebFetch, per the gstack rule in~/.claude/CLAUDE.md. - Date format for
karpathy-last-check:YYYY-MM-DDon a single line, no trailing newline issues. karpathy-seen.jsonshape:{ "snapshot_date": "YYYY-MM-DD", "gists": [{"id": "...", "title": "...", "last_active": "..."}] }. Future runs diff againstgists[]and reportlast_activeas the date column.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: mujtaba3B
- Source: mujtaba3B/mutwo-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.