一键导入
frontend-guardrails
Frontend development guardrails for this repo. Use when editing or adding frontend code to ensure consistency and maintainability.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Frontend development guardrails for this repo. Use when editing or adding frontend code to ensure consistency and maintainability.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guidelines for Wails 3 GUI frontend development with React and TypeScript. Use when working on frontend/, UI components, or Wails bindings.
Guidelines for Go backend development including architecture patterns, code style, testing, and common development tasks. Use when working on internal/, cmd/, or Go code.
Provides comprehensive overview of mcpd project architecture, capabilities, and key technical details. Use when understanding the project structure, architecture layers, or core concepts.
| name | frontend-guardrails |
| description | Frontend development guardrails for this repo. Use when editing or adding frontend code to ensure consistency and maintainability. |
frontend/src/lib/swr-keys.ts and/or frontend/src/lib/swr-config.tsfrontend/src/hooks/use-ui-settings.tsYou should use help prop of the form components to provide users with information about what a setting does. If the setting is not self-explanatory, you should also provide a link to the documentation.
The content of the help you provide should be stored in a split file.
frontend/src/modules/servers/lib/server-form-content.tsimport { swrKeys } from "@/lib/swr-keys";
import { swrConfig } from "@/lib/swr-config";
import { useUiSettings } from "@/hooks/use-ui-settings";
const settings = useUiSettings();
const key = swrKeys.userProfile();
const config = swrConfig.default;