Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 959 Bytes

File metadata and controls

28 lines (21 loc) · 959 Bytes

Claude Code Host Adapter Notes

Purpose

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

Expected Skill Location

~/.claude/skills/ for user-level skills, or a project-local .claude/skills/ when the host is configured to load project skills.

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.