Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计异常

web网络

Agent Skill

web 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

416

周安装

17

GitHub Stars

4

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

web 用于指导全栈 Web 项目开发与技术选型决策。

  • 支持前端框架(如 React)与后端服务(如 Express)集成建议。
  • 可制定项目结构与部署策略,确保可扩展性与维护性。
  • 适用于新项目启动或遗留系统重构场景。web 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 避免用于移动端或嵌入式系统等非 Web 专用领域。

SKILL.md

web

Purpose

This skill manages core web development tasks, including setting up project structures, selecting appropriate tooling (e.g., React for frontend, Express for backend), and making deployment decisions (e.g., choosing AWS vs. Heroku). It ensures projects follow best practices for scalability and maintainability.

When to Use

Use this skill when starting a new web project, refactoring existing ones, or deciding on tech stacks. For example, apply it for full-stack apps needing frontend-backend integration, or when deploying to cloud services. Avoid it for specialized areas like mobile apps or data science.

Key Capabilities

  • Generate project structures: Creates directories like /src for code, /public for assets, and config files (e.g., package.json for Node.js).
  • Tooling selection: Recommends based on requirements, e.g., suggest Webpack for bundling or Babel for transpilation.
  • Deployment decisions: Evaluates options like Docker containers or serverless (AWS Lambda), considering factors like cost and scalability.
  • Integration with version control: Automatically sets up.gitignore for web projects.

Usage Patterns

Invoke this skill via OpenClaw's API by sending a POST request to /skills/web with a JSON payload, e.g., {"action": "setup", "params": {"type": "full-stack"}}. In code, use it within a script: import the skill module and call methods like skill.web.setupProject(options). Always pass required env vars, such as $WEB_API_KEY for authenticated operations. For CLI, run openclaw web --action setup --params '{"framework": "react"}' to initialize a project.

Common Commands/API

  • API Endpoint: POST /skills/web/setup – Requires JSON body like {"projectName": "myapp", "structure": {"frontend": "react", "backend": "express"}}. Include auth header: Authorization: Bearer $WEB_API_KEY.
  • CLI Command: openclaw web generate --type full-stack --tools webpack,babel – Flags: --type (e.g., "spa" for single-page app), --tools (comma-separated list).
  • Code Snippet: import openclaw response = openclaw.invoke('web', {'action': 'selectTool', 'criteria': 'fast-rendering'}) print(response['recommendation']) # Outputs e.g., "React"
  • Config Format: Use YAML for project configs, e.g.: project: frontend: react backend: node deployment: docker

Integration Notes

Integrate with other OpenClaw skills by chaining calls, e.g., after web setup, invoke a "deploy" skill. Set env vars like $WEB_API_KEY for API access. For external tools, pipe outputs: run npm install post-setup via subprocess calls. Ensure compatibility by checking versions, e.g., use Node.js 14+ for modern web projects. If using with CI/CD, export configs as JSON for tools like GitHub Actions.

Error Handling

Check response status codes: If API returns 400, log the error message (e.g., "Invalid project type") and retry with corrected params. For CLI, handle failures with try-catch: e.g., in Python, use try: subprocess.run(['openclaw', 'web', 'setup']) except subprocess.CalledProcessError as e: print(e.output). Common errors include missing $WEB_API_KEY (resolve by setting it in.env files) or invalid flags (e.g., --tools with unsupported values). Always validate inputs before calling, e.g., ensure "framework" is in ["react", "vue"].

Concrete Usage Examples

  1. Setting up a basic web project: Use this to create a React-Node.js app. Command: openclaw web setup --name myapp --frontend react --backend express. This generates a structure with /src/client for React code and /src/server for Express routes. Follow up with npm install in the project directory.
  2. Making deployment decisions: For a production app, invoke via API: POST /skills/web/deploy with body {"app": "myapp", "provider": "aws", "type": "ec2"}. It recommends a Docker-based setup, outputting a config like Dockerfile: FROM node:14; COPY. /app;. Use this to automate deployment scripts.

Graph Relationships

  • Related to cluster: web-dev (e.g., shares nodes with skills like "frontend" and "backend").
  • Connected via tags: "web" (links to skills in development cluster), "development" (edges to tools like "git" or "docker").
  • Dependencies: Requires "auth" for API calls, integrates with "deployment" skills for post-setup actions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.48%
按下载量换算50

Claude

30.04%
按下载量换算42

Cursor

17.13%
按下载量换算24

Gemini CLI

8.32%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/alphaonedev/openclaw-graph --skill web 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills