在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用help
星标3
分支1
更新时间2026年5月30日 01:17
How do I do X?
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
How do I do X?
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Application programming interface.
Does CI work?
Did it work?
Is everything okay?
Is it running?
Does this meet standards?
| name | help |
| description | How do I do X? |
| license | MIT |
| metadata | {"author":"vant","version":"1.0"} |
How do I do X?
| Need | Go To |
|---|---|
| Run something | # Run |
| Understand code | # Read |
| Fix something | # Debug |
| Check something | # Verify |
| Build something | # Build |
| Find something | # Search |
# Check package.json for scripts
cat package.json | grep -A20 '"scripts"'
# Common commands
npm install
npm run dev
npm test
npm run build
npm start
# Edit scripts in package.json
nano package.json
# CLI: main file
head -20 bin/*
# Library: main export
grep "^module.exports" lib/*.js | head -10
# What does it use?
grep -h "^const\|^import" *.js | sort -u
| Error | Fix |
|---|---|
| Cannot find module | npm install |
| Syntax error | Check line number |
| Auth error | Check API keys |
| Port in use | Kill process: lsof -i :port |
# Test the thing
npm test
# Check output
node file.js
# Verify version
node -v
npm -v
grep build package.json
npm run build # Frontend
npm run package # Backend
npm publish # npm
git push # deploy
# Find string
grep -r "string" .
# Find function
grep -r "function name" .
# Find file
find . -name "*.js"
When asking for help, include:
Role: Helper
Input: What you need
Output: How to do it