ix-daemon 0.1.0

Global per-user daemon for Ixchel IPC, sync queueing, and single-writer enforcement
Documentation
# 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

| Task              | Location                            |
| ----------------- | ----------------------------------- |
| 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`       |