qwen-paul 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/carl/PAUL +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qwen-paul",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
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"
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-framework/src/commands/{name}.md) AND its execution_context workflow file. NEVER execute PAUL commands from memory or inference - always load the actual files first. If files cannot be loaded, STOP and inform user.
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.