klytos-options-storage

Store and retrieve plugin options and site configuration via Klytos CMS APIs.

12|2|Updated Mar 26, 2026
One-click install
npx skills add https://github.com/joseconti/klytos --skill klytos-options-storage
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: klytos-options-storage
Source: https://github.com/joseconti/klytos/tree/main/.claude/skills/klytos-options-storage
Command: npx skills add https://github.com/joseconti/klytos --skill klytos-options-storage

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Plugin developers need a reliable way to persist settings and site configuration across plugins and sessions.

Core Features & Use Cases

  • Options API: store, read, and delete plugin settings as namespaced keys.
  • Site Config: manage global site-wide configuration such as site_name, language, and SEO settings.
  • Storage API: handle complex data collections for advanced plugin data and cache. Use cases include uninstall cleanup, cross-plugin preferences, and bulk migrations.

Quick Start

Use klytos_set_option to store a setting and klytos_get_option to retrieve it, then verify the value is available through Site Config for global access.

Frequently Asked Questions about klytos-options-storage

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I store and retrieve plugin settings in Klytos CMS?▼

To store and retrieve plugin settings in Klytos CMS, use the klytos_set_option and klytos_get_option functions. These namespaced keys ensure your plugin preferences persist safely across sessions.

What is the best way to manage global site configuration like SEO settings?▼

Global site configuration like SEO settings is managed via the Site Config API. It handles site-wide preferences including site_name and language, ensuring global access to your configuration values.

Does this plugin storage API handle data cleanup when a plugin is uninstalled?▼

Yes, the plugin storage API handles uninstall cleanup. It safely removes persisted data and namespaced options during the plugin lifecycle, ensuring no orphaned settings remain in the database.

Can I use this to handle complex data collections for plugin cache?▼

You can use the Storage API to handle complex data collections for advanced plugin data and cache. It supports cross-plugin preferences and bulk data migrations beyond simple key-value settings.

How does MCP integration affect safe data access for site config?▼

MCP integration provides safe data access for site config by ensuring explicit dependency handling and component management. This architecture prevents unauthorized reads or writes to your global site configuration.