2026-09-26 11:41:32 +08:00
|
|
|
# My Obsidian Vault
|
2025-09-13 12:20:50 -04:00
|
|
|
|
2026-09-26 11:41:32 +08:00
|
|
|
Personal knowledge base using the PARA method, version-controlled with Git.
|
2025-09-13 12:20:50 -04:00
|
|
|
|
2026-09-26 11:41:32 +08:00
|
|
|
## Structure
|
2025-09-13 12:20:50 -04:00
|
|
|
|
2026-09-26 11:41:32 +08:00
|
|
|
```
|
|
|
|
|
00_Inbox/ Capture → process weekly
|
|
|
|
|
01_Projects/ Time-bound work
|
|
|
|
|
02_Areas/ Ongoing responsibilities
|
|
|
|
|
03_Resources/ Reference materials
|
|
|
|
|
04_Archive/ Completed items & clippings
|
|
|
|
|
05_Attachments/ Media files
|
|
|
|
|
06_Metadata/ Templates & reference docs
|
|
|
|
|
```
|
2025-09-15 08:49:07 -04:00
|
|
|
|
2026-09-26 11:41:32 +08:00
|
|
|
## Entry Points
|
2025-09-13 12:20:50 -04:00
|
|
|
|
2026-09-26 11:41:32 +08:00
|
|
|
- `AGENTS.md` — operations manual for AI agents (permission table, safety rules, code style)
|
|
|
|
|
- `06_Metadata/Reference/PARA_METHOD.md` — PARA methodology reference
|
|
|
|
|
- `06_Metadata/Reference/GIT_WORKFLOW.md` — git workflow guide
|
2026-02-24 07:55:02 +08:00
|
|
|
|
2026-09-26 11:41:32 +08:00
|
|
|
## Scripts
|
2025-09-15 08:49:07 -04:00
|
|
|
|
2025-09-13 12:20:50 -04:00
|
|
|
```bash
|
2026-09-26 11:41:32 +08:00
|
|
|
pnpm lint # Lint + format (auto-fix)
|
|
|
|
|
pnpm lint:check # Check only
|
|
|
|
|
pnpm format # Prettier format
|
|
|
|
|
pnpm vault:stats # Vault statistics
|
2025-09-13 12:20:50 -04:00
|
|
|
```
|
|
|
|
|
|
2026-09-26 11:41:32 +08:00
|
|
|
## CI
|
2025-09-15 08:49:07 -04:00
|
|
|
|
2026-09-26 11:41:32 +08:00
|
|
|
GitHub Actions runs lint, format check, and secret scanning on every push/PR to main.
|