Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

web-development网页开发

Agent Skill

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

总安装

1,117

周安装

48

GitHub Stars

997

下载量

392
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/tencentcloudbase/cloudbase-mcp --skill web-development

简介

web-development 用于辅助前端页面、组件和样式开发。

  • 适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 使用时需要结合项目现有设计系统和构建方式,涉及页面改动应配合本地预览。
  • 当前分类为前端设计,暂无更多功能细节可参考。

SKILL.md

When to use this skill

Use this skill for Web frontend project development when you need to:

  • Develop web frontend pages and interfaces
  • Deploy static websites to CloudBase static hosting
  • Integrate CloudBase Web SDK for database, cloud functions, and authentication
  • Set up modern frontend build systems (Vite, Webpack, etc.)
  • Handle routing and build configurations for static hosting

Do NOT use for:

  • Mini-program development (use miniprogram-development skill)
  • Backend service development (use cloudrun-development skill)
  • UI design only (use ui-design skill, but may combine with this skill)

How to use this skill (for a coding agent)

  1. Follow project structure conventions

- Frontend source code in src directory - Build output in dist directory - Cloud functions in cloudfunctions directory - Use modern frontend build systems (Vite, etc.)

  1. Use CloudBase Web SDK correctly

- Always use SDK built-in authentication features - Never implement login logic in cloud functions - Use envQuery tool to get environment ID

  1. Deploy and preview properly

- Build project first (ensure npm install is executed) - Use relative paths for publicPath configuration - Use hash routing for better static hosting compatibility - Deploy to subdirectory if user doesn't specify root directory


Web Frontend Development Rules

Project Structure

  1. Directory Organization:

- Frontend source code should be stored in src directory - Build output should be placed in dist directory - Cloud functions should be in cloudfunctions directory

  1. Build System:

- Projects should use modern frontend build systems like Vite - Install dependencies via npm

  1. Routing:

- If the frontend project involves routing, use hash routing by default - Hash routing solves the 404 refresh issue and is more suitable for static website hosting deployment

Deployment and Preview

  1. Static Hosting Deployment:

- For frontend projects, after building, you can use CloudBase static hosting - First start local preview, then confirm with user if deployment to CloudBase static hosting is needed - When deploying, if user has no special requirements, generally do not deploy directly to root directory - Return deployed address in markdown link format

  1. Local Preview:

- To preview static web pages locally, navigate to the specified output directory and use npx live-server

  1. Public Path Configuration:

- When web projects are deployed to static hosting CDN, since paths cannot be known in advance, publicPath and similar configurations should use relative paths instead of absolute paths - This solves resource loading issues

CloudBase Web SDK Usage

  1. SDK Integration:

- If user's project needs database, cloud functions, and other features, need to introduce @cloudbase/js-sdk@latest in the web application

Important: Authentication must use SDK built-in features. It is strictly forbidden to implement login authentication logic using cloud functions!

import cloudbase from "@cloudbase/js-sdk";

const app = cloudbase.init({
  env: "xxxx-yyy", // Can query environment ID via envQuery tool
});
const auth = app.auth();

// Check current login state
let loginState = await auth.getLoginState();

if (loginState && loginState.user) {
  // Logged in
  const user = await auth.getCurrentUser();
  console.log("Current user:", user);
} else {
  // Not logged in - use SDK built-in authentication features

  // Collect user's phone number into variable `phoneNum` by providing a input UI

  // Send SMS code
  const verificationInfo = await auth.getVerification({
    phone_number: `+86 ${phoneNum}`,
  });

  // Collect user's phone number into variable `verificationCode` by providing a input UI

  // Sign in
  await auth.signInWithSms({
    verificationInfo,
    verificationCode,
    phoneNum,
  });
}

Initialization rules (Web, @cloudbase/js-sdk):

  • Always use synchronous initialization with the pattern above
  • Do not lazy-load the SDK with import("@cloudbase/js-sdk")
  • Do not wrap SDK initialization in async helpers such as initCloudBase() with internal initPromise caches
  • Keep a single shared app/auth instance in your frontend app; reuse it instead of re-initializing

Web SDK API usage rules

  • Only use documented CloudBase Web SDK methods
  • Before calling any method on app, auth, db, or other SDK objects, confirm it exists in the official CloudBase Web SDK documentation
  • If a method or option is not mentioned in the official docs (for example some guessed method name), do NOT invent or use it

Authentication Best Practices

  1. Must use SDK built-in authentication: CloudBase Web SDK provides complete authentication features, including login by SMS, anonymous login, custom login, etc.
  2. Forbidden to implement login using cloud functions: Do not create cloud functions to handle login logic, this is the wrong approach
  3. User data management: After login, user information can be obtained via auth.getCurrentUser(), then stored to database
  4. Error handling: All authentication operations should include complete error handling logic

Build Process

Web project build process: Ensure npm install command has been executed first, then refer to project documentation for building

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.19%
按下载量换算114

Antigravity

21.37%
按下载量换算84

trae

17.44%
按下载量换算68

Codex

11.66%
按下载量换算46

OpenCode

7.2%
按下载量换算28

Gemini CLI

3.36%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills