obsidian-cost-tuning

Featured

Optimize Obsidian resource usage, sync storage, Publish hosting, and third-party plugin API costs. Use when managing vault size, reducing Sync bandwidth, controlling Publish costs, or optimizing external API consumption from community plugins. Trigger with phrases like "obsidian costs", "obsidian sync storage", "optimize obsidian", "reduce obsidian costs", "obsidian publish costs".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Obsidian Cost Tuning ## Overview Optimize costs across Obsidian's paid services and third-party plugin API usage. Covers Obsidian Sync storage management ($4-$10/mo), Publish hosting optimization ($8/mo per site), vault size reduction strategies, plugin API cost control with caching and quotas, and self-hosted alternatives for zero-cost sync. ## Prerequisites - Understanding of your Obsidian subscription tier - Terminal access to the vault directory - Knowledge of which community plugins make external API calls ## Cost Structure | Service | Price | Storage | Cost Driver | |---------|-------|---------|-------------| | Obsidian (core) | Free | N/A | None | | Catalyst (early access) | $25 one-time | N/A | One-time | | Sync (Standard) | $4/mo | 1 GB | Vault size, attachment count | | Sync (Plus) | $8/mo | 10 GB | Large vaults with media | | Publish | $8/mo per site | N/A | Published page count, bandwidth | | Plugin API costs | Varies | N/A | Per-call pricing (AI, translation, etc.) | ## Instructions ### Step 1: Audit Vault Size and Storage Usage ```bash set -euo pipefail VAULT_PATH="${1:-$HOME/MyVault}" echo "=== Vault Storage Audit ===" echo "Total vault size: $(du -sh "$VAULT_PATH" 2>/dev/null | cut -f1)" echo ".obsidian size: $(du -sh "$VAULT_PATH/.obsidian" 2>/dev/null | cut -f1)" echo "" # File counts by type echo "=== Files by Type ===" command find "$VAULT_PATH" -type f -not -path '*/.obsidian/*' -not -path '*/.trash/*' \ | sed 's/.*\.//' | sort | uniq -c | sor...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

obsidian-performance-tuning

Optimize Obsidian plugin performance for smooth operation in large vaults. Use when experiencing lag, memory issues, slow startup, or optimizing plugin code for vaults with thousands of files. Trigger with phrases like "obsidian performance", "obsidian slow", "optimize obsidian plugin", "obsidian memory usage", "obsidian lag".

2,266 Updated today
jeremylongshore
AI & Automation Featured

obsidian-rate-limits

Handle Obsidian file system operations and throttling patterns. Use when processing many files, handling bulk operations, or preventing performance issues from excessive operations. Trigger with phrases like "obsidian rate limit", "obsidian bulk operations", "obsidian file throttling", "obsidian performance limits".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apple-notes-cost-tuning

Apple Notes cost optimization — it is free, focus on iCloud storage management. Trigger: "apple notes cost".

2,266 Updated today
jeremylongshore
AI & Automation Featured

sentry-cost-tuning

Optimize Sentry costs, reduce event volume, and manage quota spend. Use when analyzing Sentry billing, reducing error/transaction volume, configuring sampling rates, or preventing overage charges. Trigger: "reduce sentry costs", "sentry billing optimization", "sentry quota management", "optimize sentry spend", "sentry sampling".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Solid

forge-cost

Audit cloud infrastructure costs and produce a concrete optimization plan with specific changes and estimated savings. Use when asked to "how much is this costing", "reduce cloud spend", "cost optimization", "are we overpaying", "cloud bill", or "budget for this infra".

45 Updated 2 weeks ago
tonone-ai