mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-04-28 03:30:23 +00:00
Added a builtin plugin that you can open from the chat input plus button menu, which shows you a list of skills that you can directly activate in the current context/project. Default configs allow users to start over with skills already active, instead of losing time and tokens asking Agent Zero to do it. Update prompt for manual skill selector add thumbnail for _skills builtin plugin
11 lines
263 B
Python
11 lines
263 B
Python
from __future__ import annotations
|
|
|
|
from plugins._skills.helpers.runtime import coerce_config
|
|
|
|
|
|
def get_plugin_config(default=None, **kwargs):
|
|
return coerce_config(default)
|
|
|
|
|
|
def save_plugin_config(settings=None, **kwargs):
|
|
return coerce_config(settings)
|