impanel 0.0.1 → 0.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 +6 -2
- package/bin/impanel.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# impanel
|
|
2
2
|
|
|
3
|
-
This package
|
|
3
|
+
This package is a **signpost** for [`@empanel/cli`](https://www.npmjs.com/package/@empanel/cli) —
|
|
4
4
|
**Empanel, a multi-model code-review gate**: an orchestrated panel of diverse AI models reviews a
|
|
5
5
|
pull request; a thin deterministic spine owns the block/pass verdict and the trust boundary.
|
|
6
6
|
|
|
7
|
-
**Install the primary package instead:**
|
|
7
|
+
**Install the primary package instead:**
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
npm install -g @empanel/cli
|
|
11
|
+
```
|
|
8
12
|
|
|
9
13
|
The first public release is in active development — watch
|
|
10
14
|
https://github.com/smarzban/empanel for the release. (This stub's contents are MIT; the product's
|
package/bin/impanel.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
console.log(
|
|
3
|
-
"impanel is
|
|
4
|
-
"Install the primary package instead: npm install -g empanel\n" +
|
|
3
|
+
"impanel is a signpost for Empanel — a multi-model code-review gate.\n" +
|
|
4
|
+
"Install the primary package instead: npm install -g @empanel/cli\n" +
|
|
5
5
|
"Watch https://github.com/smarzban/empanel for the first public release."
|
|
6
6
|
);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "impanel",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Signpost for Empanel, a multi-model code-review gate. Install `@empanel/cli` instead.",
|
|
5
5
|
"bin": { "impanel": "bin/impanel.js" },
|
|
6
6
|
"files": ["bin", "README.md"],
|
|
7
7
|
"keywords": ["code-review", "review", "gate", "ai", "empanel"],
|