> For the complete documentation index, see [llms.txt](https://wiki.crosswatch.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.crosswatch.app/blueprint-architecture/sync/_mod_crosswatch/overview.md).

# overview

This is the **local CrossWatch provider**. It stores data as JSON on disk.

{% tabs %}
{% tab title="End users" %}

### What it supports

This module can sync:

* [Watchlist](/blueprint-architecture/sync/_mod_crosswatch/watchlist.md)
* [History](/blueprint-architecture/sync/_mod_crosswatch/history.md)
* [Ratings](/blueprint-architecture/sync/_mod_crosswatch/ratings.md)

### When to use it

* local backup before risky runs
* a clean staging dataset
* seeding other providers

### Setup links

* [Adapter: CrossWatch](/crosswatch/providers/synchronization/adapter-crosswatch.md)
* [Editor](/crosswatch/tools/editor.md)

### Gotchas

* Deleting these files deletes your local tracker data.
* Snapshots are local. Copy them on host moves.
  {% endtab %}

{% tab title="Power users" %}

### Entry point

* `sync/_mod_CROSSWATCH.py`

### Feature modules

* watchlist → `providers/crosswatch/_watchlist.py`
* history → `providers/crosswatch/_history.py`
* ratings → `providers/crosswatch/_ratings.py`

### Capability highlights

* `bidirectional: true`
* `index_semantics: "present"`
* `provides_ids: true`
* `observed_deletes: true`

<details>

<summary>Capabilities (raw)</summary>

```json
{
  "bidirectional": true,
  "index_semantics": "present",
  "observed_deletes": true,
  "provides_ids": true,
  "ratings": {
    "from_date": false,
    "types": {
      "episodes": true,
      "movies": true,
      "seasons": true,
      "shows": true
    },
    "unrate": true,
    "upsert": true
  }
}
```

</details>

### State files (common)

* `watchlist.json`, `watchlist.restore_state.json`, `watchlist.unresolved.json`
* `history.json`, `history.restore_state.json`, `history.unresolved.json`
* `ratings.json`, `ratings.restore_state.json`, `ratings.unresolved.json`
  {% endtab %}
  {% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wiki.crosswatch.app/blueprint-architecture/sync/_mod_crosswatch/overview.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
