3.8 KiB
3.8 KiB
created, type, tags
| created | type | tags | |||
|---|---|---|---|---|---|
| 2026-01-06 | reference |
|
Quick Reference Card
1-Page Cheat Sheet - 最常用的命令和工作流
入口说明 + 返回导航
README.md= 项目入口与导航QUICK_REFERENCE.md= 速查06_Metadata/WORKFLOWS.md= 详细工作流
返回导航: [[README]]
🌅 Daily Workflow
Morning (Start Session):
git pull # Sync latest changes
Evening (End Session):
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:
ls 00_Inbox/
Move File:
mv "00_Inbox/filename.md" "01_Projects/ProjectName/"
Weekly Goal: Process entire inbox (< 20 items)
🌐 Web Content
Scrape Single URL:
pnpm firecrawl:scrape <url> <filename>
Scrape Multiple URLs:
pnpm firecrawl:batch <url1> <url2> <url3>
Output: 00_Inbox/Clippings/ (process within 1 week)
📎 Attachments
List Unprocessed:
pnpm attachments:list
Find Orphaned Files:
pnpm attachments:orphans
Organize:
mv "05_Attachments/file.png" "05_Attachments/Organized/ProjectName_Description.png"
🔍 Search & Find
Search Content:
- Obsidian:
Ctrl+Shift+F(orCmd+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:
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?
# 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
- Capture Fast - Don't organize while capturing
- Process Weekly - Inbox → PARA locations
- Link Liberally - More links = better connections
- Commit Daily - Git backup every session
- 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