ag-ui: Skill for Claude Code

.github/skills/agui-dotnet-feature-workflow/SKILL.md

agui-dotnet-feature-workflow is a skill for Claude Code, Codex from ag-ui-protocol/ag-ui. It costs 266 tokens per session (2,167 once invoked), scanned A, original, MIT.

A workflow guide for implementing changes in the AG-UI .NET SDK. It coordinates the code, tests, documentation, API records, and cross-language compatibility work a change may require.

In plain words
What is it for?
Use it when planning or starting a non-trivial SDK feature or change, especially one involving the server, client, wire format, or TypeScript SDK.
Why use it?
A feature can appear complete while missing related tests, documentation, public API updates, or compatibility checks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

This is ag-ui-protocol/ag-ui's own configuration. It tells Claude Code and Codex how to work on ag-ui itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ag-ui configures →

About the project

AG-UI is an event-based protocol that lets AI agent backends communicate with user-facing applications. It standardizes agent events and inputs while supporting transports such as server-sent events, WebSockets, and webhooks. The catalogue add-ons help developers build integrations and applications around the protocol.

ag-ui-protocol/ag-ui · 15,752 stars · on GitHub · ag-ui.com

Reuse

Borrowing it

Nothing to install: this file belongs to ag-ui-protocol/ag-ui. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ag-ui-protocol/ag-ui/main/.github/skills/agui-dotnet-feature-workflow/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ag-ui-protocol/ag-ui

Made for: Claude Code, Codex.

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 agui-dotnet-feature-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/ag-ui-protocol/ag-ui/agui-dotnet-feature-workflow.svg)](https://agentmods.dev/skills/ag-ui-protocol/ag-ui/agui-dotnet-feature-workflow)
Your own site
<a href="https://agentmods.dev/skills/ag-ui-protocol/ag-ui/agui-dotnet-feature-workflow"><img src="https://agentmods.dev/badge/skills/ag-ui-protocol/ag-ui/agui-dotnet-feature-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 266 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,167 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00266 $0.02167
Opus 5 $0.00133 $0.01084
Sonnet 5 $0.00053 $0.00433
Haiku 4.5 $0.00027 $0.00217

Measured 8d ago against content hash 492c52b9aaa7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

agui-dotnet-feature-workflow 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 8d 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.

.github/skills/agui-dotnet-feature-workflow/SKILL.md · 155 lines

How it starts

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

AG-UI .NET SDK — Feature Workflow (Orchestrator)

This is the hub skill. Given a request to build or change a feature in the AG-UI .NET SDK (sdks/dotnet/), it lays out the correct end-to-end order and routes the depth of each step to a focused sibling skill. It does not duplicate their content.

The SDK has a multi-artifact definition of done. An agent working ad hoc forgets artifacts — most often cross-language parity, docs, AGENTS.md/docs/architecture.md sync, and PublicAPI.Unshipped.txt. Use this skill to avoid that.

Package map

sdks/dotnet/src/:

Package Responsibility
AGUI.Abstractions Wire types: events, messages, tools, capabilities, AGUIJsonSerializerContext
AGUI.Formatting JSON formatter + SSE encode/decode
AGUI.Protobuf Protobuf encoding of the protocol
AGUI.Client AGUIChatClient (IChatClient) + transport negotiation
AGUI.Server Hosting-agnostic agent-side conversion (ChatResponseUpdate → events)

ASP.NET hosting glue lives in samples/AGUI.Samples.Shared (not a src/ package). sdks/dotnet/AGENTS.md and docs/architecture.md are the canonical description of the layout and conventions (kept current via agui-dotnet-agents-sync); AGUI.slnx is the ground truth if you need to re-derive the package list.

Build & test commands

# from sdks/dotnet/
dotnet build sdks/dotnet/AGUI.slnx        # whole solution
dotnet test  tests/AGUI.Abstractions.UnitTests/   # per-project, fast feedback

Directory.Build.props treats warnings as errors, and PublicApiAnalyzers is on for every src/ project with a PublicAPI.Shipped.txt. The build fails if you skip the AOT serialization wiring or forget PublicAPI.Unshipped.txt — these are not optional polish steps, they are enforced.

Definition of done (feature checklist)

  • Wire contract understood (matched against TS/Python reference if wire-affecting)
  • Type/behavior implemented in the right package (see map)
  • AOT serialization wired ([JsonSerializable] in AGUIJsonSerializerContext, converter case, [JsonPropertyName])
  • Client/server mapping updated (AGUI.Client event→update and/or AGUI.Server update→event)
  • Unit tests (serialization round-trip + behavior)
  • Integration tests (full pipeline) if it crosses the HTTP/SSE boundary
  • Cross-language parity tests if wire-affecting
  • PublicAPI.Unshipped.txt updated for every changed public member
  • Docs updated (docs.ag-ui.com / SDK docs) if user-facing
  • AGENTS.md / docs/architecture.md synced if structure/recipe changed
  • dotnet build sdks/dotnet/AGUI.slnx and relevant dotnet test projects green

Read the full file on GitHub · 155 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. 8d ago First seen · 155 lines · 266 tokens per session scan A 492c52b9aaa7

Subscribe to this mod's changes

agui-dotnet-feature-workflow is a skill published in the GitHub repository ag-ui-protocol/ag-ui (15,752 stars, last pushed yesterday), licensed MIT. It adds 266 tokens to every session and 2,167 once invoked, about $0.0013 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.