strands-sglang AGENTS.md

strands-sglang AGENTS.md is an instructions file for Codex, OpenCode from strands-rl/strands-sglang. It costs 3,555 tokens per session, scanned A, original, Apache-2.0.

Repository instructions for Strands-SGLang, an SGLang provider for the Strands Agents SDK. SGLang runs language models, while the provider supports exact token and probability data used in reinforcement-learning training.

In plain words
What is it for?
Orienting agents in the repository, installing dependencies, running lint checks, checking types, and running unit or integration tests.
Why use it?
It gives coding agents the project's purpose, setup commands, linting rules, and test commands before they make changes.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions CLAUDE.md; mentions AGENTS.md.

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/strands-rl/strands-sglang/agents-md
Clone the repo
git clone --depth 1 https://github.com/strands-rl/strands-sglang

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 strands-sglang AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/strands-rl/strands-sglang/agents-md.svg)](https://agentmods.dev/instructions/strands-rl/strands-sglang/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/strands-rl/strands-sglang/agents-md"><img src="https://agentmods.dev/badge/instructions/strands-rl/strands-sglang/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,555 This file is loaded in full into every session.
When invoked 3,555 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.1 $0.03555 $0.03555
Opus 5 $0.01777 $0.01777
Sonnet 5 $0.00711 $0.00711
Haiku 4.5 $0.00356 $0.00356

Measured 6d ago against content hash 5f7f6c0db861, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

strands-sglang 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 6d 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 · 191 lines

How it starts

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

AGENTS.md

Guidance for coding agents working in this repository. CLAUDE.md is a symlink to this file.

Project Overview

Strands-SGLang is an SGLang model provider for the Strands Agents SDK with Token-In/Token-Out (TITO) support for on-policy agentic reinforcement learning training. It captures exact token IDs and logprobs during generation without retokenization drift, which is critical for accurate gradient computation in RL training.

Commands

Setup

uv sync              # installs the dev group by default
pre-commit install   # hook types come from default_install_hook_types

Linting

pre-commit run --all-files   # what CI's lint job runs; the tools below are a subset
ruff check src/ tests/ examples/
ruff format --check src/ tests/ examples/
mypy src/strands_sglang

Testing

# Unit tests (no server needed)
pytest tests/unit/ -v

# Single test file
pytest tests/unit/test_sglang.py -v

# Single test
pytest tests/unit/test_tool_parser.py::TestHermesToolParser::test_parse_single_tool_call -v

# Unit tests with coverage
pytest tests/unit/ -v --cov=src/strands_sglang --cov-report=html

# Integration tests (requires running SGLang server)
pytest tests/integration/ -v --sglang-base-url=http://localhost:30000
# Or via env var: SGLANG_BASE_URL=http://localhost:30000 pytest tests/integration/

Architecture

The package lives in src/strands_sglang/ with 7 core modules:

SGLangModel (sglang.py) - Main entry point implementing the Strands Model interface. Requires client and tokenizer (keyword-only). Formats messages using HuggingFace chat templates (apply_chat_template()), calls SGLang's /generate endpoint (non-streaming by design for RL throughput), tracks TITO trajectory, and parses tool calls. VLM support is auto-detected server-side via SGLangClient.is_multimodal() (queries /model_info for has_image_understanding, cached after the first call). When multimodal, collect_image_data() derives image_data (base64 data URLs) from the messages on every call and forwards them to SGLang — the server handles image token expansion. Configuration via SGLangConfig TypedDict (sampling_params, return_logprob, return_routed_experts, enable_thinking), which inherits context_window_limit from Strands' BaseModelConfig — set it, or conversation managers and estimate_utilization() fall back to a hardcoded 200k. reset() starts a new trajectory, banking the finished one in rollout_history.

Read the full file on GitHub · 191 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. 6d ago First seen · 191 lines · 3,555 tokens per session scan A 5f7f6c0db861

Subscribe to this mod's changes

strands-sglang AGENTS.md is an instructions file published in the GitHub repository strands-rl/strands-sglang (78 stars, last pushed 5d ago), licensed Apache-2.0. It adds 3,555 tokens to every session, about $0.0178 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-30.