AI Skill
There is an AI skill available for SSI: ssi-service-scripts.
It helps you quickly create a BASH script that is SSI compatible — a self-contained monitoring check the SSI Agent can schedule and report on. Install it into your coding agent, describe what to monitor, and the agent generates a script that passes scripts/validate.sh.
Installation
- With npx
bash
1npx skills add RemiZlatinis/ssi-skills --skill ssi-service-scripts- Or with bunx
bash
1bunx skills add RemiZlatinis/ssi-skills --skill ssi-service-scriptsExample usage
-
Install the skill (above).
-
Ask your agent:
"Create an SSI service script that checks disk usage on
/every 15 minutes, warning at 80% and critical at 95%." -
The agent generates the script from the bundled template and iterates until
scripts/validate.shreports all PASS. -
Register it with the agent:
bash1chmod +x disk-usage.bash 2ssi service add disk-usage.bash 3ssi service run disk-usage