From indenscale-typedown
Safely introduce external Git repositories as reference materials. Responsible for managing the `_reference` directory, ensuring external code is read-only and does not pollute the project's version control.
npx claudepluginhub joshuarweaver/cascade-content-creation-misc-1 --plugin indenscale-typedownThis skill uses the workspace's default tool permissions.
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.
Creates new Angular apps using Angular CLI with flags for routing, SSR, SCSS, prefixes, and AI config. Follows best practices for modern TypeScript/Angular development. Use when starting Angular projects.
Generates Angular code and provides architectural guidance for projects, components, services, reactivity with signals, forms, dependency injection, routing, SSR, ARIA accessibility, animations, Tailwind styling, testing, and CLI tooling.
Conducts multi-round deep research on GitHub repos via API and web searches, generating markdown reports with executive summaries, timelines, metrics, and Mermaid diagrams.
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/...