Merge branch 'feat/skills-ping' into develop

This commit is contained in:
Steven Enamakel
2026-02-10 16:42:38 +05:30
4 changed files with 7 additions and 2 deletions
+1
View File
@@ -21,6 +21,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: true
- name: Setup Node.js 24.x
uses: actions/setup-node@v4
+1 -1
Submodule skills updated: 8030aef027...2dbb87011a
+1
View File
@@ -87,6 +87,7 @@ pub enum SkillMessage {
reply: tokio::sync::oneshot::Sender<Result<(), String>>,
},
/// Notify the skill of an error from an async operation.
#[allow(dead_code)]
Error {
error_type: String,
message: String,
+4 -1
View File
@@ -58,7 +58,10 @@ const skillsSlice = createSlice({
}
},
setSkillOAuthCredential(state, action: PayloadAction<{ skillId: string; credential: OAuthCredential | undefined }>) {
setSkillOAuthCredential(
state,
action: PayloadAction<{ skillId: string; credential: OAuthCredential | undefined }>
) {
const { skillId, credential } = action.payload;
if (state.skills[skillId]) {
state.skills[skillId].oauthCredential = credential;