Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

frontend-planning前端规划

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

235

周安装

10

GitHub Stars

2

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ywj3493/claude-skills --skill frontend-planning

简介

辅助前端功能模块拆分与技术方案设计。

  • 输出任务清单、接口契约与原型草图。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 支持敏捷迭代中的需求澄清与风险评估。
  • 建议产出物纳入项目管理工具跟踪执行。
  • frontend-planning 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

frontend-planning

DEPRECATED: This skill has been superseded by dev-planning. Use dev-planning instead, which supports backend, frontend, and infrastructure domains in a unified pipeline with test traceability.

6-step planning document pipeline for frontend projects, organized by domain.

When to Use

  • User says "프론트엔드 기획", "frontend planning", "UI 설계", "화면 설계"
  • User says "프론트엔드 문서", "기획 문서 만들어줘", "plan frontend"
  • Starting a new frontend project that needs structured design documents
  • Adding a major frontend feature that requires multi-page planning

When NOT to Use

  • Backend-only projects (use the backend planning pipeline instead)
  • Fixing a single component or small UI tweak
  • Editing or updating existing specification documents
  • Non-UI work such as CI/CD, infrastructure, or tooling

Pipeline Overview

Step 0:   Tech stack detection
Step 0.5: Domain analysis & document discovery
Step 1:   Requirements          → <domain>/requirements/requirements.md
Step 2:   User Flows            → <domain>/requirements/user-flows.md
Step 3:   UI Spec               → <domain>/requirements/ui-spec.md
Step 4:   Use Cases             → <domain>/workflows/use-cases.md
Step 5:   Component Tree        → <domain>/workflows/component-tree.md
Step 6:   State & API Integration → <domain>/workflows/state-api-integration.md
Step 7:   README (table of contents)

Steps 1–3 are planning/design documents (what to build). Steps 4–6 are implementation documents (how to build).

For multi-domain projects, Steps 1–6 repeat per domain. Step 7 runs once.

Output Structure

docs/en/specifications/
├── architecture.md              # Project structure (Mermaid) — cross-cutting
├── infrastructure.md            # Deployment & infra (Mermaid) — cross-cutting
├── config.md                    # Environment variables
├── README.md                    # Index of all domains/documents (Step 7)
└── <domain>/
    ├── requirements/
    │   ├── requirements.md      # Step 1
    │   ├── user-flows.md        # Step 2
    │   └── ui-spec.md           # Step 3
    └── workflows/
        ├── use-cases.md         # Step 4
        ├── component-tree.md    # Step 5
        └── state-api-integration.md  # Step 6

Navigation

Every domain document includes two navigation blocks:

Top — sequential prev/next for linear reading:

> [← Requirements](requirements.md) | [UI Spec →](ui-spec.md)

First document omits "←", last document omits "→".

Bottom — full index to jump to any document:

---
> **All Documents**
> [Requirements](requirements.md) | ... | [State & API](state-api-integration.md)

The current document is shown in bold instead of a link.

Step-by-Step Instructions

Step 0: Detect Tech Stack

  1. Read package.json — framework, dependencies
  2. Read tsconfig.json — TypeScript usage
  3. Scan directory structure — src/, app/, pages/, components/
  4. Check styling and state management solutions

Summarize and confirm with the user before proceeding.

Step 0.5: Domain Analysis & Document Discovery

Domain Analysis

  1. Ask the user to describe major feature areas
  2. Propose domain groupings (e.g., auth, dashboard)
  3. Always create at least one domain directory
  4. Present proposed structure and wait for confirmation

Document Discovery

  1. Scan README.md, CLAUDE.md, all .md files under docs/en/specifications/ and docs/en/policy/
  2. Classify each by first 30 lines: requirements / user-stories / use-cases / api-spec / sequence-diagram / architecture / config / infrastructure / deployment / policy / other
  3. Present discovered documents grouped by category using @-reference format
  4. Carry confirmed document list to all subsequent steps

If no documents found, record "No project documents found" and proceed.

Step 1: Requirements

Output: <domain>/requirements/requirements.md

  1. Load template: references/requirements-template.md
  2. Load discovered docs classified as requirements, user-stories, or architecture
  3. Ask user for: project purpose, target users, core features, non-functional requirements
  4. Generate document and wait for review

Step 2: User Flows

Output: <domain>/requirements/user-flows.md

  1. Load template: references/user-flows-template.md
  2. Load Step 1 output
  3. Load discovered docs classified as use-cases or sequence-diagram
  4. For each major feature: Mermaid flowchart (happy path), alternative/exception paths
  5. Generate document and wait for review

Step 3: UI Spec

Output: <domain>/requirements/ui-spec.md

  1. Load template: references/ui-spec-template.md
  2. Load Steps 1–2 outputs
  3. Skim discovered docs classified as api-spec or architecture
  4. For each view: URL/trigger, layout structure, key components, responsive behavior, SEO (if applicable)
  5. Generate document and wait for review

Step 4: Use Cases

Output: <domain>/workflows/use-cases.md

  1. Load template: references/use-cases-template.md
  2. Load Steps 1–3 outputs
  3. Load discovered docs classified as use-cases or architecture
  4. For each use case: actor, preconditions/postconditions, main/alternative/exception flows
  5. Generate document and wait for review

Step 5: Component Tree

Output: <domain>/workflows/component-tree.md

  1. Load template: references/component-tree-template.md
  2. Load Steps 1–4 outputs
  3. Define: Mermaid graph of component hierarchy, shared vs page-specific components, TypeScript prop interfaces
  4. Generate document and wait for review

Step 6: State & API Integration

Output: <domain>/workflows/state-api-integration.md

  1. Load template: references/state-api-integration-template.md
  2. Load Steps 1–5 outputs
  3. Load discovered docs classified as api-spec — use as authoritative endpoint source
  4. Define: state strategy, store interfaces, API endpoints table, DTOs, caching, error handling
  5. Generate document and wait for review

Step 7: Generate README

Output: docs/en/specifications/README.md

After all domains complete Steps 1–6:

  • Single-domain: table of contents linking all 6 documents
  • Multi-domain: section per domain + optional per-domain README.md
  • If README exists, merge rather than overwrite
  • Include discovered documents in a Related Project Documents section

Report all generated file paths on completion.

Document Rules

  • Language: English
  • Meta block: Created, Last Modified, Status, Tech Stack, Prerequisites, Reference Documents
  • Mermaid: flowchart TD for user flows, graph TD for component trees
  • TypeScript: interface for props, stores, DTOs
  • References: Each step loads all previous outputs before generating
  • Review gate: Never proceed without user approval
  • Navigation: Every domain document has top (prev/next) and bottom (all documents) navigation
  • @-references: Use for discovered docs per @docs/en/policy/reference-convention.md; never @-prefix docs/reference/ files

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.26%
按下载量换算27

Claude

31.11%
按下载量换算26

Cursor

17.71%
按下载量换算15

Gemini CLI

9.01%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills