with one click
openyggdrasil
// Attaches the current provider session to the shared openyggdrasil memory forest when the session needs durable memory, attachment repair, cold-start health checks, or session-bound inbox access.
// Attaches the current provider session to the shared openyggdrasil memory forest when the session needs durable memory, attachment repair, cold-start health checks, or session-bound inbox access.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | openyggdrasil |
| description | Attaches the current provider session to the shared openyggdrasil memory forest when the session needs durable memory, attachment repair, cold-start health checks, or session-bound inbox access. |
This skill attaches a provider session to openyggdrasil through explicit workspace-local contracts.
Use this skill when:
.yggdrasil/ attachment artifacts do not exist yet;Do not use this skill to:
vault/ by default.do not guess the memory layer
attach to it explicitly
openyggdrasil exists so multiple providers can attach to one shared memory forest while preserving provider, profile, session, source, and lifecycle boundaries.
README.mdcontracts/runtime/vault/common/graphify/Do not depend on private docs, raw provider sessions, or human-local materials during bootstrap.
Use these tools instead of inventing provider-local mutations:
runtime/attachments/validate_attachment.pyruntime/attachments/repair_attachment.pyruntime/attachments/provider_cold_start_healthcheck.pyruntime/attachments/deploy_skill.pyruntime/attachments/deploy_hermes_profile_skill.pyruntime/attachments/deploy_hermes_reasoning_lease_bridge_skill.pyopenyggdrasil is not a second hidden LLM. The active provider supplies the reasoning token and calls repo-owned Python entrypoints through typed contracts.
Before running a production or consumption path:
contracts/module_effort_requirement.v1.schema.json,
contracts/module_effort_plan.v1.schema.json, and
runtime/reasoning/module_effort_requirements.py.Provider effort vocabulary is normalized only through
runtime/cultivation/provider_effort_vocabulary_normalization.py and
contracts/provider_effort_vocabulary_normalization.v1.schema.json. Do not
claim raw provider effort strings are globally equivalent across providers.
Provider-relative reasoning effort is normalized through
runtime/reasoning/provider_effort_normalizer.py and
contracts/provider_reasoning_effort_normalization.v1.schema.json. A
below-baseline provider should receive stronger guidance and compensation
strategies for reasoning-heavy modules; an above-baseline provider may conserve
tokens by selecting one lower effort level when the normalizer says that is
safe.
Work only inside the current workspace unless the user explicitly narrows a different target root.
Every attachment must remain:
Do not invent a fake cross-provider session.
Do not copy whole provider raw session history into openyggdrasil by default.
Preserve raw provenance through:
source_ref;origin_locator;Only use a session-bound inbox:
.yggdrasil/inbox/<provider>/<profile>/<session>.jsonl
If provider metadata is not visible from the current session, do not guess it. Use only observable metadata and conservative defaults where explicitly allowed.
.yggdrasil/;vault/..yggdrasil/healthcheck/... marker;ready, degraded, or not_ready;provider_profile and
provider_session_id.session_uid = <provider_id>:<provider_profile>:<provider_session_id>.provider_descriptor.v1.json;session_attachment.v1.json;inbox_binding.v1.json;turn_delta.v1.jsonl.Use this only for the Hermes provider-skill path:
Hermes provider skill -> openyggdrasil provider skill bridge -> Reasoning Lease typed handoff
Do not replace this with MCP, a generic command gateway, an agent adapter,
foreground .env injection, stdin injection, raw transcript copying, Hermes
source patching, credential/profile copying, or provider state DB harvesting.
Cold start:
python runtime/attachments/deploy_hermes_reasoning_lease_bridge_skill.py \
--profile-name <hermes-profile> \
--workspace-root <openyggdrasil-public-root> \
--hermes-home <hermes-home> \
--cold-start
Cold start may create the Hermes profile skill package, binding artifact, and typed environment contract. These files are not live proof by themselves.
Warm start:
python runtime/attachments/deploy_hermes_reasoning_lease_bridge_skill.py \
--profile-name <hermes-profile> \
--workspace-root <openyggdrasil-public-root> \
--hermes-home <hermes-home> \
--warm-start-check
Warm start is check-only. It must not rewrite the skill package, binding artifact, or environment contract.
Live invocation may be claimed only when Hermes voluntarily invokes the
installed openyggdrasil-reasoning-lease-bridge skill and returns typed refs
that satisfy:
contracts/hermes_provider_skill_bridge_entrypoint.v1.schema.jsonruntime/reasoning/hermes_provider_skill_bridge_entrypoint.pyRequired live refs include typed_task_id, typed_result_ref or
typed_unavailable_ref, before/after main-context-window refs, and Memory
Saver/Finder refs whenever Memory Saver/Finder usage is claimed.
Use this when the provider determines knowledge should be durably preserved beyond the current session.
Display names and compatibility ids:
MS1 = Memory Saver 1 = legacy internal OP1
MF1 = Memory Finder 1 = legacy internal OP2
Use ms1 and mf1 only as ygg command targets after the cold-start health
check confirms ygg is available. Treat MS1 and MF1 as prose/display
labels, not standalone commands. Treat OP1 and OP2 as internal
compatibility ids only.
Dual routing (equal authority):
memory/save request
-> Hermes memory for current-session memory (built-in)
-> ygg tell ms1 for durable Vault save (openyggdrasil)
Entrypoint:
ygg tell ms1 "Decision: <summary> ..."
ygg tell --ptc ms1 "Decision: <summary> ..." # PTC composition path
Both paths must be triggered. Hermes memory handles the session scope; openyggdrasil handles cross-session, cross-provider durability. Neither replaces the other.
Verify with:
ygg status ms1 # Result Receipt check
Use this when the provider needs to recall knowledge from the long-term Vault.
Use MF1 / Memory Finder 1 as the prose/display name. In command examples,
always keep the ygg prefix. Treat OP2 as the legacy internal compatibility
id only.
Entrypoint:
ygg ask mf1 "query"
ygg ask --ptc mf1 "query" # PTC deep_search path
Verify with:
ygg status mf1 # Result Receipt check
The Provider should use retrieved knowledge to continue its reasoning chain. Memory (session) + Vault (cross-session) together form the complete recall surface.
The skill is successful when:
.yggdrasil/ exists in the current workspace;ready, or degraded with explicit non-blocking
user help;The skill is blocked when:
not_ready after bounded retry and fallback
routes.Be conservative, schema-correct, and provenance-visible. Attach the session; do not reinvent the memory system.