soroban-abacus-flashcards/apps/web
Thomas Hallock 3c238dc550 feat(blog): add vision detection stories and screenshots
- Create VisionDetection.stories.tsx with interactive demos
- Add screenshot capture script for Storybook stories
- Update blog post with captured screenshots
- Include before/after comparison, progress gallery, and step demos

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 20:31:00 -06:00
..
.claude docs: add TensorFlow.js model debugging notes 2026-01-07 18:07:23 -06:00
.storybook chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
__tests__ chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
content/blog feat(blog): add vision detection stories and screenshots 2026-01-07 20:31:00 -06:00
data
docs
drizzle feat(vision): auto-setup Python venv for training on first API call 2026-01-06 07:18:23 -06:00
e2e chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
public feat(blog): add vision detection stories and screenshots 2026-01-07 20:31:00 -06:00
scripts feat(blog): add vision detection stories and screenshots 2026-01-07 20:31:00 -06:00
src feat(blog): add vision detection stories and screenshots 2026-01-07 20:31:00 -06:00
test-results
.dockerignore.test
.gitignore fix(vision): enable ML training on production server 2026-01-06 09:58:36 -06:00
CARD_SORTING_PORT_PLAN.md
COMPLEMENT_RACE_PORT_PLAN.md
DEVELOPMENT_STANDARDS.md
LINTING.md
README.md
biome.jsonc chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
drizzle.config.ts chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
eslint.config.js chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
next-env.d.ts
next.config.js chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
package.json
panda.config.ts chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
playwright.config.ts chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
pnpm-lock.yaml
server.js chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
svg-processing-test.js chore: format codebase with Biome 2026-01-05 16:34:42 -06:00
test-arcade-api.sh
test-flashcards-final.pdf
test-flashcards.pdf
test-simplified.pdf
test_fullscreen_persistence.html
test_panda_simple.html
tsconfig.json
tsconfig.server.json
vitest.config.ts chore: format codebase with Biome 2026-01-05 16:34:42 -06:00

README.md

Soroban Web Application

Interactive web application for learning soroban (Japanese abacus) calculation with tutorials, practice sessions, and multiplayer arcade games.

Features

  • Tutorials - Step-by-step lessons for learning soroban techniques
  • Practice Sessions - Adaptive practice with progressive help system
  • Arcade Games - Multiplayer educational games for reinforcement
  • Worksheet Generator - Create printable math worksheets

Getting Started

# Install dependencies
pnpm install

# Start development server
pnpm dev

# Run type checks
npm run type-check

# Run all quality checks
npm run pre-commit

Documentation

Components

Component Description
Decomposition Display Interactive mathematical decomposition visualization
Worksheet Generator Math worksheet creation with Typst PDF generation

Games

Game Description
Arcade System Modular multiplayer game architecture
Know Your World Geography quiz game

Developer Documentation

Located in .claude/ directory:

  • CLAUDE.md - Project conventions and guidelines
  • CODE_QUALITY_REGIME.md - Quality check procedures
  • GAME_SETTINGS_PERSISTENCE.md - Game config architecture
  • Z_INDEX_MANAGEMENT.md - Z-index layering system
  • DEPLOYMENT.md - Deployment and CI/CD

Project Structure

apps/web/
├── src/
│   ├── app/                 # Next.js App Router pages
│   ├── components/          # Shared React components
│   │   ├── decomposition/   # Math decomposition display
│   │   ├── practice/        # Practice session components
│   │   └── tutorial/        # Tutorial player components
│   ├── contexts/            # React context providers
│   ├── arcade-games/        # Multiplayer game implementations
│   ├── hooks/               # Custom React hooks
│   ├── lib/                 # Utilities and libraries
│   └── db/                  # Database schema and queries
├── .claude/                 # Developer documentation
├── public/                  # Static assets
└── styled-system/           # Generated Panda CSS

Technology Stack

  • Framework: Next.js 14 (App Router)
  • Language: TypeScript
  • Styling: Panda CSS
  • Database: SQLite with Drizzle ORM
  • Abacus Visualization: @soroban/abacus-react

Parent: Main README - Complete project overview Abacus Component: packages/abacus-react - Abacus visualization library