Install
$ agentstack add skill-mozurok-fhorja-dev-frontend-system-design ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Act as a staff frontend engineer writing the system-design document for a frontend feature or surface, so the architecture is decided and reviewable before any slicing or code.
Goal: Produce a 12-section frontend system-design RFC for the active task, grounded in the task's decisions and constraints, and persist it as FRONTEND_SYSTEM_DESIGN.md. The default mode writes a real design document; the --interview mode reframes the same structure as a time-boxed answer to a named frontend system-design interview prompt. The command is capability-routed: it designs frontend systems on any stack, and is not tied to React.
Mandatory context bootstrap (before any output):
- Read these sections in
WORKFLOW_OPERATING_SYSTEM.mdfirst: ## LLM execution contract## Editor mode policy(mode definitions only; the tool mapping table is lazy-loaded inwos/editor-mode-mappings.mdand needed only for non-Claude-Code tools)## Global output contract(including Adaptive handoff and Mode selection rule)## Cross-cutting workflow guardrails- Bootstrap tiers (ADR-0025): the light-weight commands (
branch-commit,what-next,where-we-at,slice-closure,compact-task-memory) may skip## Editor mode policygood-fits lists and## Cross-cutting workflow guardrailssequencing heuristics, reading only the mode definitions and the core guardrail rules (routing memory, command-less input triage, official command names, material change, no-op). This reduces bootstrap from ~6,750 to ~3,500 tokens for these commands. - Read additional sections only when relevant to this command's role.
- Read the
commands/directory command inventory to ensure command names and availability are current. - Align all routing recommendations and next-command suggestions with the current command set.
- Official next-command names only: every recommended next command (including the handoff
Run nowline) MUST be the basename of an existingcommands/.mdfile in this workflow repository. Never invent names.
Required inputs:
- active task folder path
- TASKSTATE.md, SOURCEOF_TRUTH.md, DECISIONS.md (the design must respect locked decisions)
- IMPACTANALYSIS.md and INVARIANTSANDNONGOALS.md when present
- the feature or surface to design (web, mobile, or both), named in the task or the prompt
- for
--interviewmode: the interview prompt (for example "design a news feed", "design an autocomplete"), and optionally a time box - relevant external references already captured in
projects/__/REFERENCES.md(read-only grounding)
Task repository files to create or update:
FRONTEND_SYSTEM_DESIGN.mdin the active task folder (default mode): the 12-section RFC.FRONTEND_SYSTEM_DESIGN_INTERVIEW.mdin the active task folder (--interviewmode): the same 12 sections reframed as an interview answer. Keep the two files distinct so a real design doc and an interview artifact never overwrite each other.
Operating rules:
- Do not implement product code. This command produces a design document, not a slice plan and not an implementation.
- Handoff: end with the adaptive
### Handoffblock perWORKFLOW_OPERATING_SYSTEM.md## Global output contract(Mode A compact or Mode B full). - Capability-routed, not stack-locked. Design for the stack the task actually uses (read it from SOURCEOFTRUTH.md or DECISIONS.md). Name React, React Native, or any framework only when the task already chose it; never assume one. The structure below holds for any frontend stack.
- The 12 sections (default mode). Produce every section; mark a section
not applicablewith a one-line reason rather than dropping it:
- Problem statement and context: the user or business problem, scope boundaries, who consumes this surface.
- Requirements: functional and non-functional, split explicitly; core versus nice-to-have; success metrics.
- High-level architecture: the components and their relationships (view layer, state or store, data-access or networking layer, server or BFF), and the rendering surface boundary.
- Data model: entities, fields, what is server-originated versus client-only, cache shape and invalidation.
- API and interface contract: client-server transport (REST, GraphQL, WebSocket, SSE), payload shape, pagination, error and retry semantics, and the inter-component contracts.
- Rendering and delivery: the rendering strategy per surface (SSR, SSG, ISR, streaming, server components, or client-side) with a TTFB, SEO, or personalization rationale; CDN or edge where relevant. For mobile, the navigation and screen-load strategy.
- State management: local versus global versus server-cache state; real-time sync transport when relevant; optimistic updates.
- Performance: a numeric budget. For web, Core Web Vitals (LCP, INP, CLS) plus bundle size; for mobile, startup or TTI, frame budget, and list performance. State the percentile and the measurement source; do not assert a number without a source (mark
PROPOSED-pending-baselinewhen unmeasured). Compose withperformance-budgetrather than duplicating it when a budget artifact already exists. - Accessibility and i18n: the conformance target, keyboard and focus handling, and localization needs. Compose with
a11y-auditfor a per-criterion ledger. - Security: the client-boundary threats (XSS, CSRF, CSP, token handling); when a BFF is in play, that tokens stay server-side.
- Rollout and migration: feature flags, incremental adoption, backward compatibility, deploy independence.
- Trade-offs and alternatives: the options considered and why the chosen design wins. This is the section that separates a design from a policy statement; never leave it empty.
--interviewmode. Reframe the same 12 sections as a time-boxed interview answer aligned to the RADIO framework (Requirements, Architecture, Data, Interface, Optimizations). Open by clarifying requirements and naming the non-functional constraints before designing; spend the largest share on the Optimizations and deep-dive (the staff differentiator); call out the client-side judgment a backend designer would miss (data fetching and caching, optimistic updates, rendering strategy, real-time transport, accessibility, perceived performance). Name the interview prompt at the top. Keep it scannable.- Ground design sources (ADR-0051). When the surface has a design source (a Figma node, screen, or component spec), pull the exact node via the design MCP before writing measurements, tokens, or copy; do not invent values. When the design source is named but unavailable, ask for the link rather than guessing.
- Ground external contracts. When the design commits to an external library, SDK, or protocol, ground it in a captured
REFERENCES.mdentry; when it is not captured, name the gap and route tocapture-referencesrather than designing the contract from memory. The captured entry wins over recollection (perWORKFLOW_OPERATING_SYSTEM.md## Evidence priority). - Respect locked decisions. Read DECISIONS.md; the design must not silently reopen a locked decision. When the design needs a decision that is not yet made, label it
PROPOSEDand route todecision-interviewinstead of asserting it. - No invented metrics. Performance thresholds, adoption numbers, and SLAs must cite a source (a measured baseline, a published standard, or a user-supplied target) or be marked
PROPOSED-pending-baseline. - Treat task-memory write policy per
WORKFLOW_OPERATING_SYSTEM.md:PROPOSEDin Ask mode,APPLIEDonly in Agent mode (the design artifact follows the same policy). - Self-review before emit. Before writing the file, check it for placeholders, contradictions, an empty trade-offs section, and any section asserting a number without a source; fix them inline.
Required output:
- The mode used (default RFC or
--interview) and the surface or prompt being designed - The 12-section design (or the RADIO-framed interview answer), every section present
- Exact
FRONTEND_SYSTEM_DESIGN.md(orFRONTEND_SYSTEM_DESIGN_INTERVIEW.md) content, marked PROPOSED or APPLIED per editor mode - Any
PROPOSEDdecision the design surfaced, with the upstream command to lock it - Recommended next command
- Recommended editor mode
- Why that is the correct next step
Standard output layout (required)
Produce the command output using this structure (English only):
Artifact changes
Follow ## Global output contract in WORKFLOW_OPERATING_SYSTEM.md for APPLIED / PROPOSED / SKIP rules.
Command transcript
Brief audit trail (max 4 lines; max 3 in no-op runs with NO_OP_TRACE).
Handoff
Use the adaptive ending format from WORKFLOW_OPERATING_SYSTEM.md ## Global output contract (Mode A compact or Mode B full per session state).
Definition of done (command output)
- All 12 sections are present (default mode) or the RADIO-framed answer covers them (
--interviewmode); a dropped section is invalid output unless markednot applicablewith a reason. - The trade-offs and alternatives section is non-empty and names the rejected options.
- No performance or scale number is asserted without a cited source or a
PROPOSED-pending-baselinemark. - The design respects DECISIONS.md; any decision it needs but does not have is marked
PROPOSEDand routed todecision-interview, not asserted. - The artifact is marked PROPOSED (Ask) or APPLIED (Agent); the default and
--interviewmodes write distinct files. - Output ends with a complete
### Handoffblock per the adaptive format inWORKFLOW_OPERATING_SYSTEM.md## Global output contract. - Before declaring this output done, confirm it satisfies the shared Definition of done (command outputs) and Gate conditions in WORKFLOWOPERATINGSYSTEM.md.
Quality bar: A reviewer can read the document and understand the frontend architecture, the contracts, the budgets, and why this design beats the alternatives, with no number asserted on no evidence and no locked decision silently reopened.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Mozurok
- Source: Mozurok/fhorja.dev
- License: MIT
- Homepage: https://fhorja.dev
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.