@akagilnc/pi-workflow-roles 0.1.2350 → 0.1.2355

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akagilnc/pi-workflow-roles",
3
- "version": "0.1.2350",
3
+ "version": "0.1.2355",
4
4
  "description": "Soul-bound workflow roles for Pi",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -0,0 +1,8 @@
1
+ # 门下省输出手册
2
+
3
+ 三官共读。产出指引,不因措辞拒收。
4
+
5
+ - `pass`:正常放行
6
+ - `bounce`:职掌内查出须重写。逐条给理由与证据。重写交卷,不是本局失败。
7
+ - 受理御前(受审者提交 `escalate`):能解决就给出答案放其续写;解决不了就放行上呈;没有打回重叫。
8
+ - 第0条:reason 不评格式;中性记账;原卷随附;下一个 LLM 自己读。
@@ -46,7 +46,7 @@ export const MAIN_ROLE_SESSION_MATERIALS = {
46
46
  collector: ["CLAUDE.md", "souls/collector.md"],
47
47
  doctor: ["CLAUDE.md", "souls/doctor.md"],
48
48
  merger: ["CLAUDE.md", "souls/merger.md"],
49
- notary: ["CLAUDE.md", "souls/notary.md"],
49
+ notary: ["CLAUDE.md", "souls/notary.md", "souls/menxia-output-guide.md"],
50
50
  navigator: ["CLAUDE.md", "souls/navigator.md"],
51
51
  } as const;
52
52
 
@@ -60,9 +60,14 @@ export function loadMainRoleSessionMaterials(
60
60
 
61
61
  /** Gatekeeper province + Inspector/Notary officer sessions. */
62
62
  export const GATEKEEPER_SESSION_MATERIALS = {
63
- gatekeeper: ["CLAUDE.md", "souls/gatekeeper.md"],
64
- inspector: ["CLAUDE.md", "souls/inspector.md", "souls/quality-law.md"],
65
- notary: ["CLAUDE.md", "souls/notary.md"],
63
+ gatekeeper: ["CLAUDE.md", "souls/gatekeeper.md", "souls/menxia-output-guide.md"],
64
+ inspector: [
65
+ "CLAUDE.md",
66
+ "souls/inspector.md",
67
+ "souls/quality-law.md",
68
+ "souls/menxia-output-guide.md",
69
+ ],
70
+ notary: ["CLAUDE.md", "souls/notary.md", "souls/menxia-output-guide.md"],
66
71
  } as const;
67
72
 
68
73
  export type GatekeeperSessionRole = keyof typeof GATEKEEPER_SESSION_MATERIALS;