> ## Documentation Index
> Fetch the complete documentation index at: https://docs.oneshotagent.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Telemetry and local logs

> What leaves your machine, how to opt out, and where to inspect local activity.

Anonymous command telemetry is on by default and can be disabled:

```bash theme={null}
bun run cli -- config telemetry off
```

You can also set `ONESHOT_GTM_TELEMETRY=0`. Telemetry summarizes invocations with fields such as command, outcome, duration, version and OS. It does not transmit prospect records, prompts, replies or wallet secrets as telemetry.

The GTM repository's [TELEMETRY.md](https://github.com/oneshot-agent/oneshot-gtm/blob/main/TELEMETRY.md) is the authoritative payload and privacy specification. Paid research, model and sending calls still send the data needed to their providers; turning off telemetry does not disable those requested actions.

## Local event log

Each workspace writes `events.jsonl` inside its data directory. These logs are separate from transmitted telemetry and remain enabled when telemetry is off.

For the default workspace:

```bash theme={null}
tail -F ~/.oneshot-gtm/events.jsonl
```

Events describe LLM calls, finder runs, ICP decisions and errors. Logs rotate, so use `tail -F` for a long-running watch. See [Watching what's happening](https://github.com/oneshot-agent/oneshot-gtm/blob/main/README.md#watching-whats-happening) for filtering recipes and rotation details.
