Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める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 職業分類に基づく
| 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
Application programming interface.
Does CI work?
Did it work?
Is everything okay?
Is it running?
Does this meet standards?