Initial commit - Claudesidian v0.2.0
Claude Code + Obsidian starter kit for AI-powered knowledge management. Features: - PARA method folder structure - Bootstrap initialization system - Pre-configured Claude Code commands and agents - Gemini Vision MCP server with video support - Helper scripts for vault management - Automated release management See README.md for setup instructions.
This commit is contained in:
Executable
+28
@@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Vault Statistics Script
|
||||
# Shows basic stats about your Obsidian vault
|
||||
|
||||
echo "=== Vault Statistics ==="
|
||||
echo ""
|
||||
|
||||
echo "📝 Note Counts:"
|
||||
echo " Inbox: $(find 00_Inbox -name "*.md" 2>/dev/null | wc -l)"
|
||||
echo " Projects: $(find 01_Projects -name "*.md" 2>/dev/null | wc -l)"
|
||||
echo " Areas: $(find 02_Areas -name "*.md" 2>/dev/null | wc -l)"
|
||||
echo " Resources: $(find 03_Resources -name "*.md" 2>/dev/null | wc -l)"
|
||||
echo " Archive: $(find 04_Archive -name "*.md" 2>/dev/null | wc -l)"
|
||||
echo ""
|
||||
|
||||
echo "📎 Attachments:"
|
||||
echo " Total: $(find 05_Attachments -type f 2>/dev/null | wc -l)"
|
||||
echo " Organized: $(find 05_Attachments/Organized -type f 2>/dev/null | wc -l)"
|
||||
echo ""
|
||||
|
||||
echo "📊 Total Notes: $(find . -name "*.md" | wc -l)"
|
||||
echo ""
|
||||
|
||||
echo "🔄 Recent Activity (last 7 days):"
|
||||
find . -name "*.md" -mtime -7 -type f 2>/dev/null | head -5 | while read file; do
|
||||
echo " - $(basename "$file")"
|
||||
done
|
||||
Reference in New Issue
Block a user