clavix 5.3.0 → 5.3.1
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.
|
@@ -85,6 +85,17 @@ export class BaseAdapter {
|
|
|
85
85
|
console.warn(`Failed to remove ${filePath}: ${error}`);
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
|
+
// Also remove clavix/ subdirectory if it exists (legacy cleanup)
|
|
89
|
+
const clavixSubdir = path.join(commandPath, 'clavix');
|
|
90
|
+
if (await FileSystem.exists(clavixSubdir)) {
|
|
91
|
+
try {
|
|
92
|
+
await FileSystem.remove(clavixSubdir);
|
|
93
|
+
removed++;
|
|
94
|
+
}
|
|
95
|
+
catch (error) {
|
|
96
|
+
console.warn(`Failed to remove ${clavixSubdir}: ${error}`);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
88
99
|
return removed;
|
|
89
100
|
}
|
|
90
101
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clavix",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.1",
|
|
4
4
|
"description": "Agentic-first prompt workflows. Markdown templates that teach AI agents how to optimize prompts, create PRDs, and manage implementation.\n\nSLASH COMMANDS (in your AI assistant):\n /clavix:improve Optimize prompts with auto-depth\n /clavix:prd Generate PRD through questions\n /clavix:plan Create task breakdown from PRD\n /clavix:implement Execute tasks with progress tracking\n /clavix:start Begin conversational session\n /clavix:summarize Extract requirements from conversation\n\nWorks with Claude Code, Cursor, Windsurf, and 19+ other AI coding tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|