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.
Files changed (2) hide show
  1. package/bin/install.js +4 -4
  2. 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/qwen-paul/ - Slash commands (/paul:init, /paul:plan, etc.)
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/qwen-paul
147
+ // Copy src/commands to commands/paul
148
148
  const commandsSrc = path.join(src, 'src', 'commands');
149
- const commandsDest = path.join(commandsDir, 'qwen-paul');
149
+ const commandsDest = path.join(commandsDir, 'paul');
150
150
  copyWithPathReplacement(commandsSrc, commandsDest, pathPrefix);
151
- console.log(` ${green}\u2713${reset} Installed commands/qwen-paul`);
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');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qwen-paul",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Plan-Apply-Unify Loop - A structured AI-assisted development framework for Qwen Code",
5
5
  "bin": {
6
6
  "qwen-paul": "bin/install.js"