npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@contractspec/example.agent-console

v3.8.25

Published

Agent Console example - AI agent orchestration with tools, runs, and logs

Readme

@contractspec/example.agent-console

Website: https://contractspec.io

Agent Console example - AI agent orchestration with tools, runs, and logs.

What This Demonstrates

  • Agent entity with lifecycle (create, configure, execute).
  • Canonical agent example exports plus business-oriented harness-scenario and harness-suite proof coverage.
  • Run tracking with status enums and event-driven state transitions.
  • Tool registry with typed schemas and operation handlers.
  • Presentation layer with React UI components, hooks, modals, overlays, and a server-mode shared DataTable for run history.
  • Shared AgentConsolePreview component rendered by both the web inline preview and the Expo mobile demo through the UI kit alias layer.
  • Shared table capabilities including sorting, pagination, column visibility toggles, and expandable run diagnostics.
  • Contract-backed visualization surfaces for run status, activity, and duration-vs-token analysis.
  • One deterministic demo runtime shared across React hooks, markdown renderers, and the sandbox runtime.
  • Markdown and React renderers for multi-surface output.
  • Seeded local data and harness replay proof for offline-safe demo scenarios.

Canonical Demo Path

  • Default sandbox route: /sandbox
  • Explicit sandbox route: /sandbox?template=agent-console
  • Proof artifact: packages/examples/agent-console/proofs/agent-console-meetup.replay.json

The canonical walkthrough is deterministic and local-first:

  1. Load the agent-console sandbox.
  2. Inspect seeded agents, tools, runs, and metrics.
  3. Create an agent.
  4. Activate or pause it.
  5. Execute a run.
  6. Confirm the run and metrics update.
  7. Export or inspect the generated replay proof.

Runtime Boundaries

  • React hooks and the sandbox use createAgentConsoleDemoHandlers(...) for the meetup path.
  • Markdown renderers prefer runtime-fetched data and fall back to the same deterministic demo handlers.
  • The demo runtime is intentionally mocked and offline-safe by default.
  • Database-backed createAgentHandlers(db) remains available for non-demo runtime wiring.

Running Locally

From packages/examples/agent-console:

  • bun run dev
  • bun run build
  • bun run test
  • bun run proof
  • bun run typecheck
  • bun run preflight

From the repository root:

  • bun run meetup:agent-console:policy
  • bun run meetup:agent-console:proof
  • bun run meetup:agent-console:preflight

Usage

Use @contractspec/example.agent-console as a reference implementation, or import its exported surfaces into a workspace that composes ContractSpec examples and bundles.

Architecture

  • src/agent is part of the package's public or composition surface.
  • src/agent.capability.ts defines a capability surface.
  • src/agent.feature.ts defines a feature entrypoint.
  • src/docs/ contains docblocks and documentation-facing exports.
  • src/example.ts is the runnable example entrypoint.
  • src/handlers/ contains handlers or demo adapters wired to contract surfaces.
  • src/index.ts is the root public barrel and package entrypoint.
  • src/proof/ contains the exported meetup proof scenario and suite.
  • src/ui/AgentConsolePreview.tsx is the cross-platform preview component used by web and mobile example surfaces.

Public Entry Points

  • Export . resolves through ./src/index.ts.
  • Export ./agent resolves through ./src/agent/index.ts.
  • Export ./agent.capability resolves through ./src/agent.capability.ts.
  • Export ./agent.feature resolves through ./src/agent.feature.ts.
  • Export ./agent/agent.entity resolves through ./src/agent/agent.entity.ts.
  • Export ./agent/agent.enum resolves through ./src/agent/agent.enum.ts.
  • Export ./agent/agent.event resolves through ./src/agent/agent.event.ts.
  • Export ./agent/agent.handler resolves through ./src/agent/agent.handler.ts.
  • Export ./agent/agent.operation resolves through ./src/agent/agent.operation.ts.
  • Export ./agent/agent.presentation resolves through ./src/agent/agent.presentation.ts.
  • Export ./proof resolves through ./src/proof/index.ts.
  • Export ./proof/meetup-proof.scenario resolves through ./src/proof/meetup-proof.scenario.ts.
  • Export ./proof/meetup-proof.suite resolves through ./src/proof/meetup-proof.suite.ts.
  • The package publishes 72 total export subpaths; keep docs aligned with package.json.

Local Commands

  • bun run dev — contractspec-bun-build dev
  • bun run build — bun run prebuild && bun run build:bundle && bun run build:types
  • bun run test — bun test
  • bun run proof — bun ../../../scripts/generate-agent-console-meetup-proof.ts
  • bun run preflight — bun run build && bun run typecheck && bun run test && bun ../../../scripts/check-agent-console-meetup-policy.ts && bun run proof
  • bun run lint — bun lint:fix
  • bun run lint:check — biome check .
  • bun run lint:fix — biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .
  • bun run typecheck — tsc --noEmit
  • bun run publish:pkg — bun publish --tolerate-republish --ignore-scripts --verbose
  • bun run publish:pkg:canary — bun publish:pkg --tag canary
  • bun run clean — rimraf dist .turbo
  • bun run build:bundle — contractspec-bun-build transpile
  • bun run build:types — contractspec-bun-build types
  • bun run prebuild — contractspec-bun-build prebuild

Recent Updates

  • Unified the meetup demo around a single seeded runtime.
  • Added focused handler tests, a sandbox smoke test, and a harness replay proof.
  • Added a slice-scoped meetup preflight instead of relying on the repo-wide policy backlog.

Notes

  • Works alongside @contractspec/lib.contracts-spec, @contractspec/lib.design-system, @contractspec/lib.example-shared-ui, @contractspec/lib.runtime-sandbox, @contractspec/lib.schema, ...