Skip to content

Commit ce96885

Browse files
merge: integrate main into begin-backlog-task-271
Resolve conflicts from diverged branches: - api/index.js: include both audio/lyrics (main) and stats (PR) exports - db/schema.rs: keep play_history migration (PR) and deduplicated_tracks/file_ctime_ns migrations (main) - lib.rs: register both stats commands (PR) and network cache commands (main) - Cargo.lock: include both image (PR) and libc (main) dependencies - Update test_create_all_tables count: 13 tables (play_history in create_tables, deduplicated_tracks via migration only) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2 parents a74c222 + 36e6414 commit ce96885

116 files changed

Lines changed: 89886 additions & 560 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
name: repomix-reference-mt
3+
description: Reference codebase for Mt. Use this skill when you need to understand the structure, implementation patterns, or code details of the Mt project.
4+
---
5+
6+
# Mt Codebase Reference
7+
8+
523 files | 80557 lines | 741637 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

Comments
 (0)