Skills#
What skills are#
In EAA, a skill is a reusable, markdown-first task package that the agent can discover and use at runtime. Skills are not Python subclasses. Instead, they are directories of documentation that the agent can inspect through normal filesystem tools.
At load time, EAA:
scans the configured skill directories for
SKILL.mdextracts metadata such as the skill name, description, and
SKILL.mdpathinjects that metadata into the system prompt
injects only the selected
SKILL.mdinto context when the user enters/skill <name>
This lets the agent pull in focused instructions for a workflow without baking every workflow into one prompt or one task-manager class.
Skills folder#
The repository ships bundled skills under src/eaa/skills/. Each skill lives
in its own directory and must contain a SKILL.md file.
A typical structure is:
my-skill/
SKILL.md
references/
api_reference.md
figure.png
The current loader behavior is:
if a configured directory itself contains
SKILL.md, it is treated as one skillotherwise, EAA recursively searches below that directory for
SKILL.mdonly
SKILL.mdis injected automatically when a user selects a skillsupporting files remain available for explicit inspection through tools such as
lsandread_file
How to use skills in EAA#
Point the task manager at one or more skill directories with
skill_dirs.Build the task manager normally.
Use the interactive chat commands to list or select skills.
Example:
from eaa_core.task_manager.base import BaseTaskManager
task_manager = BaseTaskManager(
llm_config=llm_config,
tools=[acquisition_tool],
skill_dirs=["./src/eaa/skills", "~/.eaa_skills"],
)
Once loaded, the base chat loop supports:
/skillto display the discovered skills/skill <name>to inject the selected skill’sSKILL.md
Skills are currently best understood as documented agent playbooks that can be loaded on demand through explicit user selection.
Installing bundled skills elsewhere#
If you want to copy the packaged skills to a user-controlled directory, use the CLI helper:
python -m eaa_core.cli install-skills --destination ~/.eaa_skills
You can then add that directory to skill_dirs.