用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/hristo2612/jinn --skill find-and-install命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | find-and-install |
| description | Find and install skills from skills.sh when a capability gap is detected |
$JINN_HOME is the active instance home and defaults to ~/.jinn.
This skill activates when you detect a capability gap that a community skill might fill, the user explicitly asks to find or install a skill and a task would benefit from a specialized skill you don't currently have
Run a search using the skills CLI:
npx skills find [query]
Review the results and assess trust level before suggesting:
vercel-labs, anthropics, microsoft): Suggest confidentlyOnce the user approves (or for 🟢 VERIFIED skills when you're confident it fits):
npx skills add <owner/repo@skill> -g -y
This places files into ~/.claude/skills/<name>/ or ~/.agents/skills/<name>/.
cp -r ~/.claude/skills/<name>/ "$JINN_HOME/skills/<name>/"
The {{portalName}} file watcher will detect the new directory and create the appropriate symlinks automatically.
Read $JINN_HOME/skills.json, append the new skill entry, and write it back.
The manifest is a flat array of entries:
[
{
"name": "<name>",
"source": "<owner/repo@skill>",
"installedAt": "<ISO 8601 timestamp>"
}
]
Read the newly installed $JINN_HOME/skills/<name>/SKILL.md and follow its instructions to complete the current task.
If npx skills find returns no results:
skill-creator skill)User asks to deploy to Vercel:
npx skills find "vercel deploy"
# → vercel-labs/ai-skills@vercel-deploy (🟢 VERIFIED, 5200 installs)
npx skills add vercel-labs/ai-skills@vercel-deploy -g -y
cp -r ~/.claude/skills/vercel-deploy/ "$JINN_HOME/skills/vercel-deploy/"
# → update skills.json → read SKILL.md → follow deploy instructions
User asks for an obscure skill:
npx skills find "arduino serial monitor"
# → random-user/arduino-tools@serial-monitor (🔴 UNKNOWN, 12 installs)
# → Warn user, offer to preview SKILL.md before installing