description property

  1. @override
String get description
override

Tool description for AI agents

Should clearly explain what the tool does and when to use it.

Implementation

@override
String get description => '''
List all available AI skills for this ServerPod project.

Skills are reusable AI prompts/templates that guide LLMs in performing
specific development tasks. Each skill contains domain knowledge and
best practices for ServerPod development.

Includes both:
- Built-in skills from serverpod_boost package (authentication, core, endpoints, models, etc.)
- Custom skills from your project's .ai/skills/ directory

Returns a list of skills with their names, categories, descriptions, and file paths.
''';