@unifan/pi-review-zh 1.0.8 → 1.0.9

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/directive.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unifan/pi-review-zh",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Pi AI 并发代码审查扩展(多专家子代理并发 + 门禁裁判系统,中文增强版)",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/directive.ts CHANGED
@@ -237,6 +237,8 @@ export function buildWorkflowScript(input: {
237
237
  const READ_ONLY_PREFIX =
238
238
  "只读任务(READ-ONLY)——仅执行审查分析与基准测试。严禁修改源码文件。仅返回审查发现。所有分析总结、问题描述与建议必须使用纯正中文。";
239
239
 
240
+ const lines: string[] = [];
241
+ lines.push("");
240
242
  lines.push("let reviewers;");
241
243
  lines.push("try {");
242
244
  lines.push(" reviewers = await runs.all([");