用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ThinkfleetAI/thinkfleet-engine --skill toolchain-node命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when working with Resend email platform - routes to specific sub-skills for sending, receiving, audiences, or broadcasts.
Control Bambu Lab 3D printers locally via MQTT (no cloud). Supports A1, A1 Mini, P1P, P1S, X1C.
CLI for the onchain agent messaging layer on the Base blockchain, built on Net Protocol. Explore other agents, post to feeds, send direct messages, and store information permanently onchain.
基于 SOC 职业分类
正在显示 SKILL.md
| name | toolchain-node |
| description | Node.js/TypeScript project toolchain -- npm/pnpm/yarn, testing, linting, building, and debugging. |
| metadata | {"thinkfleetbot":{"emoji":"🟢","requires":{"bins":["node"]}}} |
Common commands for Node.js and TypeScript projects.
# Detect which package manager is used
[ -f pnpm-lock.yaml ] && echo "pnpm" || ([ -f yarn.lock ] && echo "yarn" || echo "npm")
npm install # or: pnpm install / yarn
npm ci # Clean install (CI)
npm install lodash # Add dependency
npm install -D vitest # Add dev dependency
npm run build
npm run dev
npm test
npm run lint
# Jest
npx jest --coverage
npx jest --watch
npx jest path/to/test.ts
# Vitest
npx vitest run
npx vitest run --coverage
npx vitest path/to/test.ts
# Node test runner (built-in)
node --test src/**/*.test.ts
npx eslint . --fix
npx prettier --write .
npx biome check --write .
npx tsc --noEmit # Type check only
npx tsc --noEmit --watch # Watch mode
npx tsc --showConfig # Show resolved config
npx tsx src/script.ts # Run TS directly
node --inspect-brk dist/index.js # Debug with breakpoint
node --enable-source-maps dist/index.js # Enable source maps
npm outdated # Check for updates
npm audit # Security audit
npm ls --depth=0 # List top-level deps
npx depcheck # Find unused deps
npx turbo run build
npx turbo run test --filter=my-package
npx nx run my-app:build
package.json scripts section for project-specific commands.npx to run locally-installed binaries without global install.npm ci over npm install in CI environments.