15f6a6c713
Add operator health checks (make doctor) wrapping platform CLIs, and the fixtures-only daily board skill library with unit tests (make verify).
1.2 KiB
1.2 KiB
Shared skill library
Status: Partially implemented.
Shared deterministic library used by Salon_Assistant skills. All code here is deterministic — no model inference, no network calls. See design/det-vs-inf.md.
Packages
| Package | Status | Purpose |
|---|---|---|
domain.py |
✅ | Domain types: Appointment, Gap, DayBoard, AppointmentStatus |
board_builder.py |
✅ | Deterministic board builder: gaps, confirmation flags, formatting |
providers/scheduling/fixture_provider.py |
✅ | Fixture JSON loader for scheduling data |
providers/scheduling/ |
⏳ | Vagaro / Square adapters (future) |
providers/books/ |
⏳ | QuickBooks Online adapters (future) |
providers/mcp/ |
⏳ | MCP client helpers / allowlist metadata (future) |
Usage
from lumina_skills.domain import Appointment, AppointmentStatus
from lumina_skills.board_builder import build_board, format_board_text
from lumina_skills.providers.scheduling.fixture_provider import load_fixtures
Design references
- Deterministic boundary: design/det-vs-inf.md
- Use cases: design/use-cases.md