Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 953 Bytes

File metadata and controls

28 lines (21 loc) · 953 Bytes

Hermes Host Adapter Notes

Purpose

Thin notes for using Plotloom skills from Hermes. Do not duplicate Plotloom business logic in host adapters.

Expected Skill Location

~/.hermes/profiles/<profile>/skills/ for profile-local skills; this Plotloom repo can also be referenced directly during development.

Skill Installation

Copy or symlink individual directories from this repo:

skills/<name>/

to the host skill directory above. Keep the Plotloom repo skills/ directory as the source of truth while developing.

Expected Tools

  • Markdown/TOML file editing.
  • Shell execution for small deterministic helpers.
  • ffmpeg / ffprobe when stitching or fake video tests are needed.
  • Optional image/video generation tools configured by the host.

Rules

  • Use skills/ as the source of truth.
  • Keep adapters thin.
  • Do not duplicate Plotloom business logic.
  • Do not introduce runtime state, queues, dashboards, or databases.