devez-vibe 1.5.6 → 1.5.8

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
@@ -846,22 +846,24 @@ async function claudePluginDetail(params) {
846
846
  };
847
847
  }
848
848
 
849
- async function claudeSkills(params) {
850
- const installed = await runClaudeJson(params, ["plugin", "list", "--json"]);
851
- const skills = [];
852
- for (const plugin of Array.isArray(installed) ? installed : []) {
853
- if (!plugin?.enabled || !plugin.installPath) continue;
854
- try {
855
- for (const child of await readdir(join(plugin.installPath, "skills"), { withFileTypes: true })) {
856
- if (!child.isDirectory()) continue;
857
- skills.push({
858
- name: child.name,
859
- path: join(plugin.installPath, "skills", child.name, "SKILL.md"),
860
- description: `${plugin.id} plugin skill`,
861
- enabled: true,
862
- });
863
- }
864
- } catch { /* Plugins do not have to provide skills. */ }
849
+ async function claudeSkills(params) {
850
+ const installed = await runClaudeJson(params, ["plugin", "list", "--json"]);
851
+ const skills = [];
852
+ for (const plugin of Array.isArray(installed) ? installed : []) {
853
+ if (!plugin?.installPath) continue;
854
+ try {
855
+ for (const child of await readdir(join(plugin.installPath, "skills"), { withFileTypes: true })) {
856
+ if (!child.isDirectory()) continue;
857
+ skills.push({
858
+ name: child.name,
859
+ path: join(plugin.installPath, "skills", child.name, "SKILL.md"),
860
+ description: `${plugin.id} plugin skill`,
861
+ enabled: Boolean(plugin.enabled),
862
+ scope: plugin.scope || "user",
863
+ pluginId: plugin.id,
864
+ });
865
+ }
866
+ } catch { /* Plugins do not have to provide skills. */ }
865
867
  }
866
868
  return { data: [{ cwd: params.cwd || process.cwd(), skills }] };
867
869
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devez-vibe",
3
- "version": "1.5.6",
3
+ "version": "1.5.8",
4
4
  "description": "Stable terminal UI for Codex and Claude Agent SDK",
5
5
  "keywords": [
6
6
  "codex",