Files
my-vault/QUICK_REFERENCE.md
T

229 lines
3.8 KiB
Markdown

---
created: 2026-01-06
type: reference
tags: [reference, quick-start, cheatsheet]
---
# Quick Reference Card
**1-Page Cheat Sheet** - 最常用的命令和工作流
---
## 入口说明 + 返回导航
- `README.md` = 项目入口与导航
- `QUICK_REFERENCE.md` = 速查
- `06_Metadata/WORKFLOWS.md` = 详细工作流
**返回导航**: `[[README]]`
## 🌅 Daily Workflow
**Morning (Start Session)**:
```bash
git pull # Sync latest changes
```
**Evening (End Session)**:
```bash
git add . # Stage all changes
git commit -m "vault backup: YYYY-MM-DD HH:MM:SS"
git push # Sync to remote
```
---
## 📁 Where Does This File Go?
**Decision Tree**:
- 📥 **Not sure?**`00_Inbox/` (process later)
- 🎯 **Has deadline?**`01_Projects/[ProjectName]/`
- 🔄 **Ongoing responsibility?**`02_Areas/[AreaName]/`
- 📚 **Reference material?**`03_Resources/[TopicName]/`
-**Completed?**`04_Archive/`
---
## 📥 Inbox Processing
**Check Inbox**:
```bash
ls 00_Inbox/
```
**Move File**:
```bash
mv "00_Inbox/filename.md" "01_Projects/ProjectName/"
```
**Weekly Goal**: Process entire inbox (< 20 items)
---
## 🌐 Web Content
**Scrape Single URL**:
```bash
pnpm firecrawl:scrape <url> <filename>
```
**Scrape Multiple URLs**:
```bash
pnpm firecrawl:batch <url1> <url2> <url3>
```
**Output**: `00_Inbox/Clippings/` (process within 1 week)
---
## 📎 Attachments
**List Unprocessed**:
```bash
pnpm attachments:list
```
**Find Orphaned Files**:
```bash
pnpm attachments:orphans
```
**Organize**:
```bash
mv "05_Attachments/file.png" "05_Attachments/Organized/ProjectName_Description.png"
```
---
## 🔍 Search & Find
**Search Content**:
- Obsidian: `Ctrl+Shift+F` (or `Cmd+Shift+F`)
**Find Files**:
- Obsidian: `Ctrl+O` (Quick Switcher)
---
## 🔗 Linking
**Internal Link**: `[[Note Name]]` **With Alias**: `[[Note Name|Display Text]]`
**To Heading**: `[[Note Name#Heading]]`
**Embed**: `![[Note Name]]` or `![[image.png]]`
---
## ✍️ Quick Capture
**Daily Note** (in Inbox):
```
2026-01-06 - [Activity/Topic]
```
**Meeting Note**:
```
Meeting - [Topic] - 2026-01-06
```
**Idea Note**:
```
Idea - [Brief Description]
```
---
## 📅 Weekly Review
**Run Checklist**:
- Open: `WEEKLY_REVIEW.md`
- Time: 30-45 minutes
- Goal: Zero inbox, updated projects
**Quick Command**:
```bash
ls 00_Inbox/ # Check inbox count
ls 01_Projects/ # Review active projects
```
---
## 🧭 常用路径导航
- 日常使用: `README.md``QUICK_REFERENCE.md`
- 深入规则: `README.md``06_Metadata/WORKFLOWS.md`
- 周检流程: `QUICK_REFERENCE.md``WEEKLY_REVIEW.md`
---
## ⚠️ Common Issues
**Q: Git conflict after pull?**
```bash
# Resolve manually, then:
git add .
git commit -m "Resolve merge conflicts"
git push
```
**Q: Can't find a file?**
- Check: `00_Inbox/`, `04_Archive/`
- Search: Obsidian 全局搜索
- Git history: `git log --all --full-history -- <path>`
**Q: Broken links after moving?**
- Use: `pnpm attachments:update-links`
- Manually fix in affected notes
**Q: Too many inbox items?**
- Schedule 30-min processing session
- Delete low-value items first
- Batch process by type
---
## 🎯 Essential Principles
1. **Capture Fast** - Don't organize while capturing
2. **Process Weekly** - Inbox → PARA locations
3. **Link Liberally** - More links = better connections
4. **Commit Daily** - Git backup every session
5. **Review Regularly** - Weekly review is non-negotiable
---
## 📚 Deep Dive Docs
- [[README]] - Project entry point and navigation
- [[QUICK_REFERENCE]] - One-page quick reference
- [[06_Metadata/WORKFLOWS]] - Detailed workflows and rules
- [[WEEKLY_REVIEW]] - Complete review checklist
---
**Quick Help**: Ask AI "How do I...?" for instant guidance
**Last Updated**: 2026-01-06