|
| 1 | +--- |
| 2 | +name: repomix-reference-meetup-bot |
| 3 | +description: Reference codebase for Meetup Bot. Use this skill when you need to understand the structure, implementation patterns, or code details of the Meetup Bot project. |
| 4 | +--- |
| 5 | + |
| 6 | +# Meetup Bot Codebase Reference |
| 7 | + |
| 8 | +60 files | 6581 lines | 56077 tokens |
| 9 | + |
| 10 | +## Overview |
| 11 | + |
| 12 | +Use this skill when you need to: |
| 13 | +- Understand project structure and file organization |
| 14 | +- Find where specific functionality is implemented |
| 15 | +- Read source code for any file |
| 16 | +- Search for code patterns or keywords |
| 17 | + |
| 18 | +## Files |
| 19 | + |
| 20 | +| File | Contents | |
| 21 | +|------|----------| |
| 22 | +| `references/summary.md` | **Start here** - Purpose, format explanation, and statistics | |
| 23 | +| `references/project-structure.md` | Directory tree with line counts per file | |
| 24 | +| `references/files.md` | All file contents (search with `## File: <path>`) | |
| 25 | +| `references/tech-stack.md` | Languages, frameworks, and dependencies | |
| 26 | + |
| 27 | +## How to Use |
| 28 | + |
| 29 | +### 1. Find file locations |
| 30 | + |
| 31 | +Check `project-structure.md` for the directory tree: |
| 32 | + |
| 33 | +``` |
| 34 | +src/ |
| 35 | + index.ts (42 lines) |
| 36 | + utils/ |
| 37 | + helpers.ts (128 lines) |
| 38 | +``` |
| 39 | + |
| 40 | +### 2. Read file contents |
| 41 | + |
| 42 | +Grep in `files.md` for the file path: |
| 43 | + |
| 44 | +``` |
| 45 | +## File: src/utils/helpers.ts |
| 46 | +``` |
| 47 | + |
| 48 | +### 3. Search for code |
| 49 | + |
| 50 | +Grep in `files.md` for keywords: |
| 51 | + |
| 52 | +``` |
| 53 | +function calculateTotal |
| 54 | +``` |
| 55 | + |
| 56 | +## Common Use Cases |
| 57 | + |
| 58 | +**Understand a feature:** |
| 59 | +1. Search `project-structure.md` for related file names |
| 60 | +2. Read the main implementation file in `files.md` |
| 61 | +3. Search for imports/references to trace dependencies |
| 62 | + |
| 63 | +**Debug an error:** |
| 64 | +1. Grep the error message or class name in `files.md` |
| 65 | +2. Check line counts in `project-structure.md` to find large files |
| 66 | + |
| 67 | +**Find all usages:** |
| 68 | +1. Grep function or variable name in `files.md` |
| 69 | + |
| 70 | +## Tips |
| 71 | + |
| 72 | +- Use line counts in `project-structure.md` to estimate file complexity |
| 73 | +- Search `## File:` pattern to jump between files |
| 74 | +- Check `summary.md` for excluded files, format details, and file statistics |
| 75 | +- Check `tech-stack.md` for languages, frameworks, and dependencies |
| 76 | + |
| 77 | +--- |
| 78 | + |
| 79 | +This skill was generated by [Repomix](https://github.com/yamadashy/repomix) |
0 commit comments