Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# AGENTS.md

## Build & Test

- Build: `cargo build`
- Run all tests: `cargo nextest run`
- Run a single test: `cargo nextest run <test_name>`
- Lint: `cargo clippy --all-targets`
- Docs: `cargo doc --no-deps`

## Project Structure

- `src/lib.rs` — Core adapter logic, public API (`Adapter`, `AdapterOptions`, `Protocol`, `LambdaInvokeMode`)
- `src/main.rs` — Binary entrypoint
- `src/readiness.rs` — Readiness check checkpoint timing
- `tests/integ_tests/` — Integration tests
- `tests/e2e_tests/` — End-to-end tests (marked `#[ignore]`, require external setup)

## Key Conventions

- Environment variables use `AWS_LWA_` prefix
- Tests that mutate env vars rely on nextest's per-test process isolation
Loading