agentty 0.13.5

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
# 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`.

## Change Guidance

- Keep runtime orchestration free of direct host filesystem access.
- Dispatch pasted-image intents to the app layer; keep clipboard access, persistence,
  path canonicalization, and external-path validation behind infra traits.