Add skill definitions (SKILL.md + run.py) for all agent tools

This commit is contained in:
2026-04-07 20:35:56 +00:00
parent 42870c7c1f
commit 4483b585a7
8 changed files with 187 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
---
name: save_memory
description: Save something important to your persistent memory. Use this to remember facts about users, lessons learned, project context, or anything you want to recall in future conversations. Memories survive restarts.
parameters:
topic:
type: string
description: "Short topic name for the memory file (e.g. 'user_prefs', 'project_x', 'lessons')"
required: true
content:
type: string
description: The memory content to save
required: true
---