qwen-paul 1.0.2 → 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/src/carl/PAUL +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');
|
package/package.json
CHANGED
package/src/carl/PAUL
CHANGED
|
@@ -7,7 +7,7 @@ PAUL_ALWAYS_ON=false
|
|
|
7
7
|
PAUL_RULE_0=PAUL governs structured AI development via Plan-Apply-Unify loop. Requires .paul/ directory.
|
|
8
8
|
|
|
9
9
|
# MUST (critical)
|
|
10
|
-
PAUL_RULE_1=LOAD BEFORE EXECUTE: Before ANY /paul:* command, MUST Read the command file (~/.qwen/paul
|
|
10
|
+
PAUL_RULE_1=LOAD BEFORE EXECUTE: Before ANY /paul:* command, MUST Read the command file (~/.qwen/commands/qwen-paul/{name}.md) AND its execution_context workflow file (~/.qwen/paul-framework/workflows/). NEVER execute PAUL commands from memory or inference - always load the actual files first. If files cannot be loaded, STOP and inform user.
|
|
11
11
|
PAUL_RULE_2=No implementation code without approved PLAN.md. Research/exploration OK. Violation = stop, request approval.
|
|
12
12
|
PAUL_RULE_3=Every APPLY must be followed by UNIFY. UNIFY reconciles plan vs actual, updates STATE.md, logs decisions.
|
|
13
13
|
PAUL_RULE_4=Respect PLAN.md "Boundaries" / "DO NOT CHANGE" sections. Stop and confirm before modifying protected items.
|