Skip to the content.

Get up and running with the template in 5 minutes.

1. Clone and Install

# Clone the repository
git clone https://github.com/fcskit/obsidian-plugin-template.git
cd obsidian-plugin-template

# Install dependencies
npm install

2. Build the Plugin

# Development build (fast, includes debug)
npm run dev

# Production build (minified, debug eliminated)
npm run build

3. Test in Obsidian

The template includes a pre-configured test vault at test-vault/:

  1. Open Obsidian
  2. “Open another vault” → “Open folder as vault”
  3. Select obsidian-plugin-template/test-vault
  4. Enable community plugins if prompted
  5. Plugin is automatically installed and ready to test

4. Try the Example

5. Start Building

Replace the example code in src/ with your plugin logic:

See Developer Guide for detailed information.

Next Steps

See detailed plan in TOMORROW-ACTION-PLAN.md if needed.