name: claude-session-load description: > Load a specific Claude Code session into the current conversation by session id, given as a rough/possibly-mistyped uuid (e.g. "01935a40-5a79-4142-966a-47a1da99c3bb"). Reads the matching .jsonl under ~/.claude/projects/**/ (and Claude desktop's local-agent-mode-sessions), produces a concise summary of what was asked, done, and changed, and keeps the raw file path on hand to look up exact detail later in the conversation. Use when the user invokes /claude-session-load , says "load claude session ", "what happened in claude session ", "summarize this claude session", or pastes a Claude session id and asks what it contains.
name: codex-session-load description: > Load a specific Codex CLI session into the current conversation by session id, given as a rough/possibly-mistyped uuid (e.g. "019edfd4-fbf0-7100-a982-2ab5bdf125fb"). Reads the matching rollout-*.jsonl under ~/.codex/sessions (and ~/.codex/archived_sessions), produces a concise summary of what was asked, done, and changed, and keeps the raw file path on hand to look up exact detail later in the conversation. Use when the user invokes /codex-session-load , says "load codex session ", "what happened in codex session ", "summarize this codex session", or pastes a Codex session id and asks what it contains.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| mcp_audit.py — quick risk scan of the MCP servers configured for your AI agents. | |
| Third-party MCP servers are unvetted code-execution surface: they run on your | |
| machine, with your environment, the moment your agent starts. This script | |
| discovers MCP server definitions across common agent config locations and flags | |
| risky patterns: | |
| * HIGH pipe-to-shell / remote-fetch install commands |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Claude Code PreToolUse hook — block obviously destructive shell commands. | |
| A minimal, dependency-free guardrail you can drop into any Claude Code project. | |
| It inspects every Bash command BEFORE it runs and blocks a small set of | |
| high-blast-radius patterns (recursive root deletes, disk overwrites, fork bombs, | |
| pipe-to-shell installs, force-push to main, etc.). | |
| This is deliberately tiny — a starting point, not a security product. It does |