@kernaut/kernaut 0.1.0-linux-x64
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 +16 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Kernaut CLI
|
|
2
|
+
|
|
3
|
+
Kernaut is a local coding agent specialized for kernel and operator optimization workflows.
|
|
4
|
+
|
|
5
|
+
After installing the package selected by your organization, run:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
kernaut
|
|
9
|
+
kernaut --help
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Kernaut supports macOS, Linux, and Windows on x64 and arm64 through platform-specific optional
|
|
13
|
+
packages selected automatically during installation.
|
|
14
|
+
|
|
15
|
+
Kernaut is proprietary software. Use is limited to users authorized by the distributing
|
|
16
|
+
organization.
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kernaut/kernaut",
|
|
3
|
+
"version": "0.1.0-linux-x64",
|
|
4
|
+
"license": "UNLICENSED",
|
|
5
|
+
"os": [
|
|
6
|
+
"linux"
|
|
7
|
+
],
|
|
8
|
+
"cpu": [
|
|
9
|
+
"x64"
|
|
10
|
+
],
|
|
11
|
+
"files": [
|
|
12
|
+
"vendor"
|
|
13
|
+
],
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=16"
|
|
16
|
+
},
|
|
17
|
+
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
|
|
18
|
+
}
|