Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

modern-web-app-architecture现代 Web 应用架构

Agent Skill

modern-web-app-architecture 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

594

周安装

25

GitHub Stars

35

下载量

208
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:modern-web-app-architecture(现代 Web 应用架构)
来源仓库:https://github.com/ratacat/claude-skills
仓库路径:skills/modern-web-app-architecture
安装命令:
npx skills add https://github.com/ratacat/claude-skills --skill modern-web-app-architecture
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/ratacat/claude-skills --skill modern-web-app-architecture

简介

用于查找、检索和筛选相关信息,支持关键词和任务场景定位。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速获取候选结果。
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发联网或命令执行。
  • modern-web-app-architecture 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Modern Web App Architecture (SPA/SSR/SSG/RSC)

Overview

Comprehensive guidance for designing and building modern web applications (including SPAs and hybrid rendering apps). This skill emphasizes trade-offs, explicit boundaries, and production-ready practices (performance, accessibility, security, testing, delivery).

Core principle: Everything in architecture is a trade-off. There are no "right" answers, only least-worst combinations for your specific context.

Operating Mode (How to Use This Skill)

When activated, work in this order:

  1. Clarify context (5–10 questions max) → users, routes, SEO, interactivity, data, auth, team, constraints.
  2. Choose a rendering strategy per route (not “one strategy for the whole app”).
  3. Define boundaries → feature/domain modules, shared libraries, ownership, and stable interfaces.
  4. Plan state + data → local/shared/global/server/URL state, cache strategy, invalidation, optimistic updates.
  5. Plan non-functionals → performance budgets + measurement, accessibility plan, security posture, observability.
  6. Produce artifacts → short recommendations with explicit trade-offs, plus concrete next steps (folder structure, ADRs, checklists).

If the user can’t answer a question, state reasonable assumptions and continue (don’t block).

When to Use

  • Starting a new SPA or web application
  • Choosing rendering strategies (CSR, SSR, SSG, ISR, RSC)
  • Implementing state management
  • Optimizing Core Web Vitals (LCP/INP/CLS)
  • Scaling for multiple frontend teams
  • Making architecture trade-off decisions
  • Migrating from legacy to modern frontend

Quick Discovery Questions (Ask First)

  • What are the top 3 user journeys and their target latency (e.g., “search → product → checkout”)?
  • Is SEO required for any routes? Which are public vs behind auth?
  • What’s the data shape: mostly CRUD, real-time, offline-first, heavy forms, large tables/charts?
  • What are the constraints: browser support, bundle limits, time-to-market, compliance (SOC2/HIPAA/PCI)?
  • What’s the team topology: how many devs/teams, release cadence, ownership boundaries?
  • What’s your preferred stack (React/Vue/Angular/vanilla), and are you open to TypeScript?

Reference Files

TopicWhen to Load
@references/design-patterns.mdImplementing JS patterns (Module, Observer, Factory, etc.)
@references/react-patterns.mdReact components, hooks, state, composition
@references/spa-fundamentals.mdSPA architecture, routing, module organization
@references/micro-frontends.mdScaling teams, independent deployments
@references/performance.mdBundle size, loading, Core Web Vitals
@references/architecture-decisions.mdTrade-offs, coupling, fitness functions
@references/rendering-strategies.mdCSR vs SSR vs SSG vs ISR vs RSC
@references/state-management.mdLocal, global, server state patterns
@references/security-and-auth.mdAuth choices, token storage, XSS/CSRF, CSP, API boundaries
@references/accessibility-and-i18n.mdWCAG basics, SPA focus mgmt, inclusive components, i18n pitfalls
@references/testing-and-quality.mdTesting strategy, CI quality gates, a11y checks, contract tests
@references/tooling-and-delivery.mdBundling, environments, deployment, observability, feature flags

Quick Architecture Decision Tree

