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/srnichols/plan-forge/ui-scaffoldnpx skills add srnichols/plan-forge --skill ui-scaffoldgit clone --depth 1 https://github.com/srnichols/plan-forgeWrote 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/srnichols/plan-forge/ui-scaffold)<a href="https://agentmods.dev/skills/srnichols/plan-forge/ui-scaffold"><img src="https://agentmods.dev/badge/skills/srnichols/plan-forge/ui-scaffold.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.1 | $0.00068 | $0.01962 |
| Opus 5 | $0.00034 | $0.00981 |
| Sonnet 5 | $0.00014 | $0.00392 |
| Haiku 4.5 | $0.00007 | $0.00196 |
Grade A, and why
ui-scaffold 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 — 178 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UI Scaffold Skill (Blazor + Fluent UI)
Trigger
"Scaffold a Clients page" / "Add a UI for invoices" / "Create a Blazor form for time entries" / /ui-scaffold Clients --crud
Why This Skill Exists
A naïve scaffold produces a .razor file that injects the DbContext, queries directly, and ships with no tests, no error UI, no accessibility. That's vibe-coded UI — exactly what Plan-Forge exists to prevent. This skill enforces the layered architecture from architecture-principles.instructions.md and the component discipline from blazor-fluent-ui.instructions.md on every new page.
Preconditions (verify before scaffolding)
- The project is a Blazor Server app (or Blazor United host) on .NET 8+
Microsoft.FluentUI.AspNetCore.Componentsis referenced in the Web project- The entity model exists in a Core/Domain project (e.g.,
TimeTracker.Core/Models/Client.cs) .github/instructions/blazor-fluent-ui.instructions.mdis present (loaded by setup)
If any precondition fails, stop and surface the gap — do not scaffold against an incompatible project.
Steps
1. Confirm Scope
Read the entity model and any existing service for the same entity.
read_file path: src/<Project>.Core/Models/<Entity>.cs
file_search query: src/**/Services/I<Entity>Service.cs
If a service already exists, scaffold the UI against it. If not, scaffold the service interface first (Step 2). Do not let the page reach into the DbContext even temporarily — every shortcut becomes permanent.
2. Service Layer (if missing)
Generate or update:
src/<Api or Web>/Services/I<Entity>Service.cs— interface withGetAllAsync(CancellationToken),GetByIdAsync(Guid, CancellationToken), plusCreateAsync/UpdateAsync/DeleteAsyncfor--crudmode.src/<Api or Web>/Services/<Entity>Service.cs— implementation that takesDbContext(or repository) via constructor injection.
Register the service in Program.cs:
builder.Services.AddScoped<IClientService, ClientService>();
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 · 178 lines · 68 tokens per session scan A b8ba6db93894
ui-scaffold is a skill published in the GitHub repository srnichols/plan-forge (5 stars, last pushed 2d ago), licensed MIT. It adds 68 tokens to every session and 1,962 once invoked, about $0.0003 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
go
Project Kickstart - PRD-First Orchestrator.
ux-ui
Use this agent when you need to design, audit, migrate, rewire, or rewrite UX/UI.
docs
Use this agent when you need to create comprehensive technical and user documentation for approved features, tests, or debugged issues.
analytics
/analytics - Agent Usage Analytics.
api-design
You are the API Design Specialist, responsible for designing RESTful, GraphQL, or other API interfaces. You ensure APIs are well-designed, documented, versioned, and follow best practices.
explain
/explain - Execution Explainer.