v2.0: Add hooks, agents, skills, rules, and plugin structure
Major modernization to leverage latest Claude Code features: Plugin Foundation: - Add .claude-plugin/plugin.json manifest for distribution - Add .claude/settings.json with permissions and hooks config Hooks (automatic behaviors): - SessionStart: Initialize vault environment variables - PostToolUse: Auto-commit changes after Write/Edit operations Custom Agents (4): - note-organizer: Vault organization and link maintenance - weekly-reviewer: Facilitate weekly review aligned with goals - goal-aligner: Check daily/weekly alignment with long-term goals - inbox-processor: GTD-style inbox processing Skills (3): - obsidian-vault-ops: Read/write vault files, manage wiki-links - goal-tracking: Track progress across goal cascade - daily-workflow: Morning/midday/evening routines Modular Rules (3): - markdown-standards: File naming, tags, frontmatter conventions - productivity-workflow: Goal cascade, daily/weekly planning - project-management: Project structure and status tracking Other: - Add statusline.sh for terminal vault stats display - Add CLAUDE.local.md.template for personal overrides - Update CLAUDE.md with new features documentation - Update all docs with v2.0 features and upgrade guide 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
90
vault-template/.claude/agents/goal-aligner.md
Normal file
90
vault-template/.claude/agents/goal-aligner.md
Normal file
@@ -0,0 +1,90 @@
|
||||
---
|
||||
name: goal-aligner
|
||||
description: Analyze alignment between daily activities and long-term goals. Identify gaps, over/under-investment, and suggest rebalancing. Use for goal audits and priority checks.
|
||||
tools: Read, Grep, Glob
|
||||
model: sonnet
|
||||
---
|
||||
|
||||
# Goal Aligner Agent
|
||||
|
||||
You analyze the alignment between daily activities and stated goals at all levels, helping users ensure their time investment matches their priorities.
|
||||
|
||||
## Analysis Framework
|
||||
|
||||
### 1. Goal Cascade Review
|
||||
Read and understand the goal hierarchy:
|
||||
```
|
||||
3-Year Vision
|
||||
-> Annual Objectives
|
||||
-> Monthly Priorities
|
||||
-> Weekly Focus
|
||||
-> Daily Tasks
|
||||
```
|
||||
|
||||
### 2. Activity Audit
|
||||
Scan recent daily notes (7-30 days) to categorize time spent:
|
||||
- **Goal-aligned deep work** (high value)
|
||||
- **Maintenance tasks** (necessary)
|
||||
- **Reactive work** (unavoidable)
|
||||
- **Misaligned activities** (potential waste)
|
||||
|
||||
### 3. Gap Analysis
|
||||
Identify disconnects:
|
||||
- Goals with zero recent activity
|
||||
- Activities not connected to any goal
|
||||
- Over-investment in low-priority areas
|
||||
- Under-investment in stated priorities
|
||||
|
||||
### 4. Recommendations
|
||||
Provide actionable suggestions:
|
||||
- Specific tasks to add/remove
|
||||
- Time reallocation recommendations
|
||||
- Goal adjustments if consistently ignored
|
||||
- Quick wins to build momentum
|
||||
|
||||
## Output Format
|
||||
|
||||
```markdown
|
||||
## Goal Alignment Report
|
||||
|
||||
### Alignment Score: X/10
|
||||
|
||||
### Well-Aligned Areas
|
||||
| Goal | Evidence | Time Invested |
|
||||
|------|----------|---------------|
|
||||
| [Goal] | [Recent activity] | [Hours/week] |
|
||||
|
||||
### Misalignment Detected
|
||||
| Goal | Last Activity | Gap (days) | Risk |
|
||||
|------|---------------|------------|------|
|
||||
| [Goal] | [Date] | [N] | [High/Med/Low] |
|
||||
|
||||
### Activity Analysis
|
||||
- Goal-aligned work: X%
|
||||
- Maintenance: X%
|
||||
- Reactive: X%
|
||||
- Unaligned: X%
|
||||
|
||||
### Recommendations
|
||||
1. **Start:** [Specific action to add]
|
||||
2. **Stop:** [Activity to reduce/eliminate]
|
||||
3. **Continue:** [What's working well]
|
||||
|
||||
### Questions to Consider
|
||||
- [Probing question about priorities]
|
||||
- [Question about avoided work]
|
||||
```
|
||||
|
||||
## Probing Questions
|
||||
|
||||
When analyzing, surface these insights:
|
||||
- "Your stated #1 priority hasn't appeared in daily tasks this week."
|
||||
- "You're spending 3x more time on [X] than [Y], but [Y] is ranked higher."
|
||||
- "This goal has been 'in progress' for 6 weeks with no measurable advancement."
|
||||
|
||||
## Integration
|
||||
|
||||
Works well with:
|
||||
- Weekly Reviewer agent for regular check-ins
|
||||
- Productivity Coach output style for accountability
|
||||
- `/onboard` command for full context
|
||||
117
vault-template/.claude/agents/inbox-processor.md
Normal file
117
vault-template/.claude/agents/inbox-processor.md
Normal file
@@ -0,0 +1,117 @@
|
||||
---
|
||||
name: inbox-processor
|
||||
description: Process inbox items using GTD principles. Categorize, clarify, and organize captured notes into actionable items. Use for inbox zero and capture processing.
|
||||
tools: Read, Write, Edit, Glob, Bash
|
||||
model: sonnet
|
||||
---
|
||||
|
||||
# Inbox Processor Agent
|
||||
|
||||
You process inbox items using Getting Things Done (GTD) principles adapted for this Obsidian vault.
|
||||
|
||||
## Inbox Sources
|
||||
|
||||
1. `Inbox/` folder (if present)
|
||||
2. Items tagged with `#inbox` in any file
|
||||
3. Quick capture notes without proper categorization
|
||||
4. Uncategorized notes in root directory
|
||||
|
||||
## Processing Algorithm
|
||||
|
||||
For each item, apply the GTD flowchart:
|
||||
|
||||
```
|
||||
1. What is it?
|
||||
- Understand the item fully
|
||||
|
||||
2. Is it actionable?
|
||||
NO -> Reference (move to relevant area)
|
||||
-> Someday/Maybe (tag #someday)
|
||||
-> Trash (delete or archive)
|
||||
YES -> Continue
|
||||
|
||||
3. What's the next action?
|
||||
- If < 2 minutes -> Do it now
|
||||
- If delegatable -> Add #waiting tag
|
||||
- If multi-step -> Create project
|
||||
- Otherwise -> Add to appropriate list
|
||||
```
|
||||
|
||||
## Action Categories
|
||||
|
||||
Apply these tags:
|
||||
- `#next-action` - Single next steps ready to do
|
||||
- `#project` - Multi-step outcomes requiring planning
|
||||
- `#waiting` - Delegated or waiting on external input
|
||||
- `#someday` - Future possibilities, not committed
|
||||
- `#reference` - Information to keep, not actionable
|
||||
|
||||
## Vault Integration
|
||||
|
||||
Route items appropriately:
|
||||
- Tasks -> Today's daily note or appropriate project
|
||||
- Reference material -> Relevant project or Resources area
|
||||
- Multi-step outcomes -> New folder in Projects/
|
||||
- Ideas -> Capture in appropriate area with links
|
||||
|
||||
## Processing Session
|
||||
|
||||
1. Scan all inbox sources
|
||||
2. Present summary: "[N] items to process"
|
||||
3. For each item:
|
||||
- Show the item
|
||||
- Suggest categorization
|
||||
- Ask for confirmation or adjustment
|
||||
4. Execute moves and updates
|
||||
5. Generate processing report
|
||||
|
||||
## Output Format
|
||||
|
||||
### During Processing
|
||||
```markdown
|
||||
## Item: [Title or first line]
|
||||
|
||||
**Content:** [Brief summary]
|
||||
|
||||
**Suggested Action:** [Move to X / Tag as Y / Delete]
|
||||
|
||||
**Reasoning:** [Why this categorization]
|
||||
|
||||
Confirm? (y/n/modify)
|
||||
```
|
||||
|
||||
### After Processing
|
||||
```markdown
|
||||
## Inbox Processing Complete
|
||||
|
||||
- Items processed: N
|
||||
- Actions created: N
|
||||
- Projects created: N
|
||||
- Reference filed: N
|
||||
- Deleted/Archived: N
|
||||
|
||||
### New Actions
|
||||
- [ ] [Action 1] #next-action
|
||||
- [ ] [Action 2] #next-action
|
||||
|
||||
### New Projects
|
||||
- [[Project Name]] - [Brief description]
|
||||
|
||||
### Waiting For
|
||||
- [ ] [Item] #waiting - [Who/What]
|
||||
```
|
||||
|
||||
## Best Practices
|
||||
|
||||
1. Process to empty - don't leave items half-categorized
|
||||
2. Clarify ambiguous items before filing
|
||||
3. Create projects when 2+ actions are needed
|
||||
4. Link to relevant goals when possible
|
||||
5. Add context tags for filtering (#work, #personal, etc.)
|
||||
|
||||
## Integration
|
||||
|
||||
Works well with:
|
||||
- Note Organizer agent for vault maintenance
|
||||
- `/daily` command for routing to today's note
|
||||
- Weekly review for processing backlog
|
||||
73
vault-template/.claude/agents/note-organizer.md
Normal file
73
vault-template/.claude/agents/note-organizer.md
Normal file
@@ -0,0 +1,73 @@
|
||||
---
|
||||
name: note-organizer
|
||||
description: Organize and restructure vault notes. Fix broken links, consolidate duplicates, suggest connections, and maintain vault hygiene. Use when managing vault organization or cleaning up notes.
|
||||
tools: Read, Write, Edit, Glob, Grep, Bash
|
||||
model: sonnet
|
||||
---
|
||||
|
||||
# Note Organizer Agent
|
||||
|
||||
You are a specialized agent for organizing and maintaining an Obsidian vault. Your responsibilities include restructuring notes, fixing links, and maintaining vault hygiene.
|
||||
|
||||
## Core Functions
|
||||
|
||||
### 1. Inbox Processing
|
||||
- Review files in the Inbox folder (if present)
|
||||
- Categorize notes by topic, project, or area
|
||||
- Move notes to appropriate locations
|
||||
- Add appropriate tags and links
|
||||
|
||||
### 2. Link Maintenance
|
||||
- Identify orphan notes (no incoming links)
|
||||
- Suggest connections between related notes
|
||||
- Fix broken wiki-links `[[like this]]`
|
||||
- Create index notes for clusters of related content
|
||||
|
||||
### 3. Tag Standardization
|
||||
- Audit existing tags for consistency
|
||||
- Suggest tag consolidation (e.g., #work vs #professional)
|
||||
- Apply hierarchical tag structures (e.g., #project/client-a)
|
||||
|
||||
### 4. Archive Management
|
||||
- Identify stale notes (no edits in 90+ days)
|
||||
- Move completed projects to Archives
|
||||
- Maintain archive index
|
||||
|
||||
## Workflow
|
||||
|
||||
1. Start by scanning the vault structure with Glob
|
||||
2. Read CLAUDE.md for vault conventions
|
||||
3. Report findings before making changes
|
||||
4. Confirm reorganization plan with user
|
||||
5. Execute changes incrementally
|
||||
6. Update any affected links
|
||||
|
||||
## Output Format
|
||||
|
||||
Always provide a summary of proposed changes before executing:
|
||||
|
||||
```markdown
|
||||
## Proposed Changes
|
||||
|
||||
### Files to Move
|
||||
- [source] -> [destination]
|
||||
|
||||
### Tags to Update
|
||||
- [old tag] -> [new tag] (N files affected)
|
||||
|
||||
### Links to Fix
|
||||
- [[broken link]] in [file]
|
||||
|
||||
### Estimated Impact
|
||||
- Files affected: N
|
||||
- Links updated: N
|
||||
```
|
||||
|
||||
Wait for user confirmation before making changes.
|
||||
|
||||
## Integration
|
||||
|
||||
Works well with:
|
||||
- `/onboard` command for initial context
|
||||
- Productivity Coach output style for guidance
|
||||
- Weekly review workflow for regular maintenance
|
||||
87
vault-template/.claude/agents/weekly-reviewer.md
Normal file
87
vault-template/.claude/agents/weekly-reviewer.md
Normal file
@@ -0,0 +1,87 @@
|
||||
---
|
||||
name: weekly-reviewer
|
||||
description: Facilitate comprehensive weekly review process. Analyze past week's daily notes, calculate goal progress, and help plan next week. Use for Sunday/Monday weekly reviews.
|
||||
tools: Read, Write, Edit, Glob, Grep
|
||||
model: sonnet
|
||||
---
|
||||
|
||||
# Weekly Reviewer Agent
|
||||
|
||||
You facilitate the weekly review process for a personal knowledge management system, helping users reflect on the past week and plan the next one.
|
||||
|
||||
## Review Process
|
||||
|
||||
### Phase 1: Collect (10 minutes)
|
||||
1. Read all daily notes from the past 7 days
|
||||
2. Extract completed tasks, wins, and challenges
|
||||
3. Identify patterns in productivity and mood
|
||||
4. Gather incomplete tasks for carry-forward decision
|
||||
|
||||
### Phase 2: Reflect (10 minutes)
|
||||
1. Read current Goals files (Monthly, Yearly, 3-Year)
|
||||
2. Calculate progress toward each goal
|
||||
3. Identify goal-action alignment gaps
|
||||
4. Note what worked and what did not
|
||||
|
||||
### Phase 3: Plan (10 minutes)
|
||||
1. Identify the ONE Big Thing for next week
|
||||
2. Break down into daily focus areas
|
||||
3. Set specific, measurable targets
|
||||
4. Anticipate obstacles and plan responses
|
||||
|
||||
## Data Sources
|
||||
|
||||
Always read these files:
|
||||
- `Goals/0. Three Year Goals.md` - Long-term vision
|
||||
- `Goals/1. Yearly Goals.md` - Annual objectives
|
||||
- `Goals/2. Monthly Goals.md` - Current month priorities
|
||||
- `Goals/3. Weekly Review.md` - Previous reviews
|
||||
- `Daily Notes/*.md` - Past 7 days of notes
|
||||
|
||||
## Output Format
|
||||
|
||||
Generate a structured weekly review:
|
||||
|
||||
```markdown
|
||||
## Week of [DATE RANGE]
|
||||
|
||||
### Wins
|
||||
- [Quantified accomplishment]
|
||||
|
||||
### Challenges
|
||||
- [What got in the way]
|
||||
|
||||
### Patterns Noticed
|
||||
- [Recurring themes]
|
||||
|
||||
### Goal Progress
|
||||
| Goal | Progress | Notes |
|
||||
|------|----------|-------|
|
||||
| [Goal 1] | [X%] | [Status] |
|
||||
|
||||
### Next Week
|
||||
|
||||
**ONE Big Thing:** [Priority]
|
||||
|
||||
| Day | Focus |
|
||||
|-----|-------|
|
||||
| Mon | [Task] |
|
||||
| ... | ... |
|
||||
|
||||
### Carry Forward
|
||||
- [ ] [Task from this week]
|
||||
```
|
||||
|
||||
## Coaching Integration
|
||||
|
||||
When Productivity Coach output style is active, include probing questions:
|
||||
- "What did you avoid this week that you knew was important?"
|
||||
- "How does next week's plan differ from patterns that didn't work?"
|
||||
- "What's the ONE thing that would make everything else easier?"
|
||||
|
||||
## Integration
|
||||
|
||||
Works well with:
|
||||
- `/weekly` command for structured workflow
|
||||
- Goal Aligner agent for deep analysis
|
||||
- Note Organizer agent for archiving old notes
|
||||
47
vault-template/.claude/hooks/auto-commit.sh
Executable file
47
vault-template/.claude/hooks/auto-commit.sh
Executable file
@@ -0,0 +1,47 @@
|
||||
#!/bin/bash
|
||||
# Auto-commit hook for vault changes
|
||||
# Called after Write/Edit operations on vault files
|
||||
|
||||
VAULT_PATH="${VAULT_PATH:-$(pwd)}"
|
||||
MODIFIED_FILE="${1:-unknown}"
|
||||
|
||||
# Only run if auto-commit is enabled
|
||||
if [ "${GIT_AUTO_COMMIT}" != "true" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cd "$VAULT_PATH" || exit 0
|
||||
|
||||
# Check if this is a git repository
|
||||
if [ ! -d .git ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Check if there are changes to commit
|
||||
if git diff --quiet && git diff --staged --quiet; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Generate commit message based on file location
|
||||
TIMESTAMP=$(date +"%Y-%m-%d %H:%M")
|
||||
|
||||
if [[ "$MODIFIED_FILE" == *"Daily Notes"* ]]; then
|
||||
MSG="Update daily note - $TIMESTAMP"
|
||||
elif [[ "$MODIFIED_FILE" == *"Goals"* ]]; then
|
||||
MSG="Update goals - $TIMESTAMP"
|
||||
elif [[ "$MODIFIED_FILE" == *"Projects"* ]]; then
|
||||
PROJECT=$(echo "$MODIFIED_FILE" | sed 's|.*/Projects/\([^/]*\)/.*|\1|')
|
||||
MSG="Update project: $PROJECT - $TIMESTAMP"
|
||||
elif [[ "$MODIFIED_FILE" == *"Templates"* ]]; then
|
||||
MSG="Update template - $TIMESTAMP"
|
||||
else
|
||||
MSG="Vault update - $TIMESTAMP"
|
||||
fi
|
||||
|
||||
# Stage and commit
|
||||
git add .
|
||||
git commit -m "$MSG" --quiet 2>/dev/null
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Auto-committed: $MSG"
|
||||
fi
|
||||
24
vault-template/.claude/hooks/session-init.sh
Executable file
24
vault-template/.claude/hooks/session-init.sh
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
# Session initialization hook for Obsidian PKM vault
|
||||
# Sets up environment variables for the Claude Code session
|
||||
|
||||
# Set vault path (defaults to current directory)
|
||||
export VAULT_PATH="${VAULT_PATH:-$(pwd)}"
|
||||
|
||||
# Date variables for daily operations
|
||||
export TODAY=$(date +%Y-%m-%d)
|
||||
export YESTERDAY=$(date -v-1d +%Y-%m-%d 2>/dev/null || date -d "yesterday" +%Y-%m-%d)
|
||||
export CURRENT_WEEK=$(date +%Y-W%V)
|
||||
|
||||
# Daily note path
|
||||
export DAILY_NOTE="$VAULT_PATH/Daily Notes/$TODAY.md"
|
||||
|
||||
# Verify vault structure
|
||||
if [ ! -f "$VAULT_PATH/CLAUDE.md" ]; then
|
||||
echo "Note: Not in a vault root directory (no CLAUDE.md found)"
|
||||
fi
|
||||
|
||||
# Output session info
|
||||
echo "PKM Session initialized"
|
||||
echo " Vault: $VAULT_PATH"
|
||||
echo " Today: $TODAY"
|
||||
108
vault-template/.claude/rules/markdown-standards.md
Normal file
108
vault-template/.claude/rules/markdown-standards.md
Normal file
@@ -0,0 +1,108 @@
|
||||
---
|
||||
paths: "**/*.md"
|
||||
---
|
||||
|
||||
# Markdown Standards for Vault
|
||||
|
||||
These conventions apply to all markdown files in the vault.
|
||||
|
||||
## File Naming
|
||||
|
||||
- **Daily notes:** `YYYY-MM-DD.md` (e.g., `2024-01-15.md`)
|
||||
- **Project folders:** PascalCase (e.g., `MyProject/`)
|
||||
- **General notes:** kebab-case (e.g., `meeting-notes.md`)
|
||||
- **Templates:** Title Case with space (e.g., `Daily Template.md`)
|
||||
|
||||
## Heading Structure
|
||||
|
||||
- H1 (`#`) for note title only - one per file
|
||||
- H2 (`##`) for major sections
|
||||
- H3 (`###`) for subsections
|
||||
- Never skip heading levels (no H1 -> H3)
|
||||
|
||||
## Links
|
||||
|
||||
### Internal Links (Wiki-style)
|
||||
```markdown
|
||||
[[Note Name]] # Link to note
|
||||
[[Note Name|Display Text]] # Link with alias
|
||||
[[Note Name#Section]] # Link to heading
|
||||
[[Folder/Note Name]] # Link with path
|
||||
```
|
||||
|
||||
### External Links
|
||||
```markdown
|
||||
[Display Text](https://url.com)
|
||||
```
|
||||
|
||||
## Tags
|
||||
|
||||
### Standard Tag Hierarchy
|
||||
```
|
||||
#priority/high
|
||||
#priority/medium
|
||||
#priority/low
|
||||
|
||||
#status/active
|
||||
#status/waiting
|
||||
#status/completed
|
||||
#status/archived
|
||||
|
||||
#context/work
|
||||
#context/personal
|
||||
#context/health
|
||||
#context/learning
|
||||
#context/family
|
||||
```
|
||||
|
||||
### Tag Placement
|
||||
- In YAML frontmatter: `tags: [tag1, tag2]`
|
||||
- Inline: at end of relevant line or paragraph
|
||||
|
||||
## Task Format
|
||||
|
||||
```markdown
|
||||
- [ ] Incomplete task
|
||||
- [x] Completed task
|
||||
- [ ] Task with context #work @home
|
||||
- [ ] Task with due date 📅 2024-01-20
|
||||
```
|
||||
|
||||
## YAML Frontmatter
|
||||
|
||||
All notes should include frontmatter:
|
||||
```yaml
|
||||
---
|
||||
date: YYYY-MM-DD
|
||||
tags: [relevant, tags]
|
||||
status: active|completed|archived
|
||||
---
|
||||
```
|
||||
|
||||
## Text Formatting
|
||||
|
||||
- **Bold** for emphasis and key terms
|
||||
- *Italic* for subtle emphasis
|
||||
- `Code` for commands, paths, technical terms
|
||||
- > Blockquotes for important callouts
|
||||
|
||||
## Lists
|
||||
|
||||
- Use `-` for unordered lists
|
||||
- Use `1.` for ordered lists
|
||||
- Indent with 2 spaces for nested items
|
||||
|
||||
## Code Blocks
|
||||
|
||||
Use fenced code blocks with language:
|
||||
```javascript
|
||||
const example = "code";
|
||||
```
|
||||
|
||||
## Best Practices
|
||||
|
||||
1. One idea per paragraph
|
||||
2. Use blank lines between sections
|
||||
3. Keep lines under 100 characters when possible
|
||||
4. Include links to related notes
|
||||
5. Add meaningful frontmatter
|
||||
123
vault-template/.claude/rules/productivity-workflow.md
Normal file
123
vault-template/.claude/rules/productivity-workflow.md
Normal file
@@ -0,0 +1,123 @@
|
||||
---
|
||||
paths: "Goals/**/*.md, Daily Notes/**/*.md"
|
||||
---
|
||||
|
||||
# Productivity Workflow Rules
|
||||
|
||||
These conventions apply to goal files and daily notes.
|
||||
|
||||
## Goal Cascade Principle
|
||||
|
||||
Goals flow from long-term vision to daily actions:
|
||||
```
|
||||
3-Year Vision (life direction)
|
||||
→ Yearly Goals (annual objectives)
|
||||
→ Monthly Goals (current focus)
|
||||
→ Weekly Review (this week's plan)
|
||||
→ Daily Tasks (today's actions)
|
||||
```
|
||||
|
||||
## Goal Setting Standards
|
||||
|
||||
### SMART Goals
|
||||
Every goal should be:
|
||||
- **S**pecific - Clear and well-defined
|
||||
- **M**easurable - Has quantifiable outcomes
|
||||
- **A**chievable - Realistic given constraints
|
||||
- **R**elevant - Aligned with higher-level goals
|
||||
- **T**ime-bound - Has a deadline
|
||||
|
||||
### Goal Limits
|
||||
- Maximum 3 active high-priority goals at once
|
||||
- Each goal should have clear success criteria
|
||||
- Goals without action in 14+ days need review
|
||||
|
||||
## Daily Planning Rules
|
||||
|
||||
### Morning (5 minutes)
|
||||
1. Create daily note or open existing
|
||||
2. Identify ONE Big Thing for the day
|
||||
3. Review yesterday's incomplete tasks
|
||||
4. Set realistic time blocks
|
||||
|
||||
### The ONE Thing
|
||||
> "What's the ONE thing I can do today such that by doing it everything else will be easier or unnecessary?"
|
||||
|
||||
Always answer this question in the Focus section.
|
||||
|
||||
### Task Prioritization
|
||||
1. Must Do Today - Non-negotiable, deadline-driven
|
||||
2. Should Do - Important but flexible timing
|
||||
3. Could Do - Nice to have if time permits
|
||||
4. Won't Do - Explicitly dropped (acknowledge trade-offs)
|
||||
|
||||
## Weekly Review Rules
|
||||
|
||||
### When: Sunday or Monday
|
||||
### Duration: 30 minutes minimum
|
||||
|
||||
### Required Elements
|
||||
1. **Collect** - Gather all loose ends
|
||||
2. **Process** - Decide on each item
|
||||
3. **Review** - Check goal progress
|
||||
4. **Plan** - Set next week's priorities
|
||||
|
||||
### Checklist
|
||||
- [ ] All inboxes emptied
|
||||
- [ ] All daily notes from week reviewed
|
||||
- [ ] Goal progress calculated
|
||||
- [ ] Next week's ONE Big Thing identified
|
||||
- [ ] Calendar reviewed for commitments
|
||||
|
||||
## Progress Tracking
|
||||
|
||||
### Checkbox Format
|
||||
```markdown
|
||||
- [ ] Not started
|
||||
- [/] In progress (optional)
|
||||
- [x] Completed
|
||||
```
|
||||
|
||||
### Percentage Updates
|
||||
Update percentages when progress is made:
|
||||
```markdown
|
||||
- [ ] Learn Spanish (25% → 30%)
|
||||
```
|
||||
|
||||
### Milestone Dates
|
||||
Record significant progress:
|
||||
```markdown
|
||||
- [x] Complete course Module 1 ✓ 2024-01-15
|
||||
```
|
||||
|
||||
## Time Management
|
||||
|
||||
### Time Blocks
|
||||
Structure days around energy:
|
||||
- 🌅 Morning: High-focus work (9-12)
|
||||
- ☀️ Afternoon: Meetings, admin (12-5)
|
||||
- 🌙 Evening: Light tasks, learning (5+)
|
||||
|
||||
### Energy Tracking
|
||||
Log energy levels daily (1-10):
|
||||
```markdown
|
||||
**Energy:** 7/10 - Good morning, afternoon slump
|
||||
```
|
||||
|
||||
## Archive Rules
|
||||
|
||||
Move to Archives when:
|
||||
- Project completed
|
||||
- Goal achieved or abandoned
|
||||
- Daily notes older than 30 days (optional)
|
||||
|
||||
Archive format:
|
||||
```
|
||||
Archives/
|
||||
├── Projects/
|
||||
│ └── Completed-Project-2024/
|
||||
├── Goals/
|
||||
│ └── 2023-Goals.md
|
||||
└── Daily Notes/
|
||||
└── 2024-01/
|
||||
```
|
||||
137
vault-template/.claude/rules/project-management.md
Normal file
137
vault-template/.claude/rules/project-management.md
Normal file
@@ -0,0 +1,137 @@
|
||||
---
|
||||
paths: "Projects/**/*.md"
|
||||
---
|
||||
|
||||
# Project Management Rules
|
||||
|
||||
These conventions apply to project folders and documentation.
|
||||
|
||||
## Project Structure
|
||||
|
||||
Each project gets its own folder:
|
||||
```
|
||||
Projects/
|
||||
└── Project-Name/
|
||||
├── CLAUDE.md # Required: Project context for AI
|
||||
├── README.md # Optional: Overview if complex
|
||||
├── notes/ # Optional: Related notes
|
||||
└── resources/ # Optional: Reference materials
|
||||
```
|
||||
|
||||
## Project CLAUDE.md
|
||||
|
||||
Every project must have a CLAUDE.md file with:
|
||||
|
||||
```markdown
|
||||
# Project: [Name]
|
||||
|
||||
## Overview
|
||||
[1-2 sentence description of what this project is]
|
||||
|
||||
## Status
|
||||
- **Phase:** Planning | Active | On Hold | Complete
|
||||
- **Progress:** X%
|
||||
- **Started:** YYYY-MM-DD
|
||||
- **Target:** YYYY-MM-DD
|
||||
|
||||
## Goals
|
||||
What success looks like for this project.
|
||||
|
||||
## Current Focus
|
||||
What I'm actively working on right now.
|
||||
|
||||
## Key Decisions
|
||||
Important decisions made and their rationale.
|
||||
|
||||
## Next Actions
|
||||
- [ ] Immediate next step
|
||||
- [ ] Following step
|
||||
|
||||
## Blockers
|
||||
Anything preventing progress.
|
||||
|
||||
## Resources
|
||||
- [[Related Note]]
|
||||
- [External Link](url)
|
||||
|
||||
## Notes for Claude
|
||||
[Any specific context Claude should know when helping with this project]
|
||||
```
|
||||
|
||||
## Project Status Values
|
||||
|
||||
Use consistent status labels:
|
||||
- `Planning` - Defining scope and approach
|
||||
- `Active` - Currently being worked on
|
||||
- `On Hold` - Temporarily paused (note reason)
|
||||
- `Blocked` - Waiting on external dependency
|
||||
- `Review` - Work complete, needs review
|
||||
- `Complete` - Done and ready for archive
|
||||
|
||||
## Progress Tracking
|
||||
|
||||
### Percentage Guidelines
|
||||
- 0-10%: Planning and setup
|
||||
- 10-30%: Initial implementation
|
||||
- 30-70%: Core work
|
||||
- 70-90%: Refinement and polish
|
||||
- 90-100%: Final review and completion
|
||||
|
||||
### Update Frequency
|
||||
- Update progress weekly at minimum
|
||||
- Update status when it changes
|
||||
- Update blockers immediately
|
||||
|
||||
## Linking Projects
|
||||
|
||||
### To Goals
|
||||
Link projects to their parent goals:
|
||||
```markdown
|
||||
**Supports:** [[1. Yearly Goals#Goal Name]]
|
||||
```
|
||||
|
||||
### To Daily Notes
|
||||
Reference project work in daily notes:
|
||||
```markdown
|
||||
## Work Log
|
||||
- Worked on [[Project Name]] - completed X
|
||||
```
|
||||
|
||||
### Between Projects
|
||||
Link related projects:
|
||||
```markdown
|
||||
**Related:** [[Other Project]]
|
||||
```
|
||||
|
||||
## Project Lifecycle
|
||||
|
||||
### Starting a Project
|
||||
1. Create folder in `Projects/`
|
||||
2. Create CLAUDE.md from template
|
||||
3. Link to relevant goal
|
||||
4. Define first next action
|
||||
5. Set target completion date
|
||||
|
||||
### During Project
|
||||
1. Update CLAUDE.md with progress
|
||||
2. Log work in daily notes
|
||||
3. Capture decisions and rationale
|
||||
4. Track blockers immediately
|
||||
5. Adjust timeline if needed
|
||||
|
||||
### Completing a Project
|
||||
1. Update status to Complete
|
||||
2. Add completion date and summary
|
||||
3. Document lessons learned
|
||||
4. Move folder to Archives/Projects/
|
||||
5. Update goal progress
|
||||
|
||||
## Best Practices
|
||||
|
||||
1. Keep project scope realistic
|
||||
2. One primary focus at a time
|
||||
3. Break large projects into phases
|
||||
4. Review all active projects weekly
|
||||
5. Archive completed projects promptly
|
||||
6. Document decisions as they're made
|
||||
7. Link to relevant context liberally
|
||||
38
vault-template/.claude/scripts/statusline.sh
Executable file
38
vault-template/.claude/scripts/statusline.sh
Executable file
@@ -0,0 +1,38 @@
|
||||
#!/bin/bash
|
||||
# Status line script for Claude Code
|
||||
# Shows vault statistics in the terminal status line
|
||||
|
||||
VAULT_PATH="${VAULT_PATH:-$(pwd)}"
|
||||
|
||||
# Count total notes (excluding hidden directories)
|
||||
TOTAL_NOTES=$(find "$VAULT_PATH" -name "*.md" -type f -not -path "*/\.*" 2>/dev/null | wc -l | tr -d ' ')
|
||||
|
||||
# Count inbox items
|
||||
INBOX_COUNT=0
|
||||
if [ -d "$VAULT_PATH/Inbox" ]; then
|
||||
INBOX_COUNT=$(find "$VAULT_PATH/Inbox" -name "*.md" -type f 2>/dev/null | wc -l | tr -d ' ')
|
||||
fi
|
||||
|
||||
# Add notes tagged with #inbox (if grep available)
|
||||
if command -v grep &> /dev/null; then
|
||||
TAGGED_INBOX=$(grep -rl "#inbox" "$VAULT_PATH" --include="*.md" 2>/dev/null | wc -l | tr -d ' ')
|
||||
INBOX_COUNT=$((INBOX_COUNT + TAGGED_INBOX))
|
||||
fi
|
||||
|
||||
# Count uncommitted changes (if in git repo)
|
||||
UNCOMMITTED="N/A"
|
||||
if [ -d "$VAULT_PATH/.git" ]; then
|
||||
cd "$VAULT_PATH" || exit 1
|
||||
UNCOMMITTED=$(git status --porcelain 2>/dev/null | wc -l | tr -d ' ')
|
||||
fi
|
||||
|
||||
# Check if today's note exists
|
||||
TODAY=$(date +%Y-%m-%d)
|
||||
if [ -f "$VAULT_PATH/Daily Notes/$TODAY.md" ]; then
|
||||
TODAY_STATUS="Yes"
|
||||
else
|
||||
TODAY_STATUS="No"
|
||||
fi
|
||||
|
||||
# Output status line (simple format)
|
||||
echo "Notes: $TOTAL_NOTES | Inbox: $INBOX_COUNT | Uncommitted: $UNCOMMITTED | Today: $TODAY_STATUS"
|
||||
60
vault-template/.claude/settings.json
Normal file
60
vault-template/.claude/settings.json
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"Bash(git:*)",
|
||||
"Bash(ls:*)",
|
||||
"Bash(mkdir:*)",
|
||||
"Bash(date:*)",
|
||||
"Bash(wc:*)",
|
||||
"Bash(find:*)",
|
||||
"Read(*)",
|
||||
"Write(Daily Notes/**)",
|
||||
"Write(Goals/**)",
|
||||
"Write(Projects/**)",
|
||||
"Write(Archives/**)",
|
||||
"Write(Templates/**)",
|
||||
"Write(Inbox/**)",
|
||||
"Edit(Daily Notes/**)",
|
||||
"Edit(Goals/**)",
|
||||
"Edit(Projects/**)",
|
||||
"Edit(Templates/**)"
|
||||
],
|
||||
"deny": [
|
||||
"Edit(.claude/**)",
|
||||
"Write(.git/**)",
|
||||
"Bash(rm -rf:*)"
|
||||
]
|
||||
},
|
||||
"env": {
|
||||
"VAULT_PATH": "${cwd}",
|
||||
"DAILY_NOTES_DIR": "Daily Notes",
|
||||
"GOALS_DIR": "Goals",
|
||||
"PROJECTS_DIR": "Projects",
|
||||
"TEMPLATES_DIR": "Templates",
|
||||
"ARCHIVES_DIR": "Archives",
|
||||
"GIT_AUTO_COMMIT": "true"
|
||||
},
|
||||
"hooks": {
|
||||
"SessionStart": [
|
||||
{
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": ".claude/hooks/session-init.sh"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"PostToolUse": [
|
||||
{
|
||||
"matcher": "Write|Edit",
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": ".claude/hooks/auto-commit.sh \"$TOOL_INPUT_FILE_PATH\""
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
130
vault-template/.claude/skills/daily-workflow/SKILL.md
Normal file
130
vault-template/.claude/skills/daily-workflow/SKILL.md
Normal file
@@ -0,0 +1,130 @@
|
||||
---
|
||||
name: daily-workflow
|
||||
description: Morning routine, midday check-in, and evening shutdown workflows. Structure daily planning, task review, and end-of-day reflection. Use for daily productivity routines.
|
||||
allowed-tools: Read, Write, Edit, Glob, Grep
|
||||
---
|
||||
|
||||
# Daily Workflow Skill
|
||||
|
||||
Structured workflows for morning planning, midday check-ins, and evening shutdowns.
|
||||
|
||||
## Morning Routine (5-10 minutes)
|
||||
|
||||
### Automated Steps
|
||||
1. Create today's daily note (if not exists)
|
||||
2. Pull incomplete tasks from yesterday
|
||||
3. Review weekly goals for today's priority
|
||||
4. Surface any calendar events or deadlines
|
||||
|
||||
### Interactive Prompts
|
||||
- "What's your ONE thing for today?"
|
||||
- "What might get in the way?"
|
||||
- "How do you want to feel at end of day?"
|
||||
|
||||
### Morning Checklist
|
||||
- [ ] Daily note created
|
||||
- [ ] Yesterday's incomplete tasks reviewed
|
||||
- [ ] ONE priority identified
|
||||
- [ ] Time blocks set
|
||||
- [ ] Potential obstacles identified
|
||||
|
||||
## Midday Check-in (2-3 minutes)
|
||||
|
||||
### Quick Review
|
||||
1. Check morning task completion
|
||||
2. Compare actual vs planned time use
|
||||
3. Assess energy level
|
||||
4. Identify afternoon priorities
|
||||
|
||||
### Adjustments
|
||||
- Reschedule incomplete morning tasks
|
||||
- Add urgent items that emerged
|
||||
- Reorder by current energy level
|
||||
- Note any blockers
|
||||
|
||||
### Midday Questions
|
||||
- "How's your energy right now?"
|
||||
- "What's the most important thing for this afternoon?"
|
||||
- "What can you let go of today?"
|
||||
|
||||
## Evening Shutdown (5 minutes)
|
||||
|
||||
### Capture
|
||||
1. Mark completed tasks with [x]
|
||||
2. Add notes and learnings
|
||||
3. Log energy levels (1-10)
|
||||
4. Record gratitude items
|
||||
|
||||
### Reflect
|
||||
- What went well today?
|
||||
- What could be better?
|
||||
- What did I learn?
|
||||
- What am I grateful for?
|
||||
|
||||
### Prepare
|
||||
1. Identify tomorrow's priority (preview)
|
||||
2. Move incomplete tasks to tomorrow or delete
|
||||
3. Commit changes to git (`/push`)
|
||||
|
||||
### Shutdown Checklist
|
||||
- [ ] All tasks updated (done/moved/deleted)
|
||||
- [ ] Reflection completed
|
||||
- [ ] Tomorrow's priority identified
|
||||
- [ ] Changes committed
|
||||
|
||||
## Daily Note Sections
|
||||
|
||||
Standard daily note structure:
|
||||
|
||||
```markdown
|
||||
# {{date}}
|
||||
|
||||
## Focus
|
||||
> What's the ONE thing that would make today successful?
|
||||
|
||||
## Time Blocks
|
||||
- 🌅 Morning (9-12):
|
||||
- ☀️ Afternoon (12-5):
|
||||
- 🌙 Evening (5+):
|
||||
|
||||
## Tasks
|
||||
### Must Do Today
|
||||
- [ ]
|
||||
|
||||
### Work
|
||||
- [ ]
|
||||
|
||||
### Personal
|
||||
- [ ]
|
||||
|
||||
## Notes
|
||||
[Capture thoughts, meeting notes, ideas]
|
||||
|
||||
## Reflection
|
||||
- **Wins:**
|
||||
- **Challenges:**
|
||||
- **Learned:**
|
||||
- **Grateful for:**
|
||||
- **Energy:** /10
|
||||
- **Tomorrow's priority:**
|
||||
```
|
||||
|
||||
## Time Block Strategies
|
||||
|
||||
### Energy-Based
|
||||
- High energy tasks in morning
|
||||
- Administrative work after lunch
|
||||
- Creative work when naturally alert
|
||||
|
||||
### Context-Based
|
||||
- Batch similar tasks together
|
||||
- Minimize context switching
|
||||
- Protect deep work blocks
|
||||
|
||||
## Integration
|
||||
|
||||
Works with:
|
||||
- `/daily` command for note creation
|
||||
- `/push` command for end-of-day commit
|
||||
- Productivity Coach for accountability
|
||||
- Goal Tracking skill for alignment
|
||||
127
vault-template/.claude/skills/goal-tracking/SKILL.md
Normal file
127
vault-template/.claude/skills/goal-tracking/SKILL.md
Normal file
@@ -0,0 +1,127 @@
|
||||
---
|
||||
name: goal-tracking
|
||||
description: Track progress toward 3-year, yearly, monthly, and weekly goals. Calculate completion percentages, surface stalled goals, connect daily tasks to objectives. Use for goal reviews and progress tracking.
|
||||
allowed-tools: Read, Grep, Glob, Edit
|
||||
---
|
||||
|
||||
# Goal Tracking Skill
|
||||
|
||||
Track and manage the cascading goal system from long-term vision to daily tasks.
|
||||
|
||||
## Goal Hierarchy
|
||||
|
||||
```
|
||||
Goals/0. Three Year Goals.md <- Vision (Life areas)
|
||||
↓
|
||||
Goals/1. Yearly Goals.md <- Annual objectives
|
||||
↓
|
||||
Goals/2. Monthly Goals.md <- Current month focus
|
||||
↓
|
||||
Goals/3. Weekly Review.md <- Weekly planning
|
||||
↓
|
||||
Daily Notes/*.md <- Daily tasks and actions
|
||||
```
|
||||
|
||||
## Goal File Formats
|
||||
|
||||
### Three Year Goals
|
||||
```markdown
|
||||
## Life Areas
|
||||
- Career: [Vision statement]
|
||||
- Health: [Vision statement]
|
||||
- Relationships: [Vision statement]
|
||||
- Financial: [Vision statement]
|
||||
- Learning: [Vision statement]
|
||||
- Personal: [Vision statement]
|
||||
```
|
||||
|
||||
### Yearly Goals
|
||||
```markdown
|
||||
## 2024 Goals
|
||||
- [ ] Goal 1 (XX% complete)
|
||||
- [ ] Goal 2 (XX% complete)
|
||||
- [x] Goal 3 (100% complete)
|
||||
```
|
||||
|
||||
### Monthly Goals
|
||||
```markdown
|
||||
## This Month's Focus
|
||||
1. **Primary:** [Main focus]
|
||||
2. **Secondary:** [Supporting goal]
|
||||
3. **Stretch:** [If time permits]
|
||||
|
||||
### Key Results
|
||||
- [ ] Measurable outcome 1
|
||||
- [ ] Measurable outcome 2
|
||||
```
|
||||
|
||||
## Progress Calculation
|
||||
|
||||
### Checklist-Based Goals
|
||||
```
|
||||
Progress = (Completed checkboxes / Total checkboxes) * 100
|
||||
```
|
||||
|
||||
### Metric-Based Goals
|
||||
```
|
||||
Progress = (Current value / Target value) * 100
|
||||
```
|
||||
|
||||
### Time-Based Goals
|
||||
```
|
||||
Progress = (Days elapsed / Total days) * 100
|
||||
```
|
||||
|
||||
## Common Operations
|
||||
|
||||
### View Goal Progress
|
||||
1. Read all goal files
|
||||
2. Parse checkbox completion rates
|
||||
3. Calculate overall and per-goal progress
|
||||
4. Identify stalled or at-risk goals
|
||||
|
||||
### Update Goal Status
|
||||
1. Find goal in appropriate file
|
||||
2. Update checkbox or percentage
|
||||
3. Add date stamp for significant milestones
|
||||
4. Update related weekly review
|
||||
|
||||
### Connect Task to Goal
|
||||
When adding tasks to daily notes:
|
||||
1. Identify which goal the task supports
|
||||
2. Add goal reference: `Supports: [[1. Yearly Goals#Goal Name]]`
|
||||
3. Use appropriate priority tag
|
||||
|
||||
### Surface Stalled Goals
|
||||
1. Check last activity date for each goal
|
||||
2. Flag goals with no progress in 14+ days
|
||||
3. Suggest actions to restart momentum
|
||||
|
||||
## Progress Report Format
|
||||
|
||||
```markdown
|
||||
## Goal Progress Report
|
||||
|
||||
### Overall: XX%
|
||||
|
||||
### By Goal
|
||||
| Goal | Progress | Last Activity | Status |
|
||||
|------|----------|---------------|--------|
|
||||
| Goal 1 | 75% | 2 days ago | On Track |
|
||||
| Goal 2 | 30% | 14 days ago | Stalled |
|
||||
|
||||
### This Week's Contributions
|
||||
- [Task] -> [[Goal 1]]
|
||||
- [Task] -> [[Goal 2]]
|
||||
|
||||
### Recommended Focus
|
||||
1. [Stalled goal needs attention]
|
||||
2. [Nearly complete goal - finish it]
|
||||
```
|
||||
|
||||
## Integration Points
|
||||
|
||||
- Weekly review: Full progress assessment
|
||||
- Daily planning: Surface relevant goals
|
||||
- Monthly review: Adjust goals as needed
|
||||
- Quarterly review: Cascade from 3-year vision
|
||||
95
vault-template/.claude/skills/obsidian-vault-ops/SKILL.md
Normal file
95
vault-template/.claude/skills/obsidian-vault-ops/SKILL.md
Normal file
@@ -0,0 +1,95 @@
|
||||
---
|
||||
name: obsidian-vault-ops
|
||||
description: Read and write Obsidian vault files, manage wiki-links, process markdown with YAML frontmatter. Use when working with vault file operations, creating notes, or managing links.
|
||||
allowed-tools: Read, Write, Edit, Glob, Grep
|
||||
---
|
||||
|
||||
# Obsidian Vault Operations Skill
|
||||
|
||||
Core operations for reading, writing, and managing files in an Obsidian vault.
|
||||
|
||||
## Vault Structure
|
||||
|
||||
```
|
||||
vault-root/
|
||||
├── CLAUDE.md # Main context (always read first)
|
||||
├── Daily Notes/ # YYYY-MM-DD.md format
|
||||
├── Goals/ # Goal cascade files
|
||||
├── Projects/ # Project folders with CLAUDE.md
|
||||
├── Templates/ # Reusable note structures
|
||||
└── Archives/ # Completed/inactive content
|
||||
```
|
||||
|
||||
## File Operations
|
||||
|
||||
### Reading Notes
|
||||
- Use Glob to find files: `*.md`, `Daily Notes/*.md`
|
||||
- Read CLAUDE.md first for vault context
|
||||
- Check for wiki-links to related notes
|
||||
|
||||
### Creating Notes
|
||||
1. Check if note already exists
|
||||
2. Use appropriate template if available
|
||||
3. Add YAML frontmatter with date and tags
|
||||
4. Insert wiki-links to related notes
|
||||
|
||||
### Editing Notes
|
||||
- Preserve YAML frontmatter structure
|
||||
- Maintain existing wiki-links
|
||||
- Use consistent heading hierarchy
|
||||
- Apply standard tag format
|
||||
|
||||
## Wiki-Link Format
|
||||
|
||||
```markdown
|
||||
[[Note Name]] # Simple link
|
||||
[[Note Name|Display Text]] # Link with alias
|
||||
[[Note Name#Section]] # Link to section
|
||||
```
|
||||
|
||||
## YAML Frontmatter
|
||||
|
||||
Standard frontmatter structure:
|
||||
```yaml
|
||||
---
|
||||
date: 2024-01-15
|
||||
tags: [tag1, tag2]
|
||||
status: active
|
||||
---
|
||||
```
|
||||
|
||||
## Template Variables
|
||||
|
||||
When processing templates, replace:
|
||||
- `{{date}}` - Today's date (YYYY-MM-DD)
|
||||
- `{{date:format}}` - Formatted date
|
||||
- `{{date-1}}` - Yesterday
|
||||
- `{{date+1}}` - Tomorrow
|
||||
- `{{time}}` - Current time
|
||||
|
||||
## Common Patterns
|
||||
|
||||
### Daily Note Creation
|
||||
1. Calculate today's date in YYYY-MM-DD format
|
||||
2. Check if `Daily Notes/{date}.md` exists
|
||||
3. If not, read `Templates/Daily Template.md`
|
||||
4. Replace template variables
|
||||
5. Write to `Daily Notes/{date}.md`
|
||||
|
||||
### Finding Related Notes
|
||||
1. Extract key terms from current note
|
||||
2. Search vault for matching content
|
||||
3. Suggest wiki-links to related notes
|
||||
|
||||
### Tag Operations
|
||||
- Priority: `#priority/high`, `#priority/medium`, `#priority/low`
|
||||
- Status: `#active`, `#waiting`, `#completed`, `#archived`
|
||||
- Context: `#work`, `#personal`, `#health`, `#learning`
|
||||
|
||||
## Best Practices
|
||||
|
||||
1. Always check CLAUDE.md for vault-specific conventions
|
||||
2. Preserve existing structure when editing
|
||||
3. Use relative paths for internal links
|
||||
4. Add frontmatter to new notes
|
||||
5. Link to relevant goals when creating tasks
|
||||
Reference in New Issue
Block a user