ソース情報
- リポジトリ
- hristo2612/jinn
- ソースの最終更新活動
- 2026年8月5日 17:36
- 検出された SKILL.md の言語
- 英語
- スター
- 313
- フォーク
- 73
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/hristo2612/jinn --skill find-and-installコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
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, add the new skill entry, and write it back.
The manifest format:
{
"installed": {
"<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