๐Ÿ“… let's chat! explore the endless possibilities creating industries that don't exist. click here

obsidian-incident-runbook

Troubleshoot Obsidian plugin failures with systematic incident response. Use when plugins crash, data is corrupted, or users report critical issues with your Obsidian plugin. Trigger with phrases like "obsidian crash", "obsidian plugin broken", "obsidian incident", "debug obsidian failure", "obsidian emergency". allowed-tools: Read, Grep, Bash(node:*) version: 1.0.0 license: MIT author: Jeremy Longshore <jeremy@intentsolutions.io>

Allowed Tools

No tools specified

Provided by Plugin

obsidian-pack

Claude Code skill pack for Obsidian plugin development and vault management (24 skills)

saas packs v1.0.0
View Plugin

Installation

This skill is included in the obsidian-pack plugin:

/plugin install obsidian-pack@claude-code-plugins-plus

Click to copy

Instructions

# Obsidian Incident Runbook ## Overview Systematic procedures for diagnosing and resolving Obsidian plugin incidents. ## Prerequisites - Access to affected system/vault - Developer Console access - Plugin source code access ## Severity Levels | Level | Definition | Response Time | Examples | |-------|------------|---------------|----------| | P1 | Data loss/corruption | Immediate | Notes deleted, vault corrupted | | P2 | Plugin unusable | < 1 hour | Crash on load, all features broken | | P3 | Feature degraded | < 4 hours | One feature not working | | P4 | Minor issue | Next release | UI glitch, minor inconvenience | ## Instructions ### Step 1: Quick Triage ```markdown ## Initial Assessment 1. **Identify the issue** - What is the user-reported symptom? - When did it start? - What changed (Obsidian update, plugin update, new plugins)? 2. **Check the basics** - [ ] Obsidian version? - [ ] Plugin version? - [ ] Desktop or mobile? - [ ] Operating system? 3. **Reproduce the issue** - [ ] Can you reproduce it? - [ ] Is it consistent or intermittent? - [ ] Does it happen in a new vault? ``` ### Step 2: Gather Diagnostic Information ```markdown ## Diagnostic Commands ### In Obsidian (Ctrl/Cmd+Shift+I) 1. **Check Console for errors:** - Look for red error messages - Note any stack traces - Check for repeated errors 2. **Check plugin status:** ```javascript // In console app.plugins.getPlugin('my-plugin-id') ``` 3. **Check settings:** ```javascript // View plugin settings app.plugins.getPlugin('my-plugin-id').settings ``` 4. **Check loaded status:** ```javascript // Is plugin loaded? app.plugins.enabledPlugins.has('my-plugin-id') ``` ### File System Checks ```bash # Check plugin files exist ls -la /path/to/vault/.obsidian/plugins/my-plugin/ # Check for corrupt JSON cat /path/to/vault/.obsidian/plugins/my-plugin/manifest.json | jq . cat /path/to/vault/.obsidian/plugins/my-plugin/data.json | jq . # Check file permissions ls -la /path/to/vault/.obsidian/plugins/my-plugin/* ``` ``` ### Step 3: Decision Tree ``` Plugin not loading? โ”œโ”€ Error in console? โ”‚ โ”œโ”€ "Cannot find module" โ†’ Missing dependency, rebuild plugin โ”‚ โ”œโ”€ Syntax error โ†’ Check main.js, rebuild โ”‚ โ”œโ”€ "Plugin failed to load" โ†’ Check manifest.json โ”‚ โ””โ”€ Runtime error โ†’ Check onload() code โ”œโ”€ No error, plugin enabled but not working? โ”‚ โ”œโ”€ Commands not appearing โ†’ Check addCommand() calls โ”‚ โ”œโ”€ Settings not showing โ†’ Check addSettingTab() โ”‚ โ””โ”€ Features not working โ†’ Check specific feature code โ””โ”€ Plugin not in list? โ”œโ”€ Check .obsidian/plugins folder โ””โ”€ Check community-plugins.json Data corruption suspected? โ”œโ”€ Settings corrupted โ†’ Delete data.json, restart โ”œโ”€ Notes corrupted โ†’ Check recent vault backups โ”œโ”€ Links broken โ†’ Run link consistency check โ””โ”€ Frontmatter corrupted โ†’ Parse and fix YAML ``` ### Step 4: Common Fixes by Error Type #### Plugin Fails to Load ```bash # Fix 1: Rebuild plugin cd /path/to/plugin npm run build # Fix 2: Reset plugin data rm /path/to/vault/.obsidian/plugins/my-plugin/data.json # Fix 3: Reinstall plugin rm -rf /path/to/vault/.obsidian/plugins/my-plugin # Reinstall from community plugins or manually ``` #### Settings Corrupted ```javascript // In console - reset to defaults const plugin = app.plugins.getPlugin('my-plugin-id'); plugin.settings = { /* DEFAULT_SETTINGS */ }; await plugin.saveSettings(); // Restart Obsidian ``` #### Crash on Specific File ```javascript // Identify problematic file // Check recent file-open events in console // Test with specific file const file = app.vault.getAbstractFileByPath('problematic/file.md'); const content = await app.vault.read(file); // Check for unusual content/frontmatter ``` ### Step 5: Emergency Procedures #### P1: Data Loss Prevention ```bash #!/bin/bash # emergency-backup.sh VAULT_PATH="/path/to/vault" BACKUP_PATH="/path/to/backup-$(date +%Y%m%d-%H%M%S)" # Immediate backup cp -r "$VAULT_PATH" "$BACKUP_PATH" echo "Backup created at: $BACKUP_PATH" # Disable the problematic plugin echo '[]' > "$VAULT_PATH/.obsidian/community-plugins.json" echo "All plugins disabled. Restart Obsidian." ``` #### P1: Vault Corruption Recovery ```markdown ## Vault Recovery Steps 1. **Stop Obsidian immediately** - Don't make any changes - Close all Obsidian windows 2. **Create backup of current state** ```bash cp -r /path/to/vault /path/to/vault-corrupted-backup ``` 3. **Check for Obsidian sync backup** - Obsidian Sync: Settings > Sync > View version history - Manual: Check your backup solution 4. **Restore from backup** ```bash # If using git cd /path/to/vault git log --oneline -20 # Find good commit git checkout ``` 5. **Disable plugins** - Start Obsidian in safe mode (hold Shift on startup) - Or manually: `echo '[]' > .obsidian/community-plugins.json` ``` ### Step 6: Communication Templates #### User Response Template ```markdown ## Response to User Hi, Thank you for reporting this issue. I'm sorry you're experiencing problems with [plugin name]. **What I understand:** - [Summarize the issue] **Immediate steps to try:** 1. [First thing to try] 2. [Second thing to try] **Information I need:** - Obsidian version (Settings > About) - Plugin version - Any error messages from Developer Console (Ctrl/Cmd+Shift+I) **Workaround (if available):** [Describe temporary workaround] I'll investigate this as a priority and provide an update within [timeframe]. ``` #### GitHub Issue Template ```markdown ## Bug Report **Plugin:** [name] v[version] **Obsidian:** v[version] **OS:** [Windows/macOS/Linux] ### Issue Description [Clear description] ### Steps to Reproduce 1. 2. 3. ### Expected Behavior [What should happen] ### Actual Behavior [What happens] ### Console Errors ``` [Paste errors] ``` ### Additional Context - Started after: [event/update] - Frequency: [always/sometimes/once] - Workaround: [if any] ``` ### Step 7: Post-Incident Actions #### Root Cause Analysis Template ```markdown ## Post-Incident Review **Incident:** [Brief description] **Date:** [Date] **Duration:** [Time to resolution] **Severity:** P[1-4] ### Timeline - [Time] - Issue reported - [Time] - Investigation started - [Time] - Root cause identified - [Time] - Fix deployed - [Time] - Confirmed resolved ### Root Cause [Technical explanation] ### Impact - Users affected: [estimate] - Data loss: [yes/no, details] ### Action Items - [ ] [Preventive measure] - Due: [date] - [ ] [Documentation update] - Due: [date] - [ ] [Test coverage] - Due: [date] ### Lessons Learned [What can we do better] ``` ## Output - Issue identified and categorized - Diagnostic information collected - Fix applied - Users notified - Post-incident review completed ## Error Handling | Issue | Cause | Quick Fix | |-------|-------|-----------| | Console not opening | Obsidian crash | Start with --remote-debugging-port | | Can't access vault | Permissions | Check file permissions | | Plugin won't disable | Corrupt config | Edit community-plugins.json manually | | Total crash | Memory/disk | Free up system resources | ## Examples ### Quick Health Check Script ```javascript // Run in Obsidian console (function checkPluginHealth() { const plugin = app.plugins.getPlugin('my-plugin-id'); console.log('Plugin Status:'); console.log('- Loaded:', !!plugin); console.log('- Enabled:', app.plugins.enabledPlugins.has('my-plugin-id')); if (plugin) { console.log('- Version:', plugin.manifest.version); console.log('- Settings valid:', !!plugin.settings); } console.log('\nRecent Errors:'); // Check for recent errors in your error tracking })(); ``` ## Resources - [Obsidian Forum - Bug Reports](https://forum.obsidian.md/c/bug-reports/7) - [Obsidian Discord - Help](https://discord.gg/obsidianmd) - [Plugin Developer Documentation](https://docs.obsidian.md/Plugins) ## Next Steps For data handling patterns, see `obsidian-data-handling`.

Skill file: plugins/saas-packs/obsidian-pack/skills/obsidian-incident-runbook/SKILL.md