Expand description
Context storage and persistence.
This module provides functionality for persisting execution contexts to the filesystem and loading them back. Contexts are stored in TOML format.
§Storage Layout
~/.skill-engine/
├── contexts/
│ ├── index.json # Context index for fast listing
│ ├── {context-id}/
│ │ ├── context.toml # Context definition
│ │ └── .backup/ # Backup versions
│ │ ├── context.toml.1 # Previous version
│ │ └── context.toml.2 # Older version
└── templates/
└── contexts/
└── default.toml # Default context templateStructs§
- Backup
Info - Information about a backup version.
- Context
Index - Context index for fast listing.
- Context
Index Entry - Entry in the context index.
- Context
Storage - Storage layer for execution contexts.