agentty 0.13.0

Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.
Documentation
# Infrastructure Layer

## Overview

Implementations of external interfaces for persistence, filesystem, process, clock, and
system boundaries.

## Entry Points

- `db.rs` owns SQLite persistence and query execution.
- `file_index.rs` owns gitignore-aware file traversal used by `@` mentions and explorer
  features.
- `clipboard_image.rs` owns clipboard image capture, PNG encoding, and prompt-image
  temp-file persistence behind `ClipboardImageClient`.

## Change Guidance

- Keep new external integrations behind trait boundaries.
- Keep agent provider transports, app-server runtime infrastructure, and channel
  contracts in `crates/ag-agent/`.
- Keep reusable git operations in `crates/ag-git/`; do not recreate a local `git`
  implementation in this directory.
- Route subprocess, filesystem, and time access through existing infrastructure
  boundaries instead of introducing direct calls in orchestration layers.