v1.0 is Live

Monitor your autonomous workforce.

Real-time logs, cost tracking, and kill switches for AI agents. Zero config. Add one line of code.

Start Monitoring
const monitor = require('clawsight');
// Initialize monitor
monitor({
id: 'trader-bot-01',
token: 'sk_live_...'
});
// Log events
monitor.log('Trade executed: +$45.20');

Why monitor agents?

Autonomous agents can loop indefinitely, hallucinate, or burn through API credits in minutes. ClawSight gives you visibility and control.

Cost Tracking

Monitor token usage and spend in real-time. Set hard limits to prevent runaway API bills.

Live Streaming

See what your agent is "thinking" as it happens. Stream logs directly to your dashboard.

Kill Switch

Terminate rogue agents instantly from the UI. No need to SSH into servers to kill processes.

Documentation

Everything you need to integrate ClawSight into your agent fleet.

1 Installation

$ npm install clawsight-client

2 Configuration

Get your API Key from the Dashboard Settings.

const ClawSight = require('clawsight-client'); // Connect to Dashboard const watcher = ClawSight({ server: 'https://app.clawsight.org', token: 'sk_live_8374...', id: 'agent-01', name: 'Production Trader' });

API Reference

watcher.log(message, status)

Send a log entry to the dashboard.

  • message: String - What happened
  • status: 'working' | 'success' | 'error' | 'idle'
watcher.metric(key, value)

Track numerical metrics (cumulative or instantaneous).

  • key: 'cost' | 'tokens' | 'latency'
  • value: Number
kill-signal

The SDK listens for termination signals from the dashboard. When received, it calls process.exit(1) automatically.