get_prompt_sections
get_prompt_sections
Return POM prompt sections for the agent. Returns an empty list when the
skip_prompt parameter is True, otherwise delegates to _get_prompt_sections().
Returns
list[dict[str, Any]] — List of section dictionaries with "title" and
"body" or "bullets" keys.
Override _get_prompt_sections() instead of this method so your skill
automatically respects the skip_prompt configuration parameter.
_get_prompt_sections
Override this in subclasses to provide prompt sections. This is the recommended
override target rather than get_prompt_sections().
Returns
list[dict[str, Any]] — List of section dictionaries (default: empty list).