@unifan/pi-review-zh 1.0.1 → 1.0.2

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # 🔍 @unifan/pi-review-zh (AI 并发代码审查·中文增强版)
1
+ # 🔍 @unifan/pi-review-zh (AI 并发代码审查·中文增强版)
2
2
 
3
3
  专为 **Pi Coding Agent** 打造的多专家子代理并发审查与门禁裁判系统(移植自 Claude Code 官方高级代码审查架构并全面中文化)。
4
4
 
package/agents/bugbot.md CHANGED
@@ -1,4 +1,4 @@
1
- ---
1
+ ---
2
2
  name: bugbot
3
3
  package: pi-review
4
4
  description: 逻辑 Bug 审查专家:扫描新引入代码中的逻辑漏洞、空指针与边界异常(高信噪比)。
@@ -1,4 +1,4 @@
1
- ---
1
+ ---
2
2
  name: claude-md-compliance
3
3
  package: pi-review
4
4
  description: 项目规范守卫:审查代码是否符合 AGENTS.md / 项目规则规范。
@@ -1,4 +1,4 @@
1
- ---
1
+ ---
2
2
  name: code-comments
3
3
  package: pi-review
4
4
  description: 注释与规范审查官:审查代码注释的准确性、未完成的 TODO 与废弃代码。
package/agents/gate.md CHANGED
@@ -1,4 +1,4 @@
1
- ---
1
+ ---
2
2
  name: gate
3
3
  package: pi-review
4
4
  description: 门禁裁判长:汇总、去重、核验并重新评估所有专家的发现,出具最终裁决与处理清单。
@@ -1,4 +1,4 @@
1
- ---
1
+ ---
2
2
  name: history-context
3
3
  package: pi-review
4
4
  description: 历史回归分析官:结合 Git 历史与修改模式分析潜在退化与破坏性变更。
@@ -1,4 +1,4 @@
1
- ---
1
+ ---
2
2
  name: lite-review
3
3
  package: pi-review
4
4
  description: 极速单兵审查官:单 agent 快速排查 Bug、安全与规范,低延迟省 Token。
@@ -1,4 +1,4 @@
1
- ---
1
+ ---
2
2
  name: security-review
3
3
  package: pi-review
4
4
  description: 安全审查专家:排查注入漏洞、数据泄露、未鉴权访问与安全隐患。
package/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { existsSync, readFileSync } from "node:fs";
1
+ import { existsSync, readFileSync } from "node:fs";
2
2
  import type { ExtensionAPI, ExtensionCommandContext } from "@earendil-works/pi-coding-agent";
3
3
 
4
4
  import { parseReviewArgs } from "./src/cli-args.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unifan/pi-review-zh",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Pi AI 并发代码审查扩展(多专家子代理并发 + 门禁裁判系统,中文增强版)",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/report.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type {
1
+ import type {
2
2
  GateDisposition,
3
3
  GateRunResult,
4
4
  Issue,
@@ -1,4 +1,4 @@
1
- import { Box, Text } from "@earendil-works/pi-tui";
1
+ import { Box, Text } from "@earendil-works/pi-tui";
2
2
  import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
3
3
 
4
4
  import type { IssueSeverity, Verdict } from "./types.js";