style: restore PEP8 blank-line separation after dead-code removal

The deletions in the salvaged commit left some top-level defs/classes
separated by a single blank line. Restore the 2-blank-line separation.
This commit is contained in:
teknium1
2026-05-29 04:22:27 -07:00
committed by Teknium
parent dc235e93cb
commit ddaf2f6712
13 changed files with 30 additions and 0 deletions
+2
View File
@@ -627,6 +627,8 @@ def _find_all_skills(*, skip_disabled: bool = False) -> List[Dict[str, Any]]:
def _sort_skills(skills: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
"""Keep every skill listing path ordered the same way."""
return sorted(skills, key=lambda s: (s.get("category") or "", s["name"]))
def skills_list(category: str = None, task_id: str = None) -> str:
"""
List all available skills (progressive disclosure tier 1 - minimal metadata).