pi-multi-code-review 1.0.0 → 1.0.1

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 (1) hide show
  1. package/package.json +24 -6
package/package.json CHANGED
@@ -1,21 +1,39 @@
1
1
  {
2
2
  "name": "pi-multi-code-review",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Pi skill + subagent: three parallel code-review channels (OCR / Standards / Spec) reviewing the same diff bound under one scope, then an oracle deduplicates, resolves conflicts and re-grades them into a single adjudicated report (00-adjudication.md). Pure Pi workflowScript orchestration, no Orca required.",
5
5
  "license": "MIT",
6
- "keywords": ["pi-package", "pi-skill", "code-review", "ocr", "standards", "spec", "oracle", "parallel-review"],
7
- "files": ["SKILL.md", "README.md", "agents", "references"],
6
+ "keywords": [
7
+ "pi-package",
8
+ "pi-skill",
9
+ "code-review",
10
+ "ocr",
11
+ "standards",
12
+ "spec",
13
+ "oracle",
14
+ "parallel-review"
15
+ ],
16
+ "files": [
17
+ "SKILL.md",
18
+ "README.md",
19
+ "agents",
20
+ "references"
21
+ ],
8
22
  "repository": {
9
23
  "type": "git",
10
24
  "url": "git+https://github.com/the-ultra-nexus/pi-packages.git"
11
25
  },
12
26
  "pi": {
13
- "skills": ["./"]
27
+ "skills": [
28
+ "./"
29
+ ]
14
30
  },
15
31
  "pi-subagents": {
16
- "agents": ["./agents"]
32
+ "agents": [
33
+ "./agents"
34
+ ]
17
35
  },
18
36
  "peerDependencies": {
19
37
  "pi-subagents": "*"
20
38
  }
21
- }
39
+ }