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 DojoGenesis/mcp --skill frontend-from-backendgit clone --depth 1 https://github.com/DojoGenesis/mcpWrote 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/dojogenesis/mcp/frontend-from-backend)<a href="https://agentmods.dev/skills/dojogenesis/mcp/frontend-from-backend"><img src="https://agentmods.dev/badge/skills/dojogenesis/mcp/frontend-from-backend.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.00031 | $0.01421 |
| Opus 5 | $0.00015 | $0.00711 |
| Sonnet 5 | $0.00006 | $0.00284 |
| Haiku 4.5 | $0.00003 | $0.00142 |
Grade A, and why
frontend-from-backend 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 7d 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 — 161 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Frontend From Backend Skill
Version: 1.0 Author: Tres Pies Design Purpose: Write high-quality frontend specifications that are deeply integrated with an existing backend, ensuring seamless development and preventing integration friction.
I. The Philosophy: Grounding Before Building
Frontend development in a full-stack application does not happen in a vacuum. The most common source of bugs, delays, and rework is a disconnect between the frontend implementation and the backend reality. This skill is built on a simple but powerful principle: grounding before building.
By deeply understanding the existing backend architecture, APIs, and data models before writing a single line of frontend specification, we prevent entire classes of integration problems. What we design is not just beautiful, but buildable.
II. When to Use This Skill
- When planning a new frontend feature that interacts with an existing backend
- When writing specifications for a UI redesign with a backend component
- When commissioning frontend work to an autonomous implementation agent
- When you feel a disconnect between the frontend vision and the backend reality
- At the beginning of any major frontend development cycle
III. The 5-Step Workflow
Step 1: Deep Backend Analysis
Goal: Achieve comprehensive understanding of the existing backend architecture.
- Read key backend files: Entry point, route registration, handlers, middleware
- Document APIs: Map all relevant endpoints with methods, auth requirements, request bodies, success/error responses
- Identify data models: Understand the shapes of data the backend returns
- Map integration points: For each frontend feature area, identify the specific backend endpoint it will consume
Output: A Backend Integration Map (table format).
Backend Integration Map Template:
| Feature Area | Endpoint | Method | Auth | Request Body | Success Response | Error Response |
|---|---|---|---|---|---|---|
| User List | /api/v1/users |
GET | Bearer | - | { users: User[] } |
{ error: string } |
| Create User | /api/v1/users |
POST | Bearer | { name: string } |
{ id: string } |
{ error: string, code: number } |
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.
- 7d ago First seen · 161 lines · 31 tokens per session scan A 62a0515fb24a
frontend-from-backend is a skill published in the GitHub repository DojoGenesis/mcp (0 stars, last pushed 1mo ago), licensed MIT. It adds 31 tokens to every session and 1,421 once invoked, about $0.0002 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
openui-forge-csharp
OpenUI generative UI with C# ASP.NET Core Minimal API backend. Direct OpenAI API SSE streaming via HttpClient on .NET 10.
openui-forge-elixir
OpenUI generative UI with Elixir Phoenix backend. Chunked SSE streaming via Plug.Conn and Req.
openui-forge-java
OpenUI generative UI with a Java Spring Boot (WebFlux) backend. Streams the OpenAI API directly via WebClient as SSE.
openui-forge-php
OpenUI generative UI with a PHP (Laravel 13.x) backend. Forwards OpenAI's SSE stream verbatim via response()->stream().
openui-forge-anthropic
OpenUI generative UI with Anthropic Claude SDK backend. Stream conversion to OpenAI NDJSON format.
openui-forge-go
OpenUI generative UI with Go (net/http) backend. Direct OpenAI API streaming via HTTP.