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

coding-node编码节点

Agent Skill

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

总安装

380

周安装

16

GitHub Stars

4

下载量

133
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

coding-node 基于 Node.js 22+ 与 ESM 模块,支持 Express、Fastify 与 Hono 框架。

  • 擅长处理异步流、事件循环诊断与 npm/pnpm 依赖解析,适用于服务端 API 开发。
  • 可生成中间件、路由与 WebSocket 握手逻辑,但不支持浏览器 DOM 操作。
  • 使用前请确认 package.json 已启用 type: module,并检查 node 版本不低于 22.0.0。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

coding-node

Purpose

This skill provides expertise in Node.js 22 and above, covering asynchronous programming patterns, ECMAScript Modules (ESM), package managers like npm and pnpm, the event loop, streams, and frameworks such as Express, Fastify, and Hono. Use it to guide users in building efficient, modern server-side applications.

When to Use

Apply this skill when users need to handle asynchronous operations in Node.js, manage dependencies with npm or pnpm, debug event loop issues, process streams, or set up web servers with Express, Fastify, or Hono. Use it for backend development tasks like API creation, file handling, or real-time applications in JavaScript environments.

Key Capabilities

  • Async Patterns: Use async/await for non-blocking code; e.g., async function fetchData() {const data = await fetch('url'); return data;}.
  • ESM Support: Import modules with import syntax; e.g., import express from 'express'; in Node.js 22+ files with .mjs extension or "type": "module" in package.json.
  • Package Managers: Handle dependencies via npm (e.g., npm install express --save) or pnpm (e.g., pnpm add fastify); use pnpm for faster installs with workspace support.
  • Event Loop: Explain and optimize for blocking operations; use process.nextTick() to schedule callbacks before the next event loop phase.
  • Streams: Process data in chunks with Readable, Writable, or Transform streams; e.g., const fs = require('fs'); const readStream = fs.createReadStream('file.txt'); readStream.on('data', chunk => console.log(chunk));.
  • Frameworks: Set up servers with Express (e.g., app.use(express.json())), Fastify (e.g., fastify.get('/path', handler)), or Hono (e.g., app.get('/route', c => c.text('Hello'))).

Usage Patterns

To accomplish tasks, always specify Node.js version 22+ in project setup. For ESM, add "type": "module" to package.json and use import statements. For async tasks, wrap code in try-catch blocks with async functions. When using npm, run npm init -y to create a package.json, then install packages. For pnpm, initialize with pnpm init and use it as a drop-in replacement for npm commands. To handle streams, pipe them directly: e.g., readStream.pipe(writeStream). For frameworks, create an HTTP server instance and define routes; e.g., start Express with app.listen(3000).

Common Commands/API

  • Npm Commands: Initialize project: npm init -y. Install package: npm install express --save-prod. Update dependencies: npm update. Run scripts: npm run start from package.json.
  • Pnpm Commands: Add package: pnpm add fastify. Remove package: pnpm remove package. Install all: pnpm install.
  • API Endpoints: In Express, define routes like app.get('/users', (req, res) => res.json(users)). In Fastify, use fastify.post('/login', async (req, reply) => {/* auth logic */ reply.send({token: 'abc'});}). In Hono, set up: const app = new Hono(); app.get('/api/data', c => c.json({data: 'value'}));.
  • Event Loop Interactions: Use setImmediate() for I/O callbacks; e.g., setImmediate(() => console.log('After current event loop'));.
  • Streams API: Create a readable stream: const {Readable} = require('stream'); const readable = Readable.from(['line1', 'line2']); readable.pipe(process.stdout);. If API keys are needed (e.g., for external services), set them as environment variables: process.env.API_KEY = 'your_key', and access via $YOUR_API_KEY in commands.

Integration Notes

Integrate this skill with other tools by using Node.js as a runtime. For example, combine with databases via mongoose for MongoDB: install with pnpm add mongoose, then connect in code: const mongoose = require('mongoose'); mongoose.connect(process.env.MONGO_URI);. Use dotenv for environment variables: install npm install dotenv, then require and configure: require('dotenv').config(); const key = process.env.API_KEY;. For deployment, export servers to tools like Vercel or Heroku; e.g., set start script in package.json as "start": "node server.js". Ensure compatibility by specifying engine in package.json: "engines": {"node": ">=22"}. When integrating streams, chain with other modules like zlib for compression: readStream.pipe(zlib.createGzip()).pipe(writeStream).

Error Handling

Always use try-catch for async functions: e.g., try {const result = await someAsyncFunction();} catch (error) {console.error(error.message);}. For streams, listen for 'error' events: e.g., readStream.on('error', err => {console.error('Stream error:', err); process.exit(1);}). In Express, use middleware for errors: app.use((err, req, res, next) => {res.status(500).send('Server Error');}). For npm/pnpm, check exit codes: e.g., in scripts, use if [$? -ne 0]; then echo "Command failed"; fi. Validate inputs to prevent event loop blocks, and use process.on('uncaughtException', (err) => {console.error(err); process.exit();}) for unhandled errors.

Concrete Usage Examples

  1. Set Up a Basic Express Server: Create a file server.js with: import express from 'express'; const app = express(); app.get('/', (req, res) => res.send('Hello World')); app.listen(3000, () => console.log('Server running'));. Run it with node --experimental-vm-modules server.js if using ESM, then access http://localhost:3000.
  2. Process a File Stream with Pnpm: First, install dependencies: pnpm add fs. Then, in code: const fs = require('fs'); const readStream = fs.createReadStream('input.txt'); readStream.on('data', chunk => console.log(chunk.toString())); readStream.on('end', () => console.log('Done'));. Execute with node script.js to read and log file contents in chunks.

Graph Relationships

  • Related to: coding (same cluster), as it shares JavaScript fundamentals.
  • Connected to: other coding skills via tags like "nodejs" and "javascript", potentially linking to frontend skills for full-stack development.
  • Integrates with: tools in the "coding" cluster, such as database or deployment skills, for end-to-end application building.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.32%
按下载量换算48

Claude

29.77%
按下载量换算40

Cursor

20%
按下载量换算27

Gemini CLI

10.91%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills