From 77b1262d832442521b44b5f69da6f3f917831b1c Mon Sep 17 00:00:00 2001 From: Denis Drobyshev Date: Mon, 10 Aug 2026 22:21:57 +0300 Subject: [PATCH] Add a citation file GitHub reads CITATION.cff and offers BibTeX and APA from the sidebar. Without it, anyone citing this repository invents a format, and they each invent a different one. No version or date-released field: both go stale the moment a release lands, and a citation file that disagrees with the latest tag is worse than one that never mentions a version. --- CITATION.cff | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..f80d02a --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,19 @@ +cff-version: 1.2.0 +title: >- + glia — a glass-box, minimal library for building LLM agents +message: >- + If you use glia in work you publish, please cite it using this entry. +abstract: >- + An agent library in which every model call, tool call and state transition is a plain object that can be logged, snapshotted and replayed. Modern techniques -- tools, structured outputs, context compaction, durable checkpoints, guardrails, subagents and evaluations-as-tests -- are opt-in primitives rather than hidden control flow. The core has no required dependencies. +authors: + - family-names: Drobyshev + given-names: Denis +repository-code: https://github.com/DrobyshevDev/glia +url: https://github.com/DrobyshevDev/glia +license: MIT +keywords: + - llm-agents + - agent-framework + - observability + - evaluation + - python