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, and styles.css (if applicable)
  • GitHub repository for your plugin (public)
  • gh CLI authenticated (gh auth status)
  • Plugin passes obsidian-prod-checklist validation

Instructions

Step 1: Build Release Assets

set -euo pipefail
# Clean build for production
rm -f main.js
npm ci
npm run build
Installs
2
GitHub Stars
2.2K
First Seen
Apr 4, 2026
obsidian-deploy-integration — jeremylongshore/claude-code-plugins-plus