Contributing to Spool banner
spool-lab spool-lab

Contributing to Spool

Development community intermediate

Description

Thanks for your interest in contributing! Spool is early-stage and we welcome all kinds of help.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Contributing to Spool

Thanks for your interest in contributing! Spool is early-stage and we welcome all kinds of help.

Getting started

git clone https://github.com/spool-lab/spool.git
cd spool
pnpm install
pnpm dev

Native module runtimes

`better-sqlite3` is used from both Node-based tests and the Electron app. Rebuild it for the runtime you are about to use:

pnpm run rebuild:native:node      # Node / vitest / core tests
pnpm run rebuild:native:electron  # Electron app / Playwright e2e

If you hit a `NODE_MODULE_VERSION` mismatch, rerun the matching rebuild command and try again.

Project structure

packages/
  app/      Electron macOS app (React + Vite + Tailwind)
  core/     Indexing engine (SQLite + FTS5)
  cli/      CLI interface
  landing/  spool.pro website

Making changes

  1. Fork the repo and create a branch from main
  2. Make your changes
  3. Run pnpm test to make sure nothing is broken
  4. Open a pull request

What to work on

  • Check Issues for bugs and feature requests
  • Small fixes (typos, docs, UI polish) are always welcome — no issue needed
  • For larger changes, open an issue first so we can discuss the approach

Style

  • No linter config yet — just match the surrounding code style
  • Commit messages: feat:, fix:, docs:, ci:, refactor:

Community

  • Discord for questions and discussion
  • Issues for bugs and feature requests