install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/analyze-code-tatsuki-washimi-gwexpy" ~/.claude/skills/majiayu000-claude-skill-registry-analyze-code && rm -rf "$T"
manifest:
skills/data/analyze-code-tatsuki-washimi-gwexpy/SKILL.mdsource content
Analyze Code
This skill helps in understanding code outside of the main project source tree.
Instructions
-
Locate Source:
- If analyzing an installed library: Find where it is installed (usually
)..venv/lib/pythonX.X/site-packages/ - If analyzing non-Python code (e.g. C++, MEDM files): Find the files in the directory tree.
- If analyzing an installed library: Find where it is installed (usually
-
Read and Analyze:
- Use
to read the implementation.view_file - For binary files or unknown formats, try to find a parser or read as text if applicable (e.g. MEDM
files are text)..adl - Map the external logic to how it interacts with or should be implemented in the current project.
- Use
-
Report:
- Explain the data structures, algorithms, or logic flow found.
- Highlight differences with the current implementation.