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.
npx agentmods add instructions/strands-rl/strands-sglang/agents-mdgit clone --depth 1 https://github.com/strands-rl/strands-sglangWrote 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.
[](https://agentmods.dev/instructions/strands-rl/strands-sglang/agents-md)<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>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.
| Model | Per session | Once 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 |
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.
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.
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.
- 6d ago First seen · 191 lines · 3,555 tokens per session scan A 5f7f6c0db861
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.
Other instructions, from other repositories
UniRL AGENTS.md
AGENTS.md instructions for Tencent-Hunyuan/UniRL, a project described as: UniRL is a Framework for Unified Multimodal Model Reinforcement Learning.
GPT-RAG release.instructions.md
Instructions for Azure/GPT-RAG, a project described as: Enterprise-grade accelerator for agentic RAG on Azure. Built on Microsoft Foundry with Foundry IQ as the default retrieval backend, Microsoft Agent Framework orchestration, Zero-Trust architecture and IaC.
rag-code-mcp copilot-instructions.md
Instructions for doITmagic/rag-code-mcp, covering copilot instructions - ragcode mcp, ⚖️ the golden rule, project overview, architecture & patterns and developer workflows.
ZipAI CLAUDE.md
Claude Code instructions for nickdesi/ZipAI, covering claude.md — zipai: ultra-dense token optimizer, rules, 1. zero filler, 2. ambiguity and 3. prompt caching.
TreeSkill CLAUDE.md
Instructions for JimmyMa99/TreeSkill, covering claude.md, project overview, commands, install and run tests.
tshark-mcp copilot-instructions.md
Copilot instructions for ouonet/tshark-mcp: Project: MCP server for using TShark to analyze network packets. Language: Python.