SSI LogoSSI

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-scripts

Example usage

  1. Install the skill (above).

  2. Ask your agent:

    "Create an SSI service script that checks disk usage on / every 15 minutes, warning at 80% and critical at 95%."

  3. The agent generates the script from the bundled template and iterates until scripts/validate.sh reports all PASS.

  4. Register it with the agent:

    bash
    1chmod +x disk-usage.bash
    2ssi service add disk-usage.bash
    3ssi service run disk-usage