add-agent-skills

Installation
SKILL.md

Add agent skills (skill toolset)

Agent skills are markdown instruction packs the model loads on demand (load_skill, etc.). They live under internal/skills/skills/<name>/SKILL.md, are embedded into the binary, and exposed through ADK skilltoolset on llmagent.Config.Toolsets — separate from proto-backed Tools (add-tool / add-lro).

Identify the agent module (go.mod) and entrypoint before editing. In Alis Build projects, read .alis/agents/AGENTS.md if it exists for product repo roots and neuron paths.

When to use

See the skill description (primary trigger). In short: runtime internal/skills/skills/*/SKILL.md + Toolsets, not neuron .agents/skills/, not proto tools.

When not to use

Need Use instead
Sync / LRO RPC tools ../add-tool/SKILL.md, ../add-lro/SKILL.md
Cursor IDE skills under .agents/skills/ Different system — this skill is runtime skills inside the Go agent
define / tools.proto Not required

Architecture

Installs
1
First Seen
May 29, 2026
add-agent-skills — alis-build/skills