SkillAgentSearch skills...

Brawltome

An archiving/caching statistics tool for the Brawlhalla API

Install / Use

/learn @NickTacke/Brawltome
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<p align="center"> <img src="apps/web/public/images/logo.png" alt="BrawlTome" width="400" /> </p> <p align="center">Brawlhalla player tracking — stats, rankings, clans, and rating history.</p>

Tech Stack

Structure

apps/
  api/           # Hono + tRPC server (API + worker entrypoints)
  web/           # Next.js frontend
  discord-bot/   # Discord bot
packages/
  database/      # Drizzle schema, migrations, client
  bhapi/         # Brawlhalla API client + rate limiter
  ui/            # Shared UI components

Getting Started

Prerequisites

Setup

git clone https://github.com/NickTacke/brawltome
cd brawltome
bun install

Start local postgres and redis:

docker compose up -d

Create .env files:

# apps/api/.env
DATABASE_URL=postgres://brawltome:brawltome@localhost:5432/brawltome
REDIS_URL=redis://localhost:6379
BRAWLHALLA_API_KEY=your-key

# apps/web/.env
NEXT_PUBLIC_API_URL=http://localhost:3000

# apps/discord-bot/.env
API_URL=http://localhost:3000
DISCORD_TOKEN=your-token
DISCORD_CLIENT_ID=your-client-id

Development

bun run dev:api          # API server
bun run dev:worker       # Background worker
bun run dev:web          # Frontend
bun run dev:discord-bot  # Discord bot

Database

bun run db:generate      # Generate migration from schema changes
bun run db:migrate       # Run migrations
bun run db:push          # Push schema directly (dev only)

Commands

bun test                 # Run all tests
bun run typecheck        # Type-check all packages
bun run lint             # Lint (Biome)
bun run format           # Format (Biome)
View on GitHub
GitHub Stars11
CategoryDevelopment
Updated13h ago
Forks1

Languages

TypeScript

Security Score

80/100

Audited on Mar 31, 2026

No findings