agent-zero/plugins/_skills/hooks.py
Alessandro 79f948b076 Improve active skills management and simplify Skills UI
Unify skill handling layer and raise the active skills cap to 20.

The Skills UI now presents a simpler checklist-style flow for selecting active
skills, with live chat activation and saved defaults using the same visible list.
Skill contents can be opened in a read-only Ace viewer via the existing markdown
modal.
2026-04-21 05:47:22 +02:00

11 lines
276 B
Python

from __future__ import annotations
from helpers.skills import normalize_skills_config
def get_plugin_config(default=None, **kwargs):
return normalize_skills_config(default)
def save_plugin_config(settings=None, **kwargs):
return normalize_skills_config(settings)