Skip to main content
ClaudeWave
Skill14.7k repo starsupdated 2d ago

getting-started

This Claude Code skill guides users through initializing an Open SaaS project by fetching the official documentation, verifying Wasp installation on their system, and optionally assisting with database and application startup. Use it when onboarding new Open SaaS developers or helping existing users resolve setup issues.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/wasp-lang/open-saas /tmp/getting-started && cp -r /tmp/getting-started/template/app/.agents/skills/getting-started ~/.claude/skills/getting-started
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Getting Started with Open SaaS

Follow these steps in order:

## Step 1: Fetch the Documentation Map

Fetch the Open SaaS documentation map from the [LLMs.txt index](https://docs.opensaas.sh/llms.txt). This contains raw markdown file GitHub URLs of all documentation sections.

## Step 2: Fetch the Getting Started Guide

From the documentation map, find the "Getting Started" guide URL (a raw.githubusercontent.com URL) and fetch its full contents. Use this as the source of truth for all instructions below.

## Step 3: Check Wasp Installation

Run `wasp version` to check if Wasp is installed and which version is available.

- **If Wasp is installed:** Confirm the version to the user and continue to Step 4.
- **If Wasp is NOT installed:** Walk the user through the installation instructions from the Getting Started guide for their OS (detect the OS from the environment). After installation, verify with `wasp version` before continuing.

## Step 4: Offer to Help Start the App

Ask the user if they'd like help starting their managed PostgreSQL database and Wasp app according to the instructions in the Getting Started guide.

If yes, walk them through the steps from the guide (starting the database, running migrations, starting the dev server, etc.). If they run into any issues, troubleshoot using the guide's content.