qwen-paul 1.0.3 → 1.0.4
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/install.js +4 -4
- package/package.json +1 -1
package/bin/install.js
CHANGED
|
@@ -76,7 +76,7 @@ if (hasHelp) {
|
|
|
76
76
|
npx qwen-paul --local
|
|
77
77
|
|
|
78
78
|
${yellow}What gets installed:${reset}
|
|
79
|
-
commands/
|
|
79
|
+
commands/paul/ - Slash commands (/paul:init, /paul:plan, etc.)
|
|
80
80
|
paul-framework/ - Templates, workflows, references, rules
|
|
81
81
|
`);
|
|
82
82
|
process.exit(0);
|
|
@@ -144,11 +144,11 @@ function install(isGlobal) {
|
|
|
144
144
|
const commandsDir = path.join(qwenDir, 'commands');
|
|
145
145
|
fs.mkdirSync(commandsDir, { recursive: true });
|
|
146
146
|
|
|
147
|
-
// Copy src/commands to commands/
|
|
147
|
+
// Copy src/commands to commands/paul
|
|
148
148
|
const commandsSrc = path.join(src, 'src', 'commands');
|
|
149
|
-
const commandsDest = path.join(commandsDir, '
|
|
149
|
+
const commandsDest = path.join(commandsDir, 'paul');
|
|
150
150
|
copyWithPathReplacement(commandsSrc, commandsDest, pathPrefix);
|
|
151
|
-
console.log(` ${green}\u2713${reset} Installed commands/
|
|
151
|
+
console.log(` ${green}\u2713${reset} Installed commands/paul`);
|
|
152
152
|
|
|
153
153
|
// Copy src/* (except commands) to paul-framework/
|
|
154
154
|
const skillDest = path.join(qwenDir, 'paul-framework');
|