agentty 0.8.10

Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Runtime Module

Terminal runtime loop and mode dispatch.

## Entry Points

- `core.rs` owns the foreground terminal lifecycle and main event loop.
- `event.rs` owns input polling and app-event integration.
- `key_handler.rs` and `mode.rs` route key handling by `AppMode`.
- `clipboard_image.rs` owns pasted-image capture for prompt attachments.

## Change Guidance

- Keep runtime orchestration free of direct host filesystem access.
- Route pasted-image persistence, path canonicalization, and external-path validation
  through infra traits instead of calling `std::fs`, `tokio::fs`, or `Path` helpers
  directly from runtime code.