claude-autopm 3.25.2 → 3.25.3
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.
|
@@ -695,7 +695,7 @@ class PluginManager extends EventEmitter {
|
|
|
695
695
|
*/
|
|
696
696
|
async installScripts(plugin, pluginPath) {
|
|
697
697
|
const { metadata } = plugin;
|
|
698
|
-
const targetBaseDir = path.join(this.options.projectRoot, 'scripts');
|
|
698
|
+
const targetBaseDir = path.join(this.options.projectRoot, '.claude', 'scripts');
|
|
699
699
|
|
|
700
700
|
// Create scripts directory if it doesn't exist
|
|
701
701
|
if (!fs.existsSync(targetBaseDir)) {
|
package/package.json
CHANGED