소스 정보
- 저장소
- Sovereign-Communication/SCMessenger
- 최근 소스 활동
- 2026년 8월 7일 06:57
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Sovereign-Communication/SCMessenger --skill dreaming명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | dreaming |
| description | Run a dreaming lessons-learned distillation pass. |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["memory","lessons-learned","distillation","consolidation","reflection","dreaming"],"related_skills":[]}} |
A background-style reflection pass that reads the FULL Hermes session history
(the "elongated dream"), distills durable lessons, and writes them back to
memory + skills in compact form. The deliverable is a digest written to the
repo's HANDOFF_AUDIT/ folder.
Use this when the operator asks to:
Intended to eventually run unattended via cron (daily), but cron is OFF until a manual run is proven robust. Manual runs are the primary path today.
operations + skill_manage.HANDOFF_AUDIT/ and summarize to the
operator (who decides whether to keep each change).Run these to assemble the raw material. Do NOT skip; the dream is only as good as its inputs.
# Browse recent session history (most recent first)
session_search() # no args -> recent sessions
session_search(query="<lesson-relevant topics>", limit=5)
# Read current durable memory
read_file(path to MEMORY.md / USER.md) # or use memory tool + current state
Use session_search with targeted queries for the domains the operator cares
about (e.g. "build test compile", "deployment gate", "security review"). Pull
the last several sessions' bookends (goal -> resolution) — those are where
conclusions live. Browse 5-10 sessions minimum for a good dream.
Also list current skills with skills_list() to know what already exists
(avoid duplicating and to spot consolidation candidates).
Given all gathered material, produce FOUR lists:
Rules:
Apply the distillation with atomic, reversible operations:
# memory: use ONE batch operations call for all changes
target="memory" (or "user" for facts about who the user is)
operations=[ {action:add|replace|remove, content, old_text}, ... ]
# skills: create/patch only with explicit operator confirmation
skill_manage(action="patch", name=..., old_string=..., new_string=...)
NEVER delete a skill without operator confirmation — curation is non-destructive (curator archives, never deletes). If a skill is genuinely stale, propose archiving it to the operator rather than deleting.
Write a dated digest to HANDOFF_AUDIT/:
HANDOFF_AUDIT/DREAM_<YYYY-MM-DD>.md
Containing:
Then deliver to the operator: a short summary in chat (or via the orchestrator check-in / on demand, per operator preference) pointing at the digest path. The operator decides whether each change sticks — always offer the option to revert.
tail — that's tail's
exit, not the command's. Capture real exit with ; echo EXIT=$? or grep a
log for failure markers.cargo test --workspace
OOMs the paging file (os error 1455). Use -j 12 when nothing else heavy
runs.skills_list() first.skip_memory=True, so a cron-driven dream MUST do
its memory writes via the memory tool (it does), not rely on injected memory
state.HANDOFF_AUDIT/DREAM_<date>.md and is non-empty.Default distillation model: deepseek/deepseek-v4-flash-0731 (cost-effective;
matches operator's FusionLite budget preference). Cron cadence target: DAILY,
but stays OFF until at least one manual dream run is proven robust end-to-end.