feat: add Aetheris - AI Agent execution runtime#6080
feat: add Aetheris - AI Agent execution runtime#6080Colin4k1024 wants to merge 9 commits intoavelino:mainfrom
Conversation
Aetheris is an execution runtime for AI agents with event-sourced execution, crash recovery, and human-in-the-loop support. It provides native adapters for LangGraph, AutoGen, and CrewAI.
Automated Quality ChecksRequired checks✅ Repo: accessible, has go.mod and SemVer release
Additional checks✅ License: Apache-2.0
These checks are automated and do not replace maintainer review. See CONTRIBUTING.md for full guidelines. PR Diff ValidationContent checks✅ Files changed: only README.md
Automated diff validation — does not replace maintainer review. |
|
|
||
| - [chromem-go](https://github.com/philippgille/chromem-go) - Embeddable vector database for Go with Chroma-like interface and zero third-party dependencies. In-memory with optional persistence. | ||
| - [fun](https://gitlab.com/tozd/go/fun) - The simplest but powerful way to use large language models (LLMs) in Go. | ||
| - [Aetheris](https://github.com/Colin4k1024/Aetheris) - AI Agent execution runtime with event sourcing, checkpoint recovery, and At-Most-Once execution guarantee. Written in Go. |
There was a problem hiding this comment.
Bug: The new entry Aetheris in the README.md is not in correct alphabetical order within its section.
Severity: LOW
Suggested Fix
Move the line for Aetheris to the correct alphabetical position within the "Artificial Intelligence" section, which should be before the chromem-go entry.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.
Location: README.md#L225
Potential issue: The pull request adds the entry `Aetheris` to the "Artificial
Intelligence" section of the `README.md` file. The new entry is placed after `fun` and
before `langchaingo`. However, this violates the alphabetical ordering of the list, as
`Aetheris` should appear before entries starting with 'c' and 'f', such as `chromem-go`.
Did we get this right? 👍 / 👎 to inform future reviews.
|
|
||
| - [chromem-go](https://github.com/philippgille/chromem-go) - Embeddable vector database for Go with Chroma-like interface and zero third-party dependencies. In-memory with optional persistence. | ||
| - [fun](https://gitlab.com/tozd/go/fun) - The simplest but powerful way to use large language models (LLMs) in Go. | ||
| - [Aetheris](https://github.com/Colin4k1024/Aetheris) - AI Agent execution runtime with event sourcing, checkpoint recovery, and At-Most-Once execution guarantee. Written in Go. |
There was a problem hiding this comment.
Bug: The new entry "Aetheris" in README.md is not in the correct alphabetical order. It should be placed before "chromem-go" to satisfy the TestAlpha CI check.
Severity: LOW
Suggested Fix
Move the line containing the "Aetheris" entry in README.md to its correct alphabetical position. It should be placed before the "chromem-go" entry to maintain the case-insensitive alphabetical order enforced by the TestAlpha CI test.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.
Location: README.md#L225
Potential issue: The new entry "Aetheris" in `README.md` is not in the correct
case-insensitive alphabetical order. The repository contains an automated test,
`TestAlpha`, which verifies the alphabetical ordering of items in this list. The current
placement of "Aetheris" after "fun" will cause this test to fail during CI checks, as
'a' comes before 'f'. The test failure will report an expectation mismatch, such as
`expected 'aetheris' but actual is 'fun'`, blocking the pull request from being merged.
|
|
||
| - [chromem-go](https://github.com/philippgille/chromem-go) - Embeddable vector database for Go with Chroma-like interface and zero third-party dependencies. In-memory with optional persistence. | ||
| - [fun](https://gitlab.com/tozd/go/fun) - The simplest but powerful way to use large language models (LLMs) in Go. | ||
| - [Aetheris](https://github.com/Colin4k1024/Aetheris) - AI Agent execution runtime with event sourcing, checkpoint recovery, and At-Most-Once execution guarantee. Written in Go. |
There was a problem hiding this comment.
Bug: The new entry "Aetheris" in README.md is not in the correct alphabetical position, which will cause the TestAlpha CI check to fail.
Severity: MEDIUM
Suggested Fix
In README.md, move the [Aetheris] entry to the beginning of its list section, before [chromem-go], to ensure the list remains in alphabetical order and passes the CI checks.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.
Location: README.md#L225
Potential issue: The addition of the "Aetheris" entry to the list in `README.md`
violates the alphabetical ordering requirement for that section. A test function,
`TestAlpha` in `main_test.go`, validates this ordering by fetching all list items,
converting them to lowercase, and comparing the result to a sorted version of the list.
Because "aetheris" is placed after "fun" instead of at the beginning of the list, the
check `item != sorted[k]` will evaluate to true, causing the test to fail and block the
continuous integration pipeline.
Aetheris
A library for developing AI agents based on the CoRAG(Chunk-Omni Retrieval-Augmented Generation) pattern. It supports multiple LLM providers, vector databases, and web search engines.
Added to list: 2026-04-14
Forge link: https://github.com/Colin4k1024/Aetheris
pkg.go.dev: https://pkg.go.dev/github.com/Colin4k1024/Aetheris@v2.5.1
goreportcard.com: https://goreportcard.com/report/github.com/Colin4k1024/Aetheris
Coverage: https://app.codecov.io/gh/Colin4k1024/Aetheris