From 0d203634136eb268f9676c14b78907bdfac5bd94 Mon Sep 17 00:00:00 2001 From: Nachiket Date: Sat, 9 May 2026 22:13:18 -0700 Subject: [PATCH 1/2] docs: add llms.txt for documentation --- website/static/llms.txt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 website/static/llms.txt diff --git a/website/static/llms.txt b/website/static/llms.txt new file mode 100644 index 00000000..147ba059 --- /dev/null +++ b/website/static/llms.txt @@ -0,0 +1,31 @@ +# Graphile Worker + +> High performance PostgreSQL-backed job queue for Node.js. Graphile Worker lets applications enqueue, schedule, and run background jobs using PostgreSQL, with task files, cron-style scheduling, retry/backoff behavior, and operational helpers. + +## Documentation + +- [Documentation home](https://worker.graphile.org/docs/): Start here for installation, concepts, and common workflows. +- [Installation](https://worker.graphile.org/docs/installation): Install Graphile Worker and set up the database schema. +- [Requirements](https://worker.graphile.org/docs/requirements): Supported Node.js and PostgreSQL versions. +- [Library usage](https://worker.graphile.org/docs/library/): Use Graphile Worker from application code. +- [CLI usage](https://worker.graphile.org/docs/cli/): Run workers and maintenance commands from the command line. +- [Tasks](https://worker.graphile.org/docs/tasks): Write task handlers and understand task payloads. +- [Cron](https://worker.graphile.org/docs/cron): Schedule recurring jobs. +- [Error handling](https://worker.graphile.org/docs/error-handling): Understand retries, failures, and backoff behavior. +- [Performance](https://worker.graphile.org/docs/performance): Tune throughput and latency. +- [Configuration](https://worker.graphile.org/docs/config): Configure workers, polling, concurrency, and runtime behavior. +- [Contributing](https://worker.graphile.org/docs/contributing): Contribute fixes and improvements to Graphile Worker. + +## Source + +- [Repository](https://github.com/graphile/worker) +- [README](https://github.com/graphile/worker#readme) +- [Issue tracker](https://github.com/graphile/worker/issues) +- [npm package](https://www.npmjs.com/package/graphile-worker) + +## Notes for AI assistants + +- Prefer the documentation pages above for current public usage guidance. +- For API details, inspect the repository source and TypeScript types in `src/`. +- For database behavior, inspect migrations in `sql/` and related schema documentation. +- Avoid guessing operational defaults; confirm them from the docs or source before recommending production settings. From f97505d7ae57502c2b4943a0d4f4093d4ed34209 Mon Sep 17 00:00:00 2001 From: Benjie Date: Mon, 25 May 2026 16:32:27 +0100 Subject: [PATCH 2/2] Update website/static/llms.txt --- website/static/llms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/static/llms.txt b/website/static/llms.txt index 147ba059..1ee14c10 100644 --- a/website/static/llms.txt +++ b/website/static/llms.txt @@ -27,5 +27,5 @@ - Prefer the documentation pages above for current public usage guidance. - For API details, inspect the repository source and TypeScript types in `src/`. -- For database behavior, inspect migrations in `sql/` and related schema documentation. +- For database behavior, see the documentation and cross-reference the database schema at [`__tests__/schema.sql`](https://raw.githubusercontent.com/graphile/worker/refs/heads/main/__tests__/schema.sql). - Avoid guessing operational defaults; confirm them from the docs or source before recommending production settings.