Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 833 Bytes

File metadata and controls

22 lines (16 loc) · 833 Bytes

Layout (2026-07-24)

Structure

  • Live skill: ~/.hermes/skills/software-development/scripts-python/
  • Git package (source of truth): ~/.hermes/projects/scripts-python/ = GitHub repo (not a second live install)
  • Profiles load the skill via config.yaml skills.external_dirs (auto load + version-bump rewrites)
  • Skill version 1.0.0

Operator flow

  1. Edit/test in the git repo: ~/.hermes/projects/scripts-python/skills/software-development/scripts-python/
  2. Commit + push: cd ~/.hermes/projects/scripts-python && git push
  3. Sync out to the live skill:
rsync -a --delete \
  ~/.hermes/projects/scripts-python/skills/software-development/scripts-python/ \
  ~/.hermes/skills/software-development/scripts-python/

The git repo is edited first; the live skill is a mirror produced by rsync.