بنقرة واحدة
self-heal
Diagnose and fix problems in {{portalName}}'s configuration and runtime
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Diagnose and fix problems in {{portalName}}'s configuration and runtime
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create polished Jinn product showcase videos, GIFs, and README demo assets from isolated mock or sandbox instances. Use when asked to record a Jinn web UI walkthrough, update the README showcase GIF, build a mock gateway or clean test instance, script UI animations, capture Playwright video, convert WebM to MP4/GIF, or document video-capture gotchas for the Jinn platform.
Walk a new user through a warm, game-like first-run setup of {{portalName}} — get to know them, hatch their first employee, demo delegation, and create their first cron. Every step is skippable.
Use when cutting a new jinn-cli release for this repo - bumping the version, publishing to npm, creating the GitHub release, and letting the Homebrew formula auto-update. Covers the exact order that matters (npm publish BEFORE publishing the GitHub release).
Create, edit, delete, enable, disable, and list scheduled cron jobs
Find and install skills from skills.sh when a capability gap is detected
Manage the AI organization - hire, fire, promote, delegate, and review boards
| name | self-heal |
| description | Diagnose and fix problems in {{portalName}}'s configuration and runtime |
This skill activates when {{portalName}} is experiencing issues, errors, or unexpected behavior. It also activates when the user asks to diagnose problems, check system health, or fix something that is not working.
Work through these checks in order. Stop and fix issues as you find them.
Read ~/.jinn/logs/gateway.log and look for:
Summarize any problems found to the user.
Read ~/.jinn/config.yaml and verify:
gateway.port field is a valid number (default 7777)gateway (with port) and engines (with a default and a config block for that engine)engines.default is one of: claude, codex, antigravityengines.<name>.model (e.g. engines.claude.model)Check that the configured AI engine is installed and accessible:
claude --version and confirm it returns a version numbercodex --version and confirm it returns a version numberengines.antigravity.bin is on the PATHIf the engine command is not found, inform the user that the engine is not installed or not on their PATH.
Look at the session registry for stuck sessions:
~/.jinn/sessions/registry.db (SQLite)running that have not been updated recently (more than 30 minutes old)~/.jinn/tmp/ contains stale files that should be cleaned upIf the gateway appears to be in a bad state (crash loops, unresponsive, port conflicts):
Tell the user to run:
jinn stop && jinn start
If temp files are stale or causing issues:
Delete all contents of ~/.jinn/tmp/ but keep the directory itself.
If any JSON file (board.json, jobs.json, etc.) is malformed:
<filename>.bak and create a fresh default (empty array [] for boards and job files).If any YAML file (config.yaml, employee personas) is malformed:
If sessions are stuck in running status:
failed or cancelled in the session registry.If the gateway cannot bind to its configured port:
lsof -i :<port>config.yaml.For understanding {{portalName}}'s architecture and component relationships, refer to the documentation in ~/.jinn/docs/ if available.