thinkn
  • Product
    Manifesto
    The reason we exist
    Founder Studioprivate beta
    Make better product decisions faster
    Belief SDKinvite only
    Add belief states to your AI system
    Request Access →Join the private beta waitlist
  • Docs
  • Pricing
  • FAQ
  • Docs
  • Pricing
  • FAQ
Sign In
Welcome
  • Hack Guide
  • Introduction
  • Install
  • Quickstart
  • FAQ
  • The Problem
  • Memory vs Beliefs
  • Drift
  • Examples
  • Claude Agent SDK
  • Vercel AI
  • React
  • DevTools
adapters/devtools.mdx

DevTools

A visual inspector for your agent's belief state.

Coming soon

@beliefs/devtools is in development. This page describes the planned tool.

What It Provides

A browser-based inspector for your agent's belief state. See claims, confidence, evidence, contradictions, the ledger, and clarity in real time as your agent runs.

Planned Features

  • Claim timeline. Watch claims appear and update across turns.
  • Confidence history. See how confidence changes as evidence accumulates.
  • Ledger viewer. Trace any belief back to its origin.
  • Clarity breakdown. Inspect each component of the clarity score.
  • Contradiction highlighter. See conflicts as they are detected.

Integration

One line in your development setup:

1import { BeliefDevTools } from '@beliefs/devtools'
2
3// Wrap your beliefs instance
4const beliefs = new Beliefs({
5  apiKey: process.env.BELIEFS_KEY,
6  agent: 'research-agent',
7  namespace: 'devtools-demo',
8  writeScope: 'space',
9})
10BeliefDevTools.attach(beliefs)

The inspector opens in a separate browser panel. It does not affect your agent's runtime.

Request Early Access

If you want to try DevTools before the public release, request access.

PreviousReact
NextFinance

On this page

  • What It Provides
  • Planned Features
  • Integration
  • Request Early Access