From ca522ecf0d51aa8855c19d8c373c46b003400347 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Sat, 5 Jul 2025 01:38:34 +0200 Subject: [PATCH] Expand AGENTS instructions --- AGENTS.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..822a8eb --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,17 @@ +# Agent Instructions + +This repository provides a base library for building GraphQL servers across multiple Python web frameworks. + +## Project Structure +- `src/graphql_server/` contains the library implementation. +- `src/tests/` houses the unit tests. +- `docs/` includes framework-specific documentation. +- `pyproject.toml` defines project metadata and dependencies. +- `noxfile.py` holds automation sessions for linting and testing. + +## Running Tests +Run the full test suite with: + +```bash +uv run pytest +```