Help & FAQ

Everything you need to know about the GamesBond platform and Cardboard prototyping tool.

GamesBond Platform

What is GamesBond?

GamesBond is a board game community platform with a spy/007 theme. Think of it as your agency headquarters for everything board games: discovering new titles, reading and writing reviews, learning strategies, tracking your collection, logging plays, finding game nights, and connecting with fellow agents.

The platform is built around the idea that every board gamer is an agent, and the board game hobby is a world of missions, dossiers, and tactical decisions. This theme runs through the entire experience, from how we name features to how the gamification system works.

Key features of the platform:

  • Dossier Database -- a comprehensive game catalog sourced from BoardGameGeek
  • Mission Briefings -- in-depth game reviews with a 1-5 martini glass rating
  • Field Tactics & Agent Training -- strategy guides and how-to-play guides
  • The Armory -- your personal game collection tracker
  • Field Reports -- play session logging
  • Rendezvous -- game night events and venue discovery
  • Price Watch -- deal tracking with price drop alerts
  • Cardboard -- an AI-powered board game prototyping tool
How do Mission Briefings (reviews) work?

Mission Briefings are our take on game reviews. Any registered agent can write a review for any game in the Dossier Database. Reviews use a 1-5 martini glass rating scale:

Rating Meaning
1 martini Not recommended -- mission failed
2 martinis Below average -- rough extraction
3 martinis Decent -- mission acceptable
4 martinis Great -- mission accomplished
5 martinis Outstanding -- legendary operation

Reviews include a text body where you can go in-depth on what you liked, what fell flat, and who the game is best suited for. Writing reviews earns you 100 XP toward your Analyst skill.

How do Field Tactics and Agent Training work?

GamesBond has two types of guides, each serving a different purpose:

Field Tactics (Strategy Guides)

Deep dives into how to win. These cover optimal openings, mid-game pivots, scoring engines, and endgame strategies. Aimed at players who already know the rules and want to improve. Tagged by skill level: Recruit, Agent, or Double-0.

Agent Training (How-to-Play Guides)

Structured rules explanations for learning a game from scratch. Each training guide is broken into sections covering setup, turn structure, actions, and win conditions. Think of it as a teach script you can hand someone at the table.

What is the Dossier Database?

The Dossier Database is our game catalog -- a comprehensive directory of board games sourced primarily from BoardGameGeek (BGG). Each game dossier includes:

  • Player count, play time, and weight/complexity
  • Taxonomy: categories, mechanics, themes, designers, publishers
  • Cover art and description
  • Affiliate buy links with price tracking (Price Watch)
  • Links to reviews, guides, and training for that game
  • Community ratings from BGG

You can browse games by category, mechanic, designer, publisher, or theme. The Mission Planner recommender helps you find games that match your group size, time, experience level, and mood.

How does the gamification system work?

Every action you take on GamesBond earns experience points (XP) that level up your agent profile. The system tracks four independent skill trees:

Skill How to earn XP
Analyst Write reviews (100 XP each)
Collector Add to collection (25 XP), log plays (50 XP)
Scout Browse and discover games (5 XP), follow agents (10 XP)
Operative Comment and engage (15 XP)

As you accumulate XP, you progress through ranks: Recruit, Agent, and Double-0. Check the Leaderboard to see how you rank against other agents by total XP or per-skill XP.

What are Rendezvous (Events)?

Rendezvous are game night events that agents can create and discover. Any registered agent can organize a Rendezvous, specifying the date, location, games planned, and player slots. Other agents can RSVP to join.

Events support proximity-based discovery -- you can find game nights happening near you using location search. The Safe Houses directory lists board game cafes, stores, and other venues where game nights regularly happen.

What is The Weekly Briefing?

The Weekly Briefing is the GamesBond newsletter. It delivers a curated roundup of new reviews, guides, game recommendations, price drops, and community activity straight to your inbox.

The newsletter uses a dynamic shortcode system, so each issue can embed live game cards with cover art and buy links, guide previews, deal summaries, and more -- not just static text.

Subscribe from the footer of any page on the site. You can unsubscribe at any time via the link in every email.

Cardboard Prototyping

What is Cardboard?

Cardboard is an AI-powered board game prototyping tool built into the GamesBond platform. It lets you design, playtest, and export board game prototypes entirely in the browser -- no physical materials needed to validate your ideas.

The core workflow is: describe your game idea to the AI designer, iterate on the rules and components through conversation, playtest it in real-time with other players or AI opponents, then export your finished prototype to external tools or print-and-play formats.

Prototyping Workflow

Design
AI chat
Playtest
Live sessions
Iterate
Refine rules
Export
TTS, PDF, ...
How does the AI designer work?

The AI designer is a conversational interface powered by Claude. You describe your game idea in natural language, and the AI helps you turn it into a structured game definition that the engine can run.

A typical design session looks like this:

  1. Describe your concept: "I want a card game about trading spices in a medieval market"
  2. The AI generates an initial game definition with components, zones, actions, and win conditions
  3. You refine through conversation: "Add a bluffing mechanic" or "Make the market deck smaller"
  4. Each change updates the structured definition in real time
  5. When ready, hit playtest to try it out immediately

The AI understands board game design patterns -- mechanics like deck building, worker placement, area control, and more. It can suggest balancing adjustments and flag potential issues in your design.

What are game definitions?

A game definition is the structured data model that describes your board game prototype. It's what the game engine reads to know what the game is and how it works. A definition contains:

Game Definition Structure

Components
Cards, tokens, dice, boards, tiles
Zones
Hands, decks, boards, discard piles
Actions
Draw, play, move, trade, attack
Win Conditions
Score target, elimination, collection
+ + +
Resources
Gold, health, mana, victory points
Turn Structure
Phases, action allowances
Triggers
Event-driven reactive effects
Setup Steps
Initial placement and dealing

Each action has conditions (when can you do it?) and effects (what happens?). Conditions can check resources, zone contents, game phase, and more. Effects can move components, modify resources, change turn order, and trigger other events.

What is a Game Knowledge Document (GKD)?

A Game Knowledge Document (GKD) is an AI-optimized representation of a game's rules and mechanics. While a game definition is the machine-readable structure the engine uses, a GKD is designed for AI consumption -- giving Claude the context it needs to understand a game deeply.

GKD Pipeline

Game Definition
Compile
GKD
AI Context & Rules

GKDs are used in two main ways: on the community site, they power the AI Q&A feature that can answer questions about any game in the Dossier Database. In Cardboard, they provide the rules context that the game engine and AI adjudicator need to run playtests correctly.

GKDs are generated automatically from game definitions or from external data (like BGG descriptions) using Claude, then stored as structured JSONB in the database.

How does the game engine work?

The Cardboard game engine is an Elixir GenServer that manages active game sessions. It operates on a dual-layer approach:

Layer 1: Codified Mechanics

Standard game operations are executed deterministically by the engine. Moving a card from your hand to the board, drawing from a deck, spending resources, checking win conditions -- these all happen instantly with no AI involvement.

Layer 2: AI Adjudication Fallback

When the engine encounters a situation it can't resolve mechanically -- ambiguous rules, complex interactions between effects, or custom mechanics that weren't fully codified -- it falls back to Claude as an adjudicator. The AI reads the game's GKD and the current game state to make a ruling.

This means you can prototype games with incomplete rule definitions. The engine handles what it can, and the AI fills in the gaps. As you refine your design, more and more situations get handled by the fast deterministic layer.

What game mechanics are supported?

The game definition system supports a wide range of mechanics through its composable action/condition/effect model:

Structural

  • Turn orders: sequential, reverse, custom, bid-based
  • Phases: multi-phase turns with allowed-action lists
  • Triggers: event-driven reactive effects
  • Conditional effects: if/then chains on actions

Component

  • Cards, tokens, dice, tiles, boards
  • Zones with visibility and capacity
  • Resources with min/max bounds
  • Hidden information (private zones)

Common Patterns

  • Deck building (draw, shuffle, discard)
  • Worker placement (place/retrieve from zones)
  • Area control (zone ownership tracking)
  • Auctions (bid resources)

Win Conditions

  • Score target (reach N victory points)
  • Elimination (last player standing)
  • Collection (gather specific components)
  • Custom (defined via variable checks)

Triggers can fire once, once per turn, or every time their event occurs. They respond to events like turn_start, turn_end, action completion, resource changes, and zone modifications.

How does playtesting work?

Cardboard supports real-time multiplayer playtesting directly in the browser:

  • Start a playtest session from any prototype you own and share the invite link with other players
  • AI opponents can fill empty seats -- they use the game's GKD to make decisions according to the rules
  • The game engine manages state in real time via Phoenix LiveView -- no page reloads or polling
  • After each session, a playtest report summarizes what happened: turns taken, resources spent, who won, and flagged rule ambiguities

The matchmaking system lets you find other playtesters on the platform. You can create a listing describing your prototype and what kind of feedback you're looking for, and other designers can sign up to playtest with you.

What export formats are available?

Once your prototype is ready, you can export it in several formats:

Format Description
Tabletop Simulator (TTS) JSON save file importable into TTS for 3D virtual playtesting
Tabletopia Export compatible with the Tabletopia platform
Screentop Export for the Screentop browser-based tabletop
PDF / Print-and-Play Printable component sheets, rulebook, and card layouts
JSON Raw game definition as structured JSON for custom integrations

The PDF export generates a complete rulebook (auto-generated from your game definition) plus print-and-play component sheets laid out for standard paper sizes.

What is the shortcode system?

The shortcode system enables dynamic content embedding in newsletter issues. Instead of static text, editors can insert live-rendered cards and widgets using a simple syntax:

[[game:ark-nova]] -- Game card with cover, rating, buy link

[[guide:ark-nova-strategy]] -- Guide preview card

[[training:ark-nova-how-to-play]] -- Training guide card

[[review:uuid]] -- Review snippet with rating

[[deals:5]] -- Top 5 price drops this week

[[cta:join]] -- Sign-up call-to-action button

[[cta:custom|Shop Now|/deals]] -- Custom CTA button

Shortcodes are expanded at render time, so the data is always current when the email is sent. Unknown shortcodes are left as plain text.

Billing & Plans

What plans are available?

Cardboard prototyping offers four plan tiers. The GamesBond community site (reviews, guides, events, etc.) is free for everyone -- plans only apply to the Cardboard prototyping tool.

Plan AI Messages / Month Prototypes Playtests
Free 50 3 5
Pro 500 Unlimited Unlimited
Studio 5,000 Unlimited Unlimited
Publisher Unlimited Unlimited Unlimited

All plans include full access to exports, matchmaking, and version history. The primary differentiator is the monthly AI message allocation, which covers design chat, AI opponents, and GKD generation.

View full pricing details →

How do AI message limits work?

AI messages are counted per calendar month and reset on the 1st. Every interaction with Claude counts as one message, including:

  • Design chat messages (asking the AI to modify your game)
  • AI opponent moves during playtests
  • GKD generation for existing games
  • AI adjudication calls during engine fallback

You can track your current usage from the Usage page in the Cardboard dashboard. If you hit your limit, you can upgrade your plan at any time -- the new allocation takes effect immediately.

Tip: once your game definition is well-specified, most playtest actions are handled by the deterministic engine without using AI messages. The AI is mainly used during the early design phase and for edge cases.

Still have questions?

Reach out to us and we'll get back to you as soon as possible.