Onboarding
Before we start the hands-on sessions, let's get your environment set up. If you already have your preferred AI harness installed and configured, feel free to skip the first section.
1. AI Harness
Make sure you have one of the following AI harnesses installed and configured to use during the workshop:
2. Install the OpenSpec CLI
OpenSpec is our Spec-Driven Development (SDD) coordination framework. Install it globally:
npm install -g @fission-ai/openspec@latestVerify the installation by running:
openspec --help3. Prepare the Boilerplate Project
Now, let's download the starter project and initialize OpenSpec:
Download the Boilerplate:
- Download the starter boilerplate ZIP archive.
- Extract the contents into a new directory (e.g.,
hyperbytes/).
Install Dependencies: Open the project in your IDE or terminal, and run:
bashpnpm install(Note: If you do not have pnpm installed, run
npm installinstead).Initialize OpenSpec: In the root of the project folder, run:
bashopenspec init- When prompted, select the AI harness(es) you plan to use (e.g.,
claude,cursor, orantigravity). - This command will create the required configuration files (such as
CLAUDE.md,.agent/rules/, or.cursorrules) to coordinate your agent's workflow.
- When prompted, select the AI harness(es) you plan to use (e.g.,
Verify the Project Setup: Ensure everything compiles and the local development server starts correctly:
bashpnpm run check pnpm run devOpen
http://localhost:5173in your browser to confirm the application layout is running.