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

nodejsNode.js 日程管理

Agent Skill

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

总安装

533

周安装

22

GitHub Stars

公开资料未说明

下载量

174
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ulpi-io/skills --skill nodejs

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 信息。

  • 适合围绕代码变更或协作事项进行整理。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。nodejs 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 注意是否会触发联网或命令执行操作。

SKILL.md

Non-negotiable rules:

  1. Read references/stack.md first to determine the runtime (Node.js or Bun), framework, and locked decisions.
  2. Then load only the references needed for the actual task.
  3. TypeScript strict mode — no any, no implicit returns, no unchecked index access.
  4. All async functions must handle errors — no unhandled promise rejections. Use try/catch or .catch() at every boundary.
  5. Input validation at system boundaries — Zod schemas on every external input (request bodies, query params, env vars, CLI args). Never trust req.body.
  6. Structured logging via pino — no console.log in production code. JSON to stdout, parsed by log aggregators.
  7. Graceful shutdown — handle SIGTERM/SIGINT, drain connections, finish in-flight work, close DB pools.
  8. No secrets in code or logs — env vars validated at startup, never logged, never in error responses.

nodejs

Inputs

  • $request: The backend task, subsystem, bug, or feature being worked on

Goal

Route Node.js/Bun backend work through the project's conventions so implementation follows the established patterns for server architecture, data access, error handling, and deployment.

Step 0: Read the stack contract

Always start with:

  • references/stack.md

That establishes: runtime (Node.js or Bun), framework (Express/Fastify/Hono/none), ORM, test runner, package manager, and locked dependency choices.

If bun.lockb or bunfig.toml exists, the runtime is Bun — also load references/bun-runtime.md for native API differences.

Success criteria: The project's runtime, framework, and toolchain choices are explicit before implementation starts.

Step 1: Load only the relevant references

Use the routing table to pick reference files. Do not bulk-load the full reference tree.

TaskRead
Runtime, TypeScript, package manager, locked depsreferences/stack.md
Folder conventions, entry points, monorepo layoutreferences/project-structure.md
Express/Fastify/Hono patterns, middleware, routingreferences/http-server.md
REST conventions, versioning, pagination, error responsesreferences/api-design.md
Zod/AJV input validation, DTO patternsreferences/validation.md
Prisma/Drizzle/Knex, migrations, connection poolingreferences/database.md
JWT, sessions, OAuth2, RBAC, middleware guardsreferences/auth.md
Error classes, async error boundaries, HTTP error responsesreferences/error-handling.md
pino structured logging, request correlation, log levelsreferences/logging.md
vitest/jest/bun test, supertest, test factories, coveragereferences/testing.md
Promises, streams, worker threads, AbortController, shutdownreferences/async-patterns.md
helmet, CORS, rate limiting, input sanitization, dep auditreferences/security.md
Redis, in-memory caching, cache invalidation patternsreferences/caching.md
BullMQ, job patterns, retry strategies, dead-letter queuesreferences/queues-jobs.md
Env validation, dotenv, config modules, secrets managementreferences/config.md
OpenTelemetry, health checks, metrics, distributed tracingreferences/observability.md
Multi-stage Dockerfile,.dockerignore, prod vs dev imagesreferences/docker.md
ws/Socket.io, connection lifecycle, scaling, roomsreferences/websockets.md
commander/yargs, argument parsing, exit codes, stdin/stdoutreferences/cli.md
Bun-native APIs, bun test, bun build, Bun.serve, Bun.$references/bun-runtime.md

Multiple tasks? Read multiple files. The references are self-contained.

Success criteria: Only the task-relevant backend conventions are in play.

Step 2: Implement with the core backend guardrails

Keep these rules active:

  • TypeScript strict mode with noUncheckedIndexedAccess
  • all external input validated at the boundary (Zod schemas)
  • errors are typed, caught, and returned as structured HTTP responses
  • logging via pino child loggers with request correlation IDs
  • database access through the project's ORM/query builder, not raw SQL strings
  • mutations wrapped in transactions where atomicity matters
  • graceful shutdown: SIGTERM handler drains server, closes pools, exits cleanly
  • env vars validated at startup — fail fast on missing required config
  • no any, no as type assertions unless justified with a comment
  • if Bun runtime: prefer Bun.serve(), Bun.file(), bun test over Node.js equivalents

Success criteria: The change matches the project's backend architecture instead of generic defaults.

Step 3: Verify the affected surface

Use the narrowest relevant verification:

  • unit tests (vitest run, jest, or bun test)
  • integration tests with supertest or actual HTTP calls
  • type checking (tsc --noEmit)
  • linting (eslint.)
  • if Docker: build the image and verify it starts

Success criteria: The changed backend surface still builds, type-checks, and passes tests.

Guardrails

  • Do not inline the whole Node.js handbook in SKILL.md.
  • Do not skip references/stack.md.
  • Do not use console.log in production code — use pino.
  • Do not bypass input validation at API boundaries.
  • Do not leave unhandled promise rejections.
  • Do not hardcode secrets, ports, or environment-specific values.
  • Do not add disable-model-invocation; this is a normal domain skill.

When To Load References

  • references/stack.md Always.
  • references/bun-runtime.md When the project uses Bun (detected via bun.lockb or bunfig.toml).
  • then only the task-relevant files under references/

Output Contract

Report:

  1. which references were loaded
  2. the architecture pattern chosen
  3. the change made
  4. the verification run

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.47%
按下载量换算62

Claude

29.12%
按下载量换算51

Cursor

21.08%
按下载量换算37

Gemini CLI

9.93%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills