# IX-DAEMON AGENTS
**Parent:** See `../../AGENTS.md` for workspace context.
## Overview
IPC daemon and client helpers for background sync and single-writer enforcement.
Provides the `ixcheld` binary.
## Structure
```
apps/ix-daemon/
├── src/
│ ├── lib.rs # Library exports
│ ├── client.rs # IPC client
│ ├── server.rs # IPC server
│ ├── queue.rs # Queue and coalescing
│ └── bin/ixcheld.rs # Daemon binary
├── specs/ # requirements/design/tasks
└── tests/
```
## Where To Look
| Daemon entrypoint | `apps/ix-daemon/src/bin/ixcheld.rs` |
| IPC server | `apps/ix-daemon/src/server.rs` |
| IPC client | `apps/ix-daemon/src/client.rs` |
| Queue behavior | `apps/ix-daemon/src/queue.rs` |