Project Requirements?
├─ SEO critical + dynamic content → SSR (or SSR+streaming)
├─ SEO critical + mostly static → SSG/ISR (or hybrid)
├─ Mostly behind auth + app-like UX → CSR SPA (or hybrid with pre-rendered shell)
├─ Mixed (marketing + app) → Hybrid/Islands (route-level strategy)
│
Team Size?
├─ <5 developers → Modular monolith SPA
├─ 5-15 developers → Well-structured SPA or Service-based
├─ >15 developers, multiple teams → Consider micro-frontends
│
Domain Complexity?
├─ Simple CRUD → Layered architecture
├─ Complex workflows → Domain-partitioned (DDD)
├─ Multiple bounded contexts → Micro-frontends

Default Outputs (What You Should Produce)

Depending on the user request, aim to output:

  • Route strategy map: a small table of routes → CSR/SSR/SSG/ISR/RSC + why
  • Module boundary sketch: feature folders, shared libs, interface contracts
  • State map: local/shared/global/server/URL, plus the chosen tooling pattern
  • Data plan: caching/invalidation, error states, optimistic updates, pagination
  • Quality plan: testing layers + CI gates + accessibility checks
  • Performance plan: budgets + measurement + concrete loading strategy (split points)
  • Risk register: top 5 risks + mitigations (e.g., hydration cost, auth posture, team coupling)

Essential Patterns Quick Reference

Component Patterns

PatternUse When
Container/PresentationalSeparating data from UI
Compound ComponentsBuilding composable APIs (Select, Menu)
HooksSharing stateful logic without HOCs
ProviderAvoiding prop drilling for global data

State Management

ApproachUse When
useState/useReducerLocal component state
ContextTheme, auth, low-frequency global state
Zustand/JotaiSimple global state, minimal boilerplate
Redux ToolkitComplex state, time-travel debugging
React Query/SWRServer state, caching, background refresh
XStateComplex flows with explicit state machines

Performance Essentials

TechniqueImpact
Code splittingReduce initial bundle
Lazy loadingDefer non-critical
React.memoPrevent unnecessary re-renders
useMemo/useCallbackStable references
Virtual listsHandle large datasets

Architecture Characteristics (Pick 3-7)

CharacteristicQuestions to Ask
ScalabilityHow many concurrent users? Growth rate?
PerformanceWhat's acceptable TTI? LCP target?
DeployabilityHow often do you ship? Independent deploys?
TestabilityHow easy to verify changes?
MaintainabilityWhat's the expected lifespan?
ModularityHow often do requirements change?

Anti-patterns to Avoid

Anti-patternProblemFix
Prop drillingTight couplingContext or state management
God componentsToo many responsibilitiesSplit by concern
Premature optimizationComplexity without evidenceProfile first
Shared mutable stateRace conditions, bugsImmutable patterns
Monolithic bundleSlow initial loadCode splitting
Over-fetchingWasted bandwidthGraphQL or BFF
LocalStorage tokens by defaultXSS turns into account takeoverPrefer httpOnly cookies + CSP (see security refs)
Global store for server dataCache invalidation painUse React Query/SWR for server state

Performance Budgets

Budgets must be calibrated to your users/devices, but these are good starting points for a “fast by default” app:

MetricTargetNeeds Work
LCP<2.5s2.5–4s
INP<200ms200–500ms
CLS<0.10.1–0.25
TTFB<800ms800ms–1.8s
Route JS (initial)<170KB gzip<300KB gzip

Sources

Synthesized from:

  • Learning JavaScript Design Patterns (Osmani, 2023)
  • React in Depth (Barklund, 2024)
  • SPA Design and Architecture (Scott)
  • Single Page Web Applications (Mikowski & Powell)
  • Building Micro-Frontends (Mezzalira)
  • Micro Frontends in Action (Geers)
  • Responsible JavaScript (Wagner)
  • High Performance Browser Networking (Grigorik)
  • Web Performance in Action (Wagner)
  • Frontend Architecture for Design Systems (Godbolt)
  • Fundamentals of Software Architecture (Richards & Ford)
  • Software Architecture: The Hard Parts (Ford et al.)
  • Patterns.dev

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.16%
按下载量换算69

Claude

28.31%
按下载量换算59

Cursor

19.18%
按下载量换算40

Gemini CLI

9.82%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills