agent-zero/prompts/agent.system.tool.skills.md
Alessandro 954eca3563 add a0-setup-cli Skill and restore lexical trigger matching
Add a builtin `a0-setup-cli` skill for guiding host-side A0 connector setup,
and restore the lightweight trigger-word based skill matching flow, which many users asked for.

- add builtin `skills/a0-setup-cli/` with installer-first host setup guidance,
  container guardrails, fallback install paths, and example responses
- fix `helpers.skills_cli` so builtin skills under `/skills` are discoverable,
  searchable, and validatable
- restore trigger-pattern scoring in runtime `search_skills()`
- re-enable `skills_tool:search` in the current tool flow
- add lightweight lexical relevant-skill recall for the current user message
  without reintroducing memory/vector-db skill recall
- update skill prompts to steer the agent toward search/load when requests
  match skill trigger phrases
2026-04-11 18:03:05 +02:00

684 B

skills_tool

use skills only when relevant workflow:

  • skills_tool:search: find candidate skills by keywords or trigger phrases from the current task
  • skills_tool:list: discover available skills
  • skills_tool:load: load one skill by skill_name after loading a skill, follow its instructions and use referenced files or scripts with other tools reload a skill if its instructions are no longer in context example:
{
  "thoughts": ["The user's request sounds like a skill trigger phrase, so I should search first."],
  "headline": "Searching for relevant skill",
  "tool_name": "skills_tool:search",
  "tool_args": {
    "query": "set up a0 cli connector"
  }
}