What problem does it solve?
This Skill provides a centralized, persistent storage layer for Claude Code skills, enabling them to save, retrieve, and manage data across different sessions and executions.
Core Features & Use Cases
- Data Persistence: Store and retrieve any type of data (configurations, user states, logs, etc.) in a structured PostgreSQL database.
- Cross-Session Memory: Allows skills to remember information between invocations, crucial for complex workflows.
- Shared Data Storage: Enables multiple skills to access and modify a common data store, facilitating inter-skill communication and data synchronization.
- Use Case: A
food-tracker skill can save daily meal entries, and a summary-reporter skill can later query this data to generate weekly nutritional reports.
Quick Start
Use the state-db skill to save a new entry for the food-tracker skill with the data {"meal": "lunch", "items": ["rice", "chicken"], "phosphorus_mg": 250}.