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

web-reactWEB React 开发

Agent Skill

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

总安装

396

周安装

16

GitHub Stars

4

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill web-react

简介

用于辅助 React、Next.js、Vue 等前端框架的开发与维护。

  • 适合生成组件代码、审查样式逻辑或定位性能问题。
  • 使用时需结合项目现有设计系统和构建流程,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认实际效果。
  • web-react 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

web-react

Purpose

This skill provides expertise in React 19 for building dynamic web applications, focusing on advanced features like hooks, context, suspense, server/client components, useActionState, the compiler, and React Query for efficient state management and data handling.

When to Use

  • Use for new React projects requiring modern hooks (e.g., useActionState) or server-side rendering with suspense.
  • Apply when integrating data fetching with React Query in web apps, especially for real-time updates or API interactions.
  • Choose for optimizing performance with server/client components in large-scale applications.
  • Employ in scenarios needing context for global state without Redux, or when handling asynchronous operations with suspense.

Key Capabilities

  • Hooks: Use useState, useEffect, useContext for local state and side effects; useActionState for form state and actions in React 19.
  • Context: Create context providers to share data across components, e.g., for theme or user auth.
  • Suspense: Wrap components for lazy loading, like <Suspense fallback={Loading...}> for handling promises.
  • Server/Client Components: Differentiate with 'use server' directive for server-only code and client components for interactivity.
  • React Query: Manage server state with useQuery for fetching data, and useMutation for updates, caching responses automatically.
  • Compiler: Leverage React 19's compiler for automatic optimizations, like bundling and tree-shaking in build tools.
  • Additional: Handle forms with useActionState for server actions, reducing client-side JavaScript.

Usage Patterns

  • To manage state with hooks, import and use as follows: import {useState} from 'react'; const [count, setCount] = useState(0);
  • For context, create and consume it like this: import {createContext, useContext} from 'react'; const ThemeContext = createContext('light'); const App = () => useContext(ThemeContext);
  • Implement suspense for lazy-loaded components: import {Suspense} from 'react'; <Suspense fallback={<Spinner />}> <LazyComponent /> </Suspense>
  • Use React Query for data fetching: import {useQuery} from '@tanstack/react-query'; const {data, isLoading} = useQuery(['key'], () => fetchData());
  • For server/client components, mark files with 'use server' at the top for server-only logic, then import into client components.

Common Commands/API

  • Hooks API: Call useActionState for forms – e.g., const [state, action] = useActionState(formAction, initialState); where formAction is an async function.
  • Suspense API: Use the suspense boundary as <React.Suspense> with a fallback prop for loading states.
  • React Query commands: Run queries with useQuery hook; for mutations, use useMutation({mutationFn: asyncFn}); CLI for React Query: npx @tanstack/query start for dev server.
  • Compiler flags: In React 19 projects, use the compiler via build tools like Vite with flag --react-compiler to enable optimizations; in Webpack, add module: {rules: [{test: /.js$/, use: 'react-compiler'}]}.
  • API endpoints: For React Query, fetch from endpoints like fetch('/api/data', {headers: {Authorization: Bearer ${process.env.REACT_APP_API_KEY}}}); set env var as $REACT_APP_API_KEY in.env files.
  • Config formats: React Query config in code: const queryClient = new QueryClient({defaultOptions: {queries: {staleTime: 5 * 60 * 1000}}}); for global settings.

Integration Notes

  • Integrate with other tools by installing dependencies: npm install react react-dom @tanstack/react-query; then wrap your app with.
  • For auth, use environment variables: Set $REACT_APP_API_KEY in your.env file and access via process.env.REACT_APP_API_KEY in fetch calls.
  • When combining with server components, ensure server setup (e.g., Next.js) and use 'use server' directive; for client-side, import hooks directly.
  • Link with web-dev cluster tools: If using a backend, configure React Query to handle CORS by setting proxy in package.json: "proxy": "http://localhost:5000".
  • For React 19 features, ensure project uses React 19+; add to package.json: "react": "^19.0.0", and run npm install.

Error Handling

  • For hooks, catch errors in useEffect cleanups: useEffect(() => {const cleanup = () => {try {/* code */} catch (e) {console.error(e);}}; return cleanup;}, []);
  • Handle suspense errors with error boundaries: Create a component like class ErrorBoundary extends React.Component {state = {error: null}; componentDidCatch(error) {this.setState({error});} render() {return this.state.error? Error: {this.state.error.message}: this.props.children;}}; Wrap suspense with it.
  • In React Query, use onError in useQuery: useQuery({queryFn: fetchData, onError: (error) => console.error('Fetch failed:', error)}); for global, set in QueryClient: new QueryClient({defaultOptions: {queries: {onError: handleGlobalError}}}).
  • For server components, handle fetch errors by checking responses: async function serverAction() {try {const res = await fetch('/api/data'); if (!res.ok) throw new Error('Network response not ok');} catch (e) {return {error: e.message};}}.
  • Always use try-catch in async hooks like useActionState to prevent unhandled promises.

Graph Relationships

  • Related to cluster: web-dev (shares tools for web development).
  • Connected to tags: react (core framework), hooks (specific APIs like useState), components (server/client types), web (overall domain).
  • Links to other skills: Possibly integrates with "web-node" for backend API handling, or "data-fetching" for advanced querying.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.8%
按下载量换算44

Claude

32.25%
按下载量换算40

Cursor

20.12%
按下载量换算25

Gemini CLI

9.38%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills