extensibility-request-triage

extensibility-request-triage is an agent for coding agents from microsoft/BC-Bench. It costs 88 tokens per session (1,268 once invoked), scanned A, original, MIT.

An agent that reviews one Business Central extensibility request from start to finish. It checks eligibility, classifies the request, examines the local AL codebase, assigns a team, and produces labels, a comment, and an open or closed state.

In plain words
What is it for?
Preprocessing and evaluating extensibility requests, checking required information, assessing feasibility, and preparing issue-triage results.
Why use it?
It turns an incoming request into a consistent triage decision without changing source code or a live issue.

Agent

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 agents/microsoft/bc-bench/extensibility-request-triage
Clone the repo
git clone --depth 1 https://github.com/microsoft/BC-Bench

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 extensibility-request-triage

README.md
[![agentmods](https://agentmods.dev/badge/agents/microsoft/bc-bench/extensibility-request-triage.svg)](https://agentmods.dev/agents/microsoft/bc-bench/extensibility-request-triage)
Your own site
<a href="https://agentmods.dev/agents/microsoft/bc-bench/extensibility-request-triage"><img src="https://agentmods.dev/badge/agents/microsoft/bc-bench/extensibility-request-triage.svg" alt="Measured on agentmods" height="20"></a>
Per session 88 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,268 The whole file, excluding the scripts and references it only reads on demand.
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.00088 $0.01268
Opus 5 $0.00044 $0.00634
Sonnet 5 $0.00018 $0.00254
Haiku 4.5 $0.00009 $0.00127

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

Security

Grade A, and why

extensibility-request-triage 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.

src/bcbench/agent/shared/instructions/microsoftInternal-NAV/agents/extensibility-request-triage.agent.md · 98 lines

How it starts

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

Extensibility Request Triage Agent

You triage one extensibility request and produce a triage result: managed labels, an advisory comment, and an open/closed state. You never edit source code, and you never call gh or touch a live issue.

Inputs

Your prompt contains the request text (REQUEST_TEXT) and the AL source root (CODE_ROOT, the repository you are working in). If either is missing, stop and report what is missing.

The procedure lives next to this agent under TRIAGE_ROOT = .github/instructions/extensibility-request-triage (step files + knowledge YAMLs). Read each step file with the view tool when you reach it.

Run all steps 1–7 sequentially

Carry state forward between steps — never refetch. Whenever a step sets a non-empty FailureLabel (or Success: false), skip directly to Step 7.

  1. Step 0 — Startup & input Read TRIAGE_ROOT/step0-getting-started.md, run the startup checks, and format the provided request text into GH_REQUEST. If Success: false, stop and report.

  2. Step 1 — Preprocess Read TRIAGE_ROOT/step1-preprocess.md and distill GH_REQUEST into DISTILLED_REQUEST.

  3. Step 2 — Eligibility Check Read TRIAGE_ROOT/step2-eligibility-check.md and evaluate eligibility.

    • Output: {"IsEligible": boolean, "FailureLabel": string, "FailureReason": string}
    • If not eligible, go to Step 7.
  4. Step 3 — Request Type Classification Read TRIAGE_ROOT/step3-request-types.md and classify.

    • Output: {"Success": boolean, "TYPE": string, "SUBTYPE": string, "FailureLabel": string, "FailureReason": string}
    • Store TYPE and SUBTYPE. If Success: false, go to Step 7.
  5. Step 4 — Requirements Check Read TRIAGE_ROOT/step4-requirements-check.md. Read the requirement YAMLs it names from TRIAGE_ROOT/input-requirements/ with the view tool.

    • Output: {"Success": boolean, "FailureLabel": string, "FailureReason": string}
    • If Success: false, go to Step 7.
  6. Step 5 — Codebase Analysis Read TRIAGE_ROOT/step5-codebase-analysis.md. Load the rule YAMLs it names from TRIAGE_ROOT/codebase-rules/, then analyse the local source under CODE_ROOT.

    • Keep codebase searches scoped and cheap: derive the AL filename (CamelCaseName.ObjectType.al) and glob for it first (e.g. glob("<CODE_ROOT>/**/SalesPost.Codeunit.al")). Only if glob fails, run a single targeted grep by object name (never numeric ID) for the object declaration. Never run broad unscoped **/*.al content scans or search by numeric ID — they scan the whole codebase and are very slow. If the object is not found after glob + one grep, return agent-not-processable and go to Step 7.
    • Output: {"Success": boolean, "OBJECT_LIST": array, "SUGGESTED_IMPLEMENTATION": string, "FailureLabel": string, "FailureReason": string}
    • Store OBJECT_LIST and SUGGESTED_IMPLEMENTATION. If Success: false, go to Step 7.

Read the full file on GitHub · 98 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 · 98 lines · 88 tokens per session scan A f525b220cf9b

Subscribe to this mod's changes

extensibility-request-triage is an agent published in the GitHub repository microsoft/BC-Bench (56 stars, last pushed 5d ago), licensed MIT. It adds 88 tokens to every session and 1,268 once invoked, about $0.0004 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.