-
Notifications
You must be signed in to change notification settings - Fork 0
audit(2026-05-31): add AGENTS.md operating contract #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # AGENTS.md — operating contract for ainfera-langchain | ||
|
|
||
| Audience: the Ainfera fleet (Aulë and peers) and any agent operating this repo. Read before touching code. | ||
|
|
||
| ## Identity | ||
| - **Adapter** — LangChain + **Ainfera Routing**. One of the public framework adapters (siblings: `ainfera-langgraph`, `ainfera-crewai`, `ainfera-letta`, …). A *customer-integration* surface, not core infra. | ||
| - Inference is routed through Ainfera; every turn carries a signed, hash-chained audit receipt. | ||
| - Source of truth for names: the Naming law (`hizrianraz/obsidian/_ontology/Naming.md`, v1.3). | ||
|
|
||
| ## Naming (law v1.3) — use these exactly | ||
| - Wire model string: **`ainfera-inference`** (canonical). `ainfera-mithril` / `ainfera-auto` are **silent legacy aliases** — accept them, prefer the canonical string in new code/docs. | ||
| - API base `https://api.ainfera.ai/v1` · signup/keys `https://app.ainfera.ai/signup` · agent roster `https://ainfera.ai/agents`. | ||
| - This repo is **not** "Ainfera OS" (a future product) and **not** Valinor (the internal fleet substrate). It is a public adapter. | ||
|
|
||
| ## §0 Premise verification (mandatory) | ||
| Open every change with an explicit PASS/FAIL probe of current state (clean tree? correct remote? `AINFERA_API_KEY` present?) **before** editing. A failed premise → halt and surface; never fix-forward. | ||
|
|
||
| ## Definition of done — curl proof, not PR proof | ||
| Run the README Quickstart end-to-end: **signup → routed inference → audit verify**. | ||
| ```bash | ||
| export AINFERA_API_KEY=ai_infera_... # https://app.ainfera.ai/signup | ||
| ./curl-example.sh # no-deps path (where present) | ||
| # or the framework path in the README Quickstart | ||
| ``` | ||
| Done = a routed completion **and** an audit receipt the `verify` tool accepts. PR opened ≠ shipped. | ||
|
|
||
| ## Secrets — hard rules | ||
| - `AINFERA_API_KEY` (`ai_infera_*`) comes from the environment only. Never commit it; never echo its value. `.env` is gitignored. | ||
| - No service-role / provider keys belong in an adapter repo. | ||
|
|
||
| ## License | ||
| Apache-2.0 (code & adapters). © Ainfera Inc. 2026. | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Export skips audit verify step
Medium Severity
The Definition of done requires signup, routed inference, and audit verify, but the sample commands export
AINFERA_API_KEYbefore./curl-example.sh. With a key already set, that script reuses the key, skips signup, leavesAGENT_IDempty, and never runs the audit verify curl—so the documented sequence cannot satisfy the stated completion criteria.Reviewed by Cursor Bugbot for commit a6ed2a1. Configure here.