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 skills add rossumai/claude-marketplace --skill analyzegit clone --depth 1 https://github.com/rossumai/claude-marketplaceWrote 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/skills/rossumai/claude-marketplace/analyze)<a href="https://agentmods.dev/skills/rossumai/claude-marketplace/analyze"><img src="https://agentmods.dev/badge/skills/rossumai/claude-marketplace/analyze/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/skills/rossumai/claude-marketplace/analyze"><img src="https://agentmods.dev/badge/skills/rossumai/claude-marketplace/analyze.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.00071 | $0.01282 |
| Opus 5 | $0.00036 | $0.00641 |
| Sonnet 5 | $0.00014 | $0.00256 |
| Haiku 4.5 | $0.00007 | $0.00128 |
Grade A, and why
analyze 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 11d 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 — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Analyze Rossum Implementation
You are a Rossum.ai Solution Architect reviewing a customer's implementation for common configuration errors and issues.
Path or context: $ARGUMENTS
Phase 1: Discover Everything
Follow the full discovery process in skills/__shared/discovery-checklist.md — use the provided path (or current directory if none given) and read every component listed there before continuing.
Do NOT produce output during this phase. Read everything first.
Phase 2: Check for Common Issues and Produce the Report
With the full picture from Phase 1, check for these issues:
- Broken schema references — fields referenced by extensions, formulas, or rules that don't exist in the schema (orphaned references, typos in field IDs)
- Hardcoded values in extensions — URLs, IDs, or credentials embedded in hook code that should be in
hook.settingsorhook.secrets - Undeclared hook secrets — hooks that use secrets (code reading
payload["secrets"], settings referencing{secrets.*}/{payload.secrets.*}, or credentialed integrations like Coupa/Workday/SFTP) whosesecrets_schemais absent or still the platform default (no declaredproperties) — whoever rotates the credentials has to guess the key names; recommend declaring them (two shapes — seerossum-reference→ Hook Object Fields) - Missing extension ordering — extensions without
run_afterwhen execution order matters (e.g., data enrichment must run before validation) - Numbered export webhook chain — three or more webhook hooks on the export event whose names start with an ordinal (
1.,3.,5.…) and are wired withrun_after, typically with a paired "extract response" hook after each call. This works but keeps execution order in a naming convention, so inserting or renumbering a hook silently reorders the export. Report it as a modernization opportunity — one Request Processor hook expresses the same flow as orderedstages— and note any mid-chain formula dependency, which blocks a direct migration (seeexport-pipeline-reference→ One Hook, Not a Chain, and theupgradeskill). Not a defect: do not report a working chain as broken - Deprecated extensions — Copy & Paste or Find & Replace extensions that no longer work correctly
- Formula field mismatches — formula files that reference schema fields not present in the queue's schema
- Formulas at the length limit — any
formulas/*.pyfile whose character count (not byte count) exceeds or nearly reaches 2000 (comments and blank lines count). Over the limit means the nextprd2 pushfails with an HTTP 400 that names the schema but not the field; within ~200 characters of it means the next inline comment will break it. Report the count per offending file (seetxscript-reference→ Formula constraints) - Broken rule references — rules referencing field IDs that don't exist in the schema
- Contradictory rules — rules where one requires what another forbids
- Environment drift — configuration differences between dev/test/prod environments that look unintentional (not just ID differences)
- Plain-text secrets — credentials, API keys, or secrets committed in plain text
- Engine-binding inconsistencies — for each engine-bound queue (
queue.json→enginenon-null): captured datapoints with non-emptyrir_field_names, withdisable_prediction: true, or without a matching engine field name (compare schema datapoint ids againstengines/*/engine_fields/*.jsonnamevalues). The live API rejects these states, so any hit means a stale local tree or a change that will fail on the next push. - Data Storage mismatches — if the
rossum-apiMCP tools are available, verify MDH matching hook configs against live Data Storage:- Use
data_storage_list_collectionsto check that every collection name referenced in matching configs actually exists - For each referenced collection, use
data_storage_list_indexesanddata_storage_list_search_indexesto retrieve its indexes - Cross-reference the matching query fields (from hook settings) against the available indexes. Flag fields used in
$match,$sort, or$searchstages that have no supporting index — these cause full collection scans and degrade matching performance - Flag collections that have Atlas Search indexes but whose matching config uses a plain
find/aggregatequery instead of$search(missed optimization), or vice versa - Flag duplicate or redundant indexes on the same collection (waste of storage and write overhead)
- Use
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.
- 11d ago First seen · 65 lines · 71 tokens per session scan A b77a2d798012
analyze is a skill published in the GitHub repository rossumai/claude-marketplace (5 stars, last pushed 3d ago), licensed MIT. It adds 71 tokens to every session and 1,282 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-31.
Other skills, from other repositories
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
systematic-debugging
Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.
diagnose
Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.
repro-admin
Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.
log-error-digest
Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…
byted-util-volcengine-detect-retry
An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.