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 agentmods add skills/crestapps/crestapps.agentskills/orchardcore-reportsnpx skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-reportsgit clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkillsWrote 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/crestapps/crestapps.agentskills/orchardcore-reports)<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-reports"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-reports.svg" alt="Measured on agentmods" 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 | $0.00086 | $0.00893 |
| Opus 5 | $0.00043 | $0.00447 |
| Sonnet 5 | $0.00017 | $0.00179 |
| Haiku 4.5 | $0.00009 | $0.00089 |
Grade A, and why
orchardcore-reports 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 2d 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 — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CrestApps OrchardCore Reports
The Reports module provides a shared admin Reports area and contracts for modules that publish reports. Reports use one filter and rendering model for browser output and exports.
Features and packages
CrestApps.OrchardCore.Reportsenables the framework and admin area.CrestApps.OrchardCore.Reports.OpenXmladds Excel.xlsxexport support.- The Reports feature depends on
CrestApps.OrchardCore.Resources. - CSV export is provided by the base Reports feature.
Enable the features with a root-wrapped recipe:
{
"steps": [
{
"name": "Feature",
"enable": [
"CrestApps.OrchardCore.Reports",
"CrestApps.OrchardCore.Reports.OpenXml"
]
}
]
}
Enable the OpenXml add-on only when Excel export is required. When several exporters are available, the admin page groups them under one Export dropdown.
Report contracts
Implement IReport for a report definition. Provide a technical Name, a
display name, a description, a category, a permission, and a RunAsync
implementation that returns a ReportDocument for the supplied
ReportContext.
Register reports as scoped services:
using CrestApps.OrchardCore.Reports;
using Microsoft.Extensions.DependencyInjection;
using OrchardCore.Modules;
namespace MyModule;
public sealed class Startup : StartupBase
{
public override void ConfigureServices(IServiceCollection services)
{
services.AddScoped<IReport, SalesReport>();
}
}
IReport, IReportManager, IReportExportFormat, and
IReportExportManager are in CrestApps.OrchardCore.Reports.
ReportDocument, ReportSection, ReportContext, ReportFilter, and
ReportFormat are in CrestApps.OrchardCore.Reports.Models.
Use ReportSection.ForMetrics, ReportSection.ForTable,
ReportSection.ForBars, and ReportSection.ForChart to compose the document.
Use ReportFormat for consistent number, duration, and percentage formatting.
Charts use ordered labels and one or more numeric datasets in the shared
responsive twelve-column layout.
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.
- 2d ago First seen · 109 lines · 86 tokens per session scan A 83f153a4c3f9
orchardcore-reports is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 7d ago), licensed MIT. It adds 86 tokens to every session and 893 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-09-03.
Other skills, from other repositories
excel-cli
Excel CLI automation skill for Windows workbooks. Use when a coding agent needs token-efficient, scriptable, or unattended Excel automation via excelcli commands. Best for CI/CD, scheduled jobs, batch processing, PowerShell workflows, and bulk workbook edits. Supports Power Query, DAX, PivotTables, Tables, Ranges…
excel-mcp
Excel MCP Server skill for Windows workbook automation. Use when an assistant needs rich MCP tools to create, inspect, modify, format, or analyze Excel files. Supports Power Query (M), Data Model/DAX, PivotTables, Tables, Ranges, Charts, Slicers, formatting, screenshots, VBA macros, connections, and calculation mode.…
npoi
Use when reading/writing Excel (.xls/.xlsx) or Word (.doc/.docx) files in .NET without Microsoft Office — data import/export, report generation, template filling. NPOI: .NET port of Apache POI for Office file I/O in server environments.
reogrid
Use when embedding an Excel-like spreadsheet control in .NET WinForms/WPF applications — formula engine, cell editing, clipboard, undo/redo. ReoGrid: .NET spreadsheet component with NPOI-based Excel read/write.
bilig-workpaper
Use @bilig/workpaper WorkPaper state for workbook formulas, MCP editing, and tool integrations without driving spreadsheet UI.
bilig-xlsx-formula-recalc
Recalculate XLSX formula outputs in Node.js after cell edits without opening Excel, LibreOffice, or browser automation.