Initial commit with translated description

This commit is contained in:
2026-03-29 09:49:16 +08:00
commit 841a957a54
5 changed files with 295 additions and 0 deletions

52
memory-template.md Normal file
View File

@@ -0,0 +1,52 @@
# Memory Templates
## ~/coding/memory.md
```markdown
# Coding Memory
## Stack
- [framework]: [preference]
- [database]: [preference]
## Style
- naming: [convention]
- formatting: [rule]
- comments: [approach]
## Structure
- tests: [location]
- folders: [organization]
- configs: [location]
## Never
- [rejected pattern]
- [rejected tool]
```
## ~/coding/history.md
```markdown
# Archived Preferences
## Archived [YYYY-MM-DD]
- [old preference, reason for archival]
```
## Entry Format
Ultra-compact, 5 words max per entry:
| Category | Example Entries |
|----------|-----------------|
| Stack | `mobile: Flutter`, `db: Pocketbase for MVPs` |
| Style | `no Prettier`, `TypeScript strict mode` |
| Structure | `feature-based folders`, `tests colocated` |
| Never | `no Redux`, `avoid ORMs` |
## Context Qualifiers
When preference is context-dependent, prefix:
- `MVPs: skip tests`
- `Python: black formatter`
- `production: full types`