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 CrestApps/CrestApps.AgentSkills --skill orchardcore-formsgit 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-forms)<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-forms"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-forms.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.00110 | $0.00971 |
| Opus 5 | $0.00055 | $0.00485 |
| Sonnet 5 | $0.00022 | $0.00194 |
| Haiku 4.5 | $0.00011 | $0.00097 |
Grade A, and why
orchardcore-forms 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 5d 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 — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Orchard Core Forms
Enable OrchardCore.Forms and use its widget types inside a FlowPart.
Form contains FormElementPart, FormPart, and FlowPart. Input,
Select, and TextArea each contain FormInputElementPart,
FormElementPart, FormElementLabelPart, their specific element part,
FormElementValidationPart, and FormInputElementVisibilityPart.
| Part | Current responsibility |
|---|---|
FormPart |
Action, Method, WorkflowTypeId, EncType, anti-forgery, and form-location behavior |
FormElementPart |
Element Id |
FormInputElementPart |
Submitted field Name |
InputPart |
Input Type, DefaultValue, and Placeholder |
SelectPart |
Options, DefaultValue, and Editor |
The Form wrapper emits an anti-forgery token when enabled and, by default,
the __RequestOriginatedFrom workflow input used by HTTP workflow redirects.
Enable Forms
{
"steps": [
{
"name": "Feature",
"enable": [
"OrchardCore.Forms",
"OrchardCore.Flows",
"OrchardCore.Widgets",
"OrchardCore.Workflows",
"OrchardCore.Workflows.Http"
]
}
]
}
Form Element Content
SelectPart.Options is an array of SelectOption objects, not newline text:
{
"ContentType": "Select",
"FormInputElementPart": {
"Name": "ContactReason"
},
"FormElementPart": {
"Id": "contact-reason"
},
"SelectPart": {
"Editor": "Dropdown",
"DefaultValue": "support",
"Options": [
{
"Text": "Technical support",
"Value": "support"
},
{
"Text": "Sales",
"Value": "sales"
}
]
}
}
Workflow Submission and Validation
Set the form action to a workflow HTTP endpoint and start the workflow with
the real HttpRequestEvent; FormSubmissionEvent is not an Orchard Core
activity. FormPart.WorkflowTypeId exists on the model, but the built-in
editor does not render an input for it; set it through code or imported data
when needed. It does not replace an HTTP event route.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 5d ago First seen · 122 lines · 110 tokens per session scan A 0e05a84b0858
orchardcore-forms is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 10d ago), licensed MIT. It adds 110 tokens to every session and 971 once invoked, about $0.0006 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
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…
wpf
Build and modernize WPF applications on .NET with correct XAML, data binding, commands, threading, styling, and Windows desktop migration decisions. USE FOR: working on WPF UI, MVVM, binding, commands, or desktop modernization; migrating WPF from .NET Framework to .NET; integrating newer Windows capabilities into a…
sharpconsoleui
Use SharpConsoleUI to build full terminal (TUI) applications in .NET — equally suited to full-screen single-window apps and multi-window desktops with overlapping draggable windows — using a compositor, a DOM layout engine, and 40+ reactive controls (data tables, tree views, forms, an embedded PTY terminal, markdown…
blazor
Build and review Blazor applications across server, WebAssembly, web app, and hybrid scenarios with correct component design, state flow, rendering, and hosting choices. USE FOR: building interactive web UIs with C# instead of JavaScript; choosing between Server, WebAssembly, or Auto render modes; designing component…
winui
Build or review WinUI 3 applications with the Windows App SDK, including MVVM patterns, packaging decisions, navigation, theming, windowing, and interop boundaries with other .NET stacks. USE FOR: building native modern Windows desktop UI on WinUI 3; integrating Windows App SDK features into a .NET app; deciding…
biome
Use Biome in .NET repositories that ship Node-based frontend assets and want a fast combined formatter-linter-import organizer for JavaScript, TypeScript, CSS, JSON, GraphQL, or HTML. USE FOR: biome.json or @biomejs/biome setup; fast frontend formatting and linting; replacing overlapping frontend style tools…