import re def extract_skills(text: str) -> list[str]: return re.findall(r"\bDi[A-Z][a-zA-Z]*\b", text)