Learn-skills.dev repomix-reference-black-tortoise
Reference codebase for Black Tortoise. Use this skill when you need to understand the structure, implementation patterns, or code details of the Black Tortoise project.
install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/7spade/black-tortoise/repomix-reference-black-tortoise" ~/.claude/skills/neversight-learn-skills-dev-repomix-reference-black-tortoise && rm -rf "$T"
manifest:
data/skills-md/7spade/black-tortoise/repomix-reference-black-tortoise/SKILL.mdsource content
Black Tortoise Codebase Reference
1214 files | 131530 lines | 1694337 tokens
Overview
Use this skill when you need to:
- Understand project structure and file organization
- Find where specific functionality is implemented
- Read source code for any file
- Search for code patterns or keywords
Files
| File | Contents |
|---|---|
| Start here - Purpose, format explanation, and statistics |
| Directory tree with line counts per file |
| All file contents (search with ) |
| Languages, frameworks, and dependencies |
How to Use
1. Find file locations
Check
project-structure.md for the directory tree:
src/ index.ts (42 lines) utils/ helpers.ts (128 lines)
2. Read file contents
Grep in
files.md for the file path:
## File: src/utils/helpers.ts
3. Search for code
Grep in
files.md for keywords:
function calculateTotal
Common Use Cases
Understand a feature:
- Search
for related file namesproject-structure.md - Read the main implementation file in
files.md - Search for imports/references to trace dependencies
Debug an error:
- Grep the error message or class name in
files.md - Check line counts in
to find large filesproject-structure.md
Find all usages:
- Grep function or variable name in
files.md
Tips
- Use line counts in
to estimate file complexityproject-structure.md - Search
pattern to jump between files## File: - Check
for excluded files, format details, and file statisticssummary.md - Check
for languages, frameworks, and dependenciestech-stack.md
This skill was generated by Repomix