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

coding-web编码网

Agent Skill

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

总安装

618

周安装

26

GitHub Stars

4

下载量

216
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

coding-web 支持全栈 Web 开发,涵盖 React/Vue 前端和 Node.js 后端。

  • 适用于快速原型搭建或 API 集成,提供脚手架和调试能力。
  • 可生成 HTML/CSS/JS 模板,但不处理 SEO 或部署流水线。
  • 安装前请确认是否已有 package.json 或 Cargo.toml 配置文件。
  • coding-web 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

coding-web

Purpose

This skill enables OpenClaw to assist with full-stack web development using JavaScript, TypeScript, and Node.js, focusing on generating, debugging, and optimizing code for web applications.

When to Use

Use this skill when building or maintaining web projects involving frontend (e.g., React, Vue) and backend (e.g., Node.js servers), especially for tasks like scaffolding apps, fixing bugs in JS/TS code, or integrating APIs. Apply it in iterative development cycles, such as rapid prototyping or migrating legacy code to modern standards.

Key Capabilities

  • Generate boilerplate for Node.js servers: Use to create Express apps with routes, e.g., output a server.js file.
  • Handle TypeScript conversions: Convert JS to TS, ensuring type safety; for example, add interfaces to existing functions.
  • Optimize frontend code: Minify and bundle JS/TS assets; invoke with parameters to target specific frameworks like React.
  • Debug common web errors: Identify and suggest fixes for issues like CORS in Node.js or state management in React components.
  • Integrate with databases: Generate code for MongoDB or SQL connections in Node.js, using async/await patterns.
  • Code snippets: For a simple React component, OpenClaw might output: import React from 'react'; const MyComponent = () => <div>Hello</div>; export default MyComponent;

Usage Patterns

To invoke this skill, prefix commands with openclaw coding-web in your terminal or integrate via OpenClaw's API. Always specify the subcommand first (e.g., generate, debug), followed by options like --language ts or --framework react. For API calls, use POST requests to /api/coding-web/execute with a JSON payload containing {"action": "generate", "params": {"type": "component", "name": "UserForm"}}. Set environment variables for authentication, e.g., export $OPENCLAW_API_KEY before running commands. Chain skills by piping outputs, like using output from a database skill as input here.

Common Commands/API

  • CLI Command: openclaw coding-web generate --type server --framework express --port 3000 – Creates a basic Express server; add --language ts for TypeScript.
  • CLI Command: openclaw coding-web debug --file app.js --issue "undefined variable" – Analyzes and patches errors in the specified file.
  • API Endpoint: POST to /api/coding-web/generate with body {"codeType": "component", "language": "ts", "details": {"name": "Login", "props": ["username"]}} – Returns generated code as JSON.
  • Config Format: Use a JSON config file, e.g., {"defaultLanguage": "ts", "framework": "react", "apiKey": "$OPENCLAW_API_KEY"}, placed in .openclaw/config.json.
  • Code Snippet: For API response handling: const response = await fetch('/api/coding-web/generate', {method: 'POST', body: JSON.stringify({action: 'generate'})}); const code = await response.json();
  • Authentication: Always include $OPENCLAW_API_KEY in headers for API calls, e.g., headers: {'Authorization':Bearer ${process.env.OPENCLAW_API_KEY}}.

Integration Notes

Integrate this skill with IDEs like VS Code by adding it to your extensions or using OpenClaw's plugin system; install via npm install openclaw-vscode. For CI/CD, embed in scripts like GitHub Actions: run: openclaw coding-web generate --type test --file src/app.js. Handle dependencies by specifying Node.js versions in package.json, e.g., "engines": {"node": ">=14"}. If using with other tools, export generated code as modules: module.exports = generatedCode;. Ensure your environment has Node.js installed; check with node -v before invoking.

Error Handling

When errors occur, check the exit code from CLI commands (e.g., code 1 for failures) and parse JSON error responses from APIs, which include fields like {"error": "Invalid params", "details": "Missing --type flag"}. For common issues, retry with corrected inputs, e.g., if a generation fails due to missing dependencies, run npm install express first. Use try-catch in code snippets: try {await openclawAPI.call('coding-web', {action: 'generate'});} catch (e) {console.error(e.message); // e.g., "API key required"}. If authentication fails (e.g., 401 status), verify $OPENCLAW_API_KEY is set and not expired.

Concrete Usage Examples

  1. Example 1: Generate a Node.js Express Server Use: openclaw coding-web generate --type server --framework express --language js This creates a basic server file: const express = require('express'); const app = express(); app.listen(3000, () => console.log('Server running')); Then, run it with node server.js to start the server on port 3000.
  2. Example 2: Debug and Fix a TypeScript React Component Use: openclaw coding-web debug --file MyComponent.tsx --issue "Type error in props" It might output a fixed snippet: interface Props {name: string;} const MyComponent: React.FC<Props> = ({name}) => <div>{name}</div>; Integrate by copying the output into your project and rebuilding with tsc.

Graph Relationships

  • Related to: "coding-backend" (shares Node.js capabilities)
  • Depends on: "tools-node" (for Node.js runtime access)
  • Connected to: "web-frontend" (for frontend-specific tasks like React/Vue)
  • Overlaps with: "fullstack-dev" (in cluster "coding" for broader development)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.8%
按下载量换算77

Claude

27.85%
按下载量换算60

Cursor

18.61%
按下载量换算40

Gemini CLI

8.5%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills