Skip to content
Docs for briefcase-ai v3.3.0see what’s new.

AI-Assisted Setup

Recommended Cursor · Claude Code · Copilot · Codex For: engineers

The fastest way to instrument decisions with Briefcase is to let the AI assistant you already code with do it for you. You don’t have to memorize the API — give your assistant the docs (or Briefcase’s own tools) and ask it to add capture, controls, and replay to a function.

Every page on this site is also published as machine-readable text an assistant can ingest:

  • https://briefcaseai.io/llms.txt — an index of the docs (titles + links), grouped by the five acts. Best as a map.
  • https://briefcaseai.io/llms-full.txt — every page concatenated as plain text. Best for “read this, then help me.”

Both files are generated from the docs on every build, so they always match what’s published here.

  1. Give your assistant the docs

    In Cursor, Claude Code, Copilot, or any assistant that can read a URL, paste the link (or add it to the project’s context / docs settings):

    Read https://briefcaseai.io/llms-full.txt — that's the Briefcase AI SDK.
  2. Ask it to instrument a function

    Using Briefcase, add @capture and observe() to classify_ticket() in
    app/triage.py so every classification is recorded, then show me how to read
    the records back.
  3. Review what it wrote

    The assistant should produce the canonical pattern — briefcase.observe(...) plus @briefcase.capture(...). Confirm it matches the Quickstart.

Prefer to do it by hand?

The Quickstart walks the same path manually — record, persist, and replay a decision — in about 5 minutes.

Where this fits