feat(agent): skill invocation — load and execute skills from catalog (#128)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

Adds SkillLoaderService, skill_list and skill_invoke meta-tools, and
session-level skill injection from the DB catalog. Enabled prompt-type
skills inject system prompt additions into new sessions; tool and
workflow skills are invocable via skill_invoke.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 13:36:21 -05:00
parent 54b821d8bd
commit 43b834125a
5 changed files with 263 additions and 4 deletions

View File

@@ -4,3 +4,4 @@ export { createFileTools } from './file-tools.js';
export { createGitTools } from './git-tools.js';
export { createShellTools } from './shell-tools.js';
export { createWebTools } from './web-tools.js';
export { createSkillTools } from './skill-tools.js';