Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Identify a specific Claude Code conversation by its UUID and optionally pin it as a shell function for one-word resume. Use when "claude --continue" picks the wrong session, or when the user wants to reliably resume a specific past conversation across reboots.
claude --continue picks "most recent in cwd" — unreliable when multiple
sessions share a directory. claude --resume <uuid> is exact. This skill
finds the right UUID by grepping jsonl files, then writes a one-word shell
function so the user types e.g. aichain to resume that exact conversation.
.jsonl files in ~/.claude/projects/<encoded-cwd>/ existSessions are stored under ~/.claude/projects/<encoded-cwd>/. The encoding
replaces / with -, so cwd /Users/foo/Desktop/MyProj becomes
-Users-foo-Desktop-MyProj. Often the cwd at session-start was the user's
HOME, even if work happened in a subdirectory.
If unsure which encoded-cwd to scan:
ls -dt ~/.claude/projects/*/ | head -5
The most recently modified directory is likely the right one.
ls -lt ~/.claude/projects/<encoded-cwd>/*.jsonl 2>/dev/null | head -10
npx skills add fleurytian/awesome-claude-skills --skill find-sessionHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Clear and well structured, with only minor parts that might need a second read.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Mostly actionable with clear steps; only a few small gaps remain.