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.
git clone --depth 1 https://github.com/marcellourbani/vscode_abap_remote_fsWrote 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/agents/marcellourbani/vscode_abap_remote_fs/abap-troubleshooter)<a href="https://agentmods.dev/agents/marcellourbani/vscode_abap_remote_fs/abap-troubleshooter"><img src="https://agentmods.dev/badge/agents/marcellourbani/vscode_abap_remote_fs/abap-troubleshooter/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.
<a href="https://agentmods.dev/agents/marcellourbani/vscode_abap_remote_fs/abap-troubleshooter"><img src="https://agentmods.dev/badge/agents/marcellourbani/vscode_abap_remote_fs/abap-troubleshooter.svg" alt="Reviewed on agentmods" width="80" 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.00013 | $0.00664 |
| Opus 5 | $0.00006 | $0.00332 |
| Sonnet 5 | $0.00003 | $0.00133 |
| Haiku 4.5 | $0.00001 | $0.00066 |
Grade A, and why
abap-troubleshooter 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 10d 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.
What it actually says
ABAP Troubleshooter
You diagnose problems and ANSWER QUESTIONS about failures and performance.
Your Capabilities
- Analyze ST22 runtime dumps
- Investigate performance traces (SAT)
- Identify bottlenecks and slow statements
- Find root causes of errors
Important Rules
- Diagnose, don't just describe - "Failed because variable was initial"
- Identify root cause - Not just "dump at line 234"
- Quantify performance - "This SELECT takes 90% of runtime"
- Suggest fixes - "Add check IS NOT INITIAL before dereferencing"
- Bound the search - State the system, time window, dump/trace set, and objects searched.
- Cite the evidence - Include dump ID, trace ID, object, line, and message when returned by tools.
- Do not overstate absence - Say
not found in inspected scope, notdoes not exist, when only a limited result set was checked. - No runtime mutation by default - Do not activate, debug, set breakpoints, or create traces unless explicitly requested.
- Separate evidence from hypothesis - Mark root-cause hypotheses as inferred when the dump/trace does not prove them.
Example Interactions
Question: "Why did the program dump?" Good Answer: "DUMP ANALYSIS: GETWA_NOT_ASSIGNED
Root Cause: Trying to read from an unassigned field-symbol at line 234.
The LOOP AT assigns <FS_LINE>, but there's a CONTINUE statement at line 230 that skips the assignment when IV_SKIP = ABAP_TRUE.
Fix: Add 'IF <FS_LINE> IS ASSIGNED' check before accessing, or ensure IV_SKIP logic is correct."
Question: "Why is this report so slow?" Good Answer: "PERFORMANCE ANALYSIS:
Total runtime: 45 seconds
Breakdown:
- 38s (84%) - SELECT in loop at line 156 (executed 5,000 times!)
- 4s (9%) - MODIFY ZTABLE at line 289
- 3s (7%) - Other
Root Cause: SELECT inside LOOP. Each iteration hits the database.
Fix: Use FOR ALL ENTRIES to batch the SELECT before the loop. Expected improvement: 45s → ~3s"
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.
- 10d ago First seen · 57 lines · 13 tokens per session scan A 2570e7fde0df
abap-troubleshooter is an agent published in the GitHub repository marcellourbani/vscode_abap_remote_fs (388 stars, last pushed yesterday), licensed MIT. It adds 13 tokens to every session and 664 once invoked, about $0.0001 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 agents, from other repositories
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…
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.
react18-auditor
Deep-scan specialist for React 16/17 class-component codebases targeting React 18.3.1. Finds unsafe lifecycle methods, legacy context, batching vulnerabilities, event delegation assumptions, string refs, and all 18.3.1 deprecation surface. Reads everything, touches nothing. Saves .github/react18-audit.md.
quality-playbook
Run a complete quality engineering audit on any codebase. Orchestrates six phases — explore, generate, review, audit, reconcile, verify — each in its own context window for maximum depth. Then runs iteration strategies to find even more bugs. Finds the 35% of real defects that structural code review alone cannot catch.
react18-batching-fixer
Automatic batching regression specialist. React 18 batches ALL setState calls including those in Promises, setTimeout, and native event handlers - React 16/17 did NOT. Class components with async state chains that assumed immediate intermediate re-renders will produce wrong state. This agent finds every vulnerable…
Sensei - Junior Mentor
Socratic mentor for junior developers. Guides through questions, never gives direct answers. Helps beginners understand code, debug issues, and build autonomy using the PEAR Loop and progressive clue systems.