ant_ai.skills.presenter
SkillPresenter
Bases: Protocol
Protocol for formatting skills into an agent's system prompt.
Source code in src/ant_ai/skills/presenter.py
16 17 18 19 | |
MarkdownSkillPresenter
Injects skills as a Markdown block in the system prompt.
The agent activates a skill by reading its SKILL.md via its native file tool — no custom activation tool is registered.
Source code in src/ant_ai/skills/presenter.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | |