obsidian-deploy-integration
Installation
SKILL.md
Obsidian Plugin Deploy Integration
Overview
Release and distribute Obsidian plugins through multiple channels: the official community plugin directory, GitHub releases, BRAT beta testing, and manual installation. Covers the full lifecycle from building release assets to submitting your PR to the obsidian-releases repo.
Prerequisites
- Obsidian plugin with
main.ts,manifest.json, andstyles.css(if applicable) - GitHub repository for your plugin (public)
ghCLI authenticated (gh auth status)- Plugin passes
obsidian-prod-checklistvalidation
Instructions
Step 1: Build Release Assets
set -euo pipefail
# Clean build for production
rm -f main.js
npm ci
npm run build