Skip to content

Workshop

Welcome to the hands-on workshop materials for "Prompts to Process."

Contents

  • Setup - Pre-workshop preparation and installation
  • Architecture - Technical architecture and design patterns

Sandbox Application

This section focuses on Raccoon Rocket Lab, a full-stack TypeScript application designed to demonstrate agentic software engineering concepts. The sandbox provides a realistic codebase with:

  • Modern frontend stack (React 19, Vite, TanStack Query)
  • Backend API (Hono, Bun, SQLite)
  • Comprehensive testing infrastructure (Vitest, Playwright, Stryker)
  • Static analysis tooling (Biome, Knip)
  • Monorepo orchestration (Turborepo)

Getting Started

Start the sandbox application from the repository root:

make web        # Start development servers
make web-down   # Stop servers

The client runs on port 35806 and the server on port 35800.

Quick Reference

Command Description
make web Start client and server
make test Run all tests
make mutation Run mutation testing
make deadcode Run dead code analysis