sint-protocol AGENTS.md

Repository instructions for SINT Protocol, a TypeScript monorepo—a repository containing multiple related packages—that controls and records AI-agent actions on robots, drones, and other physical systems.

In plain words
What is it for?
Orienting an AI agent in the repository and helping it change code without bypassing authorization or altering recorded evidence.
Why use it?
It documents the system's purpose and strict rules for authorization, permission limits, audit records, and request identifiers.

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/pshkv/sint-protocol/agents-md
Clone the repo
git clone --depth 1 https://github.com/pshkv/sint-protocol

Made for: Codex, OpenCode.

Per session 2,045 This file is loaded in full into every session.
When invoked 2,045 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 95% copy Near-identical to another mod 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.02045 $0.02045
Opus 5 $0.01022 $0.01022
Sonnet 5 $0.00409 $0.00409
Haiku 4.5 $0.00204 $0.00204

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

Security

Grade A, and why

sint-protocol 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 3d 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.

Origin

This is a copy

95% identical to sint-protocol AGENTS.md — 8 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

AGENTS.md · 145 lines

How it starts

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

SINT Protocol — AI Agent Guide

This file is optimized for AI agents (LLMs) working in this codebase. For human contributor guidance, see CONTRIBUTING.md. For implementation details and pitfalls, see CLAUDE.md.

What This Repo Does

SINT Protocol is a security enforcement layer that sits between AI agents and physical systems (robots, PLCs, drones, tool calls), ensuring every action is authorized via capability tokens, constrained to safe physical limits, and recorded in a tamper-evident audit log. It is a pnpm monorepo with 30 workspace members built on TypeScript 5.7 + Node.js 22.

Key Invariants (Never Violate These)

  1. Every authorization decision flows through PolicyGateway.intercept() — no bridge or route handler makes authorization decisions directly
  2. Tokens are attenuation-only: scope(child) ⊆ scope(parent) — permissions only narrow, never expand (invariant I-T1)
  3. EvidenceLedger is append-only and SHA-256 hash-chained — never modify or delete emitted events (invariant I-G3)
  4. UUID v7 is required for requestIdcrypto.randomUUID() gives v4 and WILL fail schema validation. Use generateUUIDv7() from @sint/gate-capability-tokens
  5. Physical constraints live in the token, not in config files — velocity, force, geofence are enforced cryptographically
  6. E-stop is unconditional — estop event transitions any non-terminal DFA state to ROLLEDBACK, bypassing all token checks (invariant I-G2)

Quick Orientation

Package Dependency Graph

@sint/core
  ↓
@sint/gate-capability-tokens   @sint/persistence
  ↓                               ↓
@sint/gate-evidence-ledger
  ↓
@sint/gate-policy-gateway
  ↓
@sint/bridge-*   @sint/engine-*   @sint/avatar
  ↓
@sint/gateway-server   @sint/mcp
  ↓
@sint/conformance-tests   @sint/dashboard

Workspace Layout

packages/core/              → Shared types, Zod schemas, tier constants, DFA states
packages/capability-tokens/ → Ed25519 token issuance, delegation, revocation
packages/policy-gateway/    → THE choke point: tiers, constraints, rate limiting, M-of-N
packages/evidence-ledger/   → SHA-256 hash-chained append-only audit log
packages/bridge-*/          → Protocol adapters (MCP, ROS2, A2A, IoT, OPC-UA, MAVLink, ...)
packages/engine-*/          → AI execution layer (System1, System2, HAL, capsule sandbox)
packages/avatar/            → Behavioral identity profiles, CSML-driven tier escalation
packages/persistence/       → Storage interfaces + in-memory implementations
packages/persistence-postgres/ → PostgreSQL adapters
packages/client/            → TypeScript HTTP client for the gateway API
packages/conformance-tests/ → Security regression suite (must pass on every PR)
apps/gateway-server/        → Hono HTTP API (port 3100)
apps/sint-mcp/              → Security-first multi-MCP proxy
apps/dashboard/             → Real-time approval dashboard
sdks/typescript/            → Zero-dependency public SDK
capsules/navigation/        → Reference capsule: waypoint navigation
capsules/inspection/        → Reference capsule: visual anomaly detection
capsules/pick-and-place/    → Reference capsule: gripper control

Read the full file on GitHub · 145 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. 3d ago First seen · 145 lines · 2,045 tokens per session scan A abd8a952361e

Subscribe to this mod's changes

sint-protocol AGENTS.md is an instructions file published in the GitHub repository pshkv/sint-protocol (9 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 2,045 tokens to every session, about $0.0102 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to sint-protocol AGENTS.md, differing in 8 lines, and is treated as a copy.

Related

Other instructions, from other repositories