From indenscale-typedown
Safely clones and isolates external Git repositories as read-only reference material, preventing pollution of the project's own version control.
How this skill is triggered — by the user, by Claude, or both
Slash command
/indenscale-typedown:git-reference-managerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides guidance on how to formally introduce external repositories into a project for reading and learning. This is crucial for understanding third-party library architectures or finding best practices.
This skill provides guidance on how to formally introduce external repositories into a project for reading and learning. This is crucial for understanding third-party library architectures or finding best practices.
Isolation Principle: Reference code must be strictly isolated within the
_reference/directory. It is strictly forbidden to commit it to the main project's Git history.
When you need to reference an external repository (e.g., anthropics/skills or pandas), you must strictly follow these three steps in order:
First, ensure the dedicated directory for storing reference materials exists.
Check: Does the _reference directory exist in the project root?
Action: If not, create it.
mkdir -p _reference
Before pulling any code, you must ensure that Git ignores this directory.
Check: Does the .gitignore file contain _reference/?
Action: If not, append it to the end of the file.
# Check
grep "_reference/" .gitignore
# Append (if missing)
echo -e "\n# External References\n_reference/" >> .gitignore
Clone the target repository into a subdirectory within the sandbox.
Naming: Use the repository name as the subdirectory name.
Action: Use git clone.
git clone <REPO_URL> _reference/<REPO_NAME>
Note: Deep history is not required; it is recommended to use --depth 1 to save time and space.
git clone --depth 1 https://github.com/anthropics/skills.git _reference/anthropics_skills
_reference/ as read-only. Do not modify them unless it is for testing certain changes (but be aware that changes will be lost).grep or ripgrep to search for code patterns within the reference directory.User Request: "I want to see how React's source code handles Hooks."
Agent Execution:
mkdir -p _referencegrep "_reference" .gitignore || echo "_reference/" >> .gitignoregit clone --depth 1 https://github.com/facebook/react.git _reference/react_reference/react/packages/react-reconciler/...Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Guides reception of code review feedback: verify before implementing, avoid performative agreement, push back with technical reasoning when needed.
Runs a structured interview session to sharpen plans or designs, producing ADRs and a glossary as output.
npx claudepluginhub joshuarweaver/cascade-content-creation-misc-1 --plugin indenscale-typedown