devez-vibe 1.6.52 → 1.6.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/dvz.exe
CHANGED
|
Binary file
|
|
@@ -3018,9 +3018,12 @@ async function dispatch(method, params = {}) {
|
|
|
3018
3018
|
const output = await runClaudeCommand(params, ["plugin", "marketplace", "update"]);
|
|
3019
3019
|
return { message: output, consideredRoots: ["Claude marketplaces"], errors: [] };
|
|
3020
3020
|
}
|
|
3021
|
-
if (method === "skills/list") return claudeSkills(params);
|
|
3022
|
-
if (method === "app/list") return { data: [] };
|
|
3023
|
-
if (method === "
|
|
3021
|
+
if (method === "skills/list") return claudeSkills(params);
|
|
3022
|
+
if (method === "app/list") return { data: [] };
|
|
3023
|
+
if (method === "account/read") {
|
|
3024
|
+
return await runClaudeJson(params, ["auth", "status", "--json"]) || {};
|
|
3025
|
+
}
|
|
3026
|
+
if (method === "plugin/reload") {
|
|
3024
3027
|
return { message: "Claude 플러그인 설정을 다시 읽었습니다. 새 대화부터 적용됩니다." };
|
|
3025
3028
|
}
|
|
3026
3029
|
if (method === "permissions/status") return claudePermissionStatus(params);
|