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