saorsa-core AGENTS.md

saorsa-core AGENTS.md is an instructions file for Codex, OpenCode from WithAutonomi/saorsa-core. It costs 1,145 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for Saorsa Core, a Rust component that helps discover peers and records whether they reliably provide requested data.

In plain words
What is it for?
Use them when changing the distributed peer directory, updating trust scores after successful or failed data fetches, or running Rust builds, tests, and lint checks.
Why use it?
They clarify that peer discovery and trust scoring belong here, while user data storage belongs in another component.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/withautonomi/saorsa-core/agents-md
Clone the repo
git clone --depth 1 https://github.com/WithAutonomi/saorsa-core

Made for: Codex, OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for saorsa-core AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/withautonomi/saorsa-core/agents-md.svg)](https://agentmods.dev/instructions/withautonomi/saorsa-core/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/withautonomi/saorsa-core/agents-md"><img src="https://agentmods.dev/badge/instructions/withautonomi/saorsa-core/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,145 This file is loaded in full into every session.
When invoked 1,145 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01145 $0.01145
Opus 5 $0.00573 $0.00573
Sonnet 5 $0.00229 $0.00229
Haiku 4.5 $0.00114 $0.00114

Measured 5d ago against content hash 4a6e786f4bac, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

saorsa-core AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 95 lines

How it starts

The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent Guidelines for Saorsa Core

DHT Phonebook + Trust Signals (Current Direction)

Core Responsibilities

  • DHT is a peer phonebook only (peer records, routing, discovery).
  • User data storage lives in saorsa-node via send_message-style APIs.
  • Trust remains in saorsa-core: saorsa-node reports data availability outcomes so EigenTrust can downscore nodes that fail to serve expected data.

Trust Signal Hook (saorsa-node → saorsa-core)

use saorsa_core::adaptive::{EigenTrustEngine, NodeStatisticsUpdate};

// After a data fetch attempt in saorsa-node:
trust_engine
    .update_node_stats(&peer_id, NodeStatisticsUpdate::CorrectResponse)
    .await;
// or on failure:
trust_engine
    .update_node_stats(&peer_id, NodeStatisticsUpdate::FailedResponse)
    .await;

Build/Test Commands

  • Build: cargo build --all-features (release: cargo build --release)
  • Test All: cargo test --all-features (doc tests: cargo test --doc)
  • Single Test: cargo test test_function_name or cargo test --test integration_test_name
  • Lint: cargo clippy --all-features -- -D clippy::panic -D clippy::unwrap_used -D clippy::expect_used
  • Format: cargo fmt --all -- --check (apply: cargo fmt --all)
  • Local CI: ./scripts/local_ci.sh (runs fmt, clippy, build, tests safely)

Code Style Guidelines

Error Handling (ZERO PANICS in production)

  • NEVER use: .unwrap(), .expect(), panic!() in library/production code
  • Use instead: ? operator, .ok_or(), .context() from anyhow
  • Tests OK: .unwrap()/.expect() allowed in #[cfg(test)] blocks
  • Error types: P2PError enum with structured variants, thiserror for derives

Imports & Dependencies

  • Core async: tokio, futures, async-trait
  • Serialization: serde with derive features
  • Error handling: anyhow, thiserror
  • Logging: tracing (never println! in production)
  • Crypto: saorsa-pqc (primary), saorsa-transport (QUIC transport)

Read the full file on GitHub · 95 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 95 lines · 1,145 tokens per session scan A 4a6e786f4bac

Subscribe to this mod's changes

saorsa-core AGENTS.md is an instructions file published in the GitHub repository WithAutonomi/saorsa-core (5 stars, last pushed today), licensed Apache-2.0. It adds 1,145 tokens to every session, about $0.0057 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.