configs/hermes/default/skills/autonomous-ai-agents/claude-code-internals-inspection/SKILL.md
Inspect installed Claude Code internals and official plugin recreations to locate prompts, output styles, built-in strings, and migration hooks.
npx skillsauth add poorrican/dotfiles claude-code-internals-inspectionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this when the user asks to find Claude Code's internal prompts, output style instructions, official plugin prompt recreations, or similar local Claude Code implementation details. Prefer updating the broader claude-code skill when it is writable; this skill exists for prompt/style inspection details.
command -v claude
claude --version
readlink -f "$(command -v claude)"
~/.claude/plugins/marketplaces/claude-plugins-official/plugins/*output-style/
The prompt is usually in hooks-handlers/session-start.sh, emitted as JSON under:
hookSpecificOutput.additionalContext
Parse the heredoc JSON and report the additionalContext, not the shell wrapper.strings -n 5 /path/to/claude | grep -i -C 20 'Explanatory\|Learning\|outputStyle'
strings: Claude Code native binaries may contain mixed UTF-8 and UTF-16LE string chunks. Read bytes around the match and decode both encodings. Look for style metadata near names such as Explanatory, Learning, Proactive, descriptions, and headings like # Explanatory Style Active or # Learning Style Active.~/.claude/plugins/marketplaces/claude-plugins-official/plugins/explanatory-output-style/hooks-handlers/session-start.sh~/.claude/plugins/marketplaces/claude-plugins-official/plugins/learning-output-style/hooks-handlers/session-start.sh~/.claude/plugins/marketplaces/claude-plugins-official/plugins and then to *output-style*.content-media
Create, read, edit .pptx decks, slides, notes, templates.
content-media
Create, read, edit .pptx decks, slides, notes, templates.
documentation
Extract text from PDFs/scans (pymupdf, marker-pdf).
documentation
Extract text from PDFs/scans (pymupdf, marker-pdf).