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-flow-bagpartgit 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-flow-bagpart)<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-flow-bagpart"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-flow-bagpart/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/crestapps/crestapps.agentskills/orchardcore-flow-bagpart"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-flow-bagpart.svg" alt="Reviewed on agentmods" width="80" 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.00209 | $0.02396 |
| Opus 5 | $0.00105 | $0.01198 |
| Sonnet 5 | $0.00042 | $0.00479 |
| Haiku 4.5 | $0.00021 | $0.00240 |
Grade A, and why
orchardcore-flow-bagpart 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 — 352 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Orchard Core Flow & BagPart - Prompt Templates
Building Layouts with FlowPart and BagPart
You are an Orchard Core expert. Generate code and configuration for composing page layouts using FlowPart and BagPart.
Guidelines
- FlowPart and BagPart are provided by the
OrchardCore.Flowsmodule. - FlowPart allows embedding arbitrary widget content items inline within a content item (e.g., a page).
- BagPart is similar but lets you restrict which content types can be contained within it via its settings.
- BagPart can be added as a named part, allowing multiple BagParts on a single content type (e.g.,
Services,Portfolio,About). - BagPart items are stored as a single document in the database for efficient retrieval.
- Empty flows render with shape name
FlowPart_Empty; empty bags render asBagPart_Empty. - Use placement to hide empty parts by placing
FlowPart_EmptyorBagPart_Emptyto"-". FlowPartandBagPartdisplay shapes use{PartName}as their differentiator.- To hide or move a whole FlowPart or BagPart editor row in the admin UI, use
ContentPart_Editwith differentiator{ContentType}-{PartName}. - Inner shapes such as
FlowPart_EditandBagPart_Edittarget only the inner editor content, not the wrapper. - The Blocks Editor provides a modal-based content type picker as an alternative to the default dropdown. Enable it by setting the editor to
Blocks. - Always wrap recipe JSON in
{ "steps": [...] }. - All C# classes must use the
sealedmodifier except View Models. - Use file-scoped namespaces in C# examples.
Enabling Flow Features
{
"steps": [
{
"name": "Feature",
"enable": [
"OrchardCore.Flows",
"OrchardCore.Widgets"
],
"disable": []
}
]
}
Creating a Content Type with FlowPart
Use a data migration to create a content type (e.g., LandingPage) that contains a FlowPart for embedding widgets:
public sealed class Migrations : DataMigration
{
private readonly IContentDefinitionManager _contentDefinitionManager;
public Migrations(IContentDefinitionManager contentDefinitionManager)
{
_contentDefinitionManager = contentDefinitionManager;
}
public async Task<int> CreateAsync()
{
await _contentDefinitionManager.AlterTypeDefinitionAsync("LandingPage", type => type
.Creatable()
.Listable()
.Draftable()
.WithPart("TitlePart", part => part.WithPosition("0"))
.WithPart("FlowPart", part => part.WithPosition("1"))
.WithPart("AutoroutePart", part => part
.WithPosition("2")
.WithSettings(new AutoroutePartSettings
{
Pattern = "{{ Model.ContentItem | display_text | slugify }}",
AllowRouteContainedItems = true,
})
)
);
return 1;
}
}
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 · 352 lines · 209 tokens per session scan A a17e98dda23b
orchardcore-flow-bagpart is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 11d ago), licensed MIT. It adds 209 tokens to every session and 2,396 once invoked, about $0.0010 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
polish-ui
Design-quality workflow that combines design taste, aesthetic direction, image-to-code, a Web Interface Guidelines audit, and real-browser verification. Use when building or polishing a UI surface, implementing a mockup/screenshot, or when asked to make a page "look great".
review-design
Reviews frontend components for design quality and UI/UX standards. Use when checking component styling, responsiveness, accessibility, or when asked to review a design.
memoire-design-tooling
Use when a task spans interface understanding, design-system memory, UI audits, design CI, Figma, shadcn or Tailwind code generation, research, or agent design workflows and needs the correct Memi capability selected.
audit-frontend-design
Use when reviewing or changing a React, Next.js, Tailwind, or shadcn interface and you need evidence-backed findings for accessibility, hierarchy, tokens, states, and responsive design before editing code.
enforce-design-ci
Use when a repository needs deterministic pull-request checks for new accessibility, design-token, component-structure, responsive, and UI-state regressions with file-level evidence.
shadcn-sveltekit-design
Use when building, redesigning, beautifying, or refactoring SvelteKit pages and reusable components with shadcn-svelte, Bits UI, or the shadcn-svelte MCP. Trigger on landing pages, dashboards, marketing sites, app shells, forms, navbars, tables, dialogs, responsive layouts, theming, icon selection, and requests to…