Skip to content

Commit 82c20d6

Browse files
committed
fix pre-commit
1 parent 5559ad0 commit 82c20d6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

openhands-sdk/openhands/sdk/conversation/impl/remote_conversation.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,12 @@ def activated_knowledge_skills(self) -> list[str]:
532532
info = self._get_conversation_info()
533533
return info.get("activated_knowledge_skills", [])
534534

535+
@property
536+
def invoked_skills(self) -> list[str]:
537+
"""Names of progressive-disclosure skills explicitly invoked."""
538+
info = self._get_conversation_info()
539+
return info.get("invoked_skills", [])
540+
535541
@property
536542
def agent(self):
537543
"""The agent configuration (fetched from remote)."""

0 commit comments

Comments
 (0)