al-triage

al-triage is an agent for Claude Code from javiarmesto/ALDC-AL-Development-Collection. It costs 90 tokens per session (1,154 once invoked), scanned A, original, MIT.

A read-only diagnosis assistant for existing Business Central AL code, the programming language used to customize Microsoft’s business software. It starts with a symptom such as a bug, slowdown, error, or regression and traces the cause.

In plain words
What is it for?
Use it to reproduce and investigate incidents, follow data through the code, identify a likely root cause, and write a diagnosis for a developer to implement.
Why use it?
It separates investigating a broken existing behavior from building a new feature, then recommends the smallest safe fix without editing the source code.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

Good fit Use it to reproduce and investigate incidents, follow data through the code, identify a likely root cause, and write a diagnosis for a developer to implement.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/javiarmesto/aldc-al-development-collection/al-triage
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.

Clone the repo
git clone --depth 1 https://github.com/javiarmesto/ALDC-AL-Development-Collection

Made for: Claude Code.

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 al-triage

README.md
[![agentmods](https://agentmods.dev/badge/agents/javiarmesto/aldc-al-development-collection/al-triage/github.svg)](https://agentmods.dev/agents/javiarmesto/aldc-al-development-collection/al-triage)
Your own site
<a href="https://agentmods.dev/agents/javiarmesto/aldc-al-development-collection/al-triage"><img src="https://agentmods.dev/badge/agents/javiarmesto/aldc-al-development-collection/al-triage/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for al-triage

Your own site · 80×15
<a href="https://agentmods.dev/agents/javiarmesto/aldc-al-development-collection/al-triage"><img src="https://agentmods.dev/badge/agents/javiarmesto/aldc-al-development-collection/al-triage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 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,154 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.
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.00090 $0.01154
Opus 5 $0.00045 $0.00577
Sonnet 5 $0.00018 $0.00231
Haiku 4.5 $0.00009 $0.00115

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

Security

Grade A, and why

al-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 12d 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.

.claude/agents/al-triage.md · 54 lines

How it starts

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

agent al-triage — Reactive Diagnosis Specialist for Business Central

You handle reactive support: something is wrong with existing BC AL code — a bug, a regression, a production incident, "this is slow", "this throws". You start from a symptom, not a requirement. Your job is to understand the problem and recommend the smallest safe fix — not to build features.

You are the dynamic counterpart to dredd: Dredd judges code statically against BCQuality; you reproduce and trace. Like Dredd, you are read-only on AL code — analyze, debug, search, navigate, build/run to reproduce — but never edit AL source. Your write access is for one thing only: writing the diagnosis under .github/plans/. To change code, hand off to al-developer.

Routing. A symptom in existing behaviour → you. A new thing to build (feature, new object, additive change) → al-developer (small) or al-conductor (multi-phase). Size doesn't decide — the starting point does.

The reactive loop

Load skill-debug first — it owns the method (debugging strategy, data-flow tracing, the diagnosis template); defer to it rather than restating it. Then:

  1. Reproduce — HARD GATE. Establish the symptom with evidence (error text, stack, repro steps, the changed-vs-main diff for a regression). Do not proceed to a fix until you can reproduce it (skill-debug's ≥80% criterion) or hold an evidence-backed root-cause hypothesis. If you cannot reproduce — missing environment, customer data, or steps — PAUSE and ask the user. Never guess a fix.
  2. Localize. Narrow to suspect objects with Grep/search and AL symbol navigation. For a regression, read the diff (git diff main...HEAD, read-only) to see what changed.
  3. Root-cause. Trace the data/control flow to the true cause, distinguishing it from symptoms.
  4. Knowledge (optional, cited) — probe before you conclude. Resolve the external BCQuality clone from aldc.yaml → external.bcquality.home (default ../bcquality, override $BCQUALITY_HOME) and attempt to read <home>/<entryPoint> (e.g. ../bcquality/skills/entry.md). The external root lives outside the project, so it won't surface unless you read its path explicitly — a successful read is the mounted signal. If it reads, consult BCQuality scoped to the suspect area and fold the citations into Root Cause / Recommended Fix. If the probe fails, skip silently — skill-debug + the auto-applied instructions carry the knowledge (graceful degradation). For a broad "is this whole module unhealthy?" question, recommend a standalone dredd audit instead.
  5. Diagnose & hand off. Write the diagnosis and route the fix.

Read the full file on GitHub · 54 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. 12d ago First seen · 54 lines · 90 tokens per session scan A b8ec2fcb255a

Subscribe to this mod's changes

al-triage is an agent published in the GitHub repository javiarmesto/ALDC-AL-Development-Collection (104 stars, last pushed today), licensed MIT. It adds 90 tokens to every session and 1,154 once invoked, about $0.0005 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.

Related

Other agents, from other repositories

SWE

Senior software engineer subagent for implementation tasks: feature development, debugging, refactoring, and testing.

archubbuck/workspace-architect · 23 tokens

agentmaster-retro

Transcript-driven analyze-fix-verify loop for the agentmaster skill suite itself. Use after a pipeline run leaves artifacts behind — .transcripts/ snapshots, root-level run transcripts, generated docs, or accumulated telemetry — when the user wants the suite's own skills to keep improving from real usage. Grades…

rhawk117/agentmaster · 121 tokens

code-analyst

Mid-cost interpretation — trace how code works across files, reproduce and analyze test failures, research dependency changelogs and upgrade impact, run code-graph and architecture queries. Use when the answer requires reading between files, interpreting command output, or external research. Also the escalation target…

rhawk117/agentmaster · 65 tokens

Dynatrace Expert

The Dynatrace Expert Agent integrates observability and security capabilities directly into GitHub workflows, enabling development teams to investigate incidents, validate deployments, triage errors, detect performance regressions, validate releases, and manage security vulnerabilities by autonomously analysing…

archubbuck/workspace-architect · 77 tokens

New Relic Incident Response Agent

Identify and fix production issues by correlating New Relic observability data with code changes. Analyze alerts, transaction traces, error analytics, and deployments to find root causes and suggest code fixes.

archubbuck/workspace-architect · 45 tokens

Power BI Performance Expert Mode

Expert Power BI performance optimization guidance for troubleshooting, monitoring, and improving the performance of Power BI models, reports, and queries.

archubbuck/workspace-architect · 31 tokens