bylazora 0.4.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 +25 -0
- package/index.js +17 -0
- package/package.json +27 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# bylazora
|
|
2
|
+
|
|
3
|
+
**Proof, not percentages.** Bylazora is the byte-exact mainframe migration
|
|
4
|
+
standard: a migrated workload's outputs must equal the legacy COBOL reference
|
|
5
|
+
byte for byte, or the gate fails it.
|
|
6
|
+
|
|
7
|
+
This package reserves the `bylazora` name on npm. It will carry the MCP client
|
|
8
|
+
and the agent rule packs: your coding assistant can operate the engine,
|
|
9
|
+
propose, and measure, but it cannot mark a job proven. Only the validator can.
|
|
10
|
+
|
|
11
|
+
The engine itself is a Rust crate, developed and released at
|
|
12
|
+
**https://github.com/bylazora/bylazora** under AGPL-3.0-or-later (engine) and
|
|
13
|
+
Apache-2.0 (the copybook and DB2 parsers).
|
|
14
|
+
|
|
15
|
+
## The engine in one paragraph
|
|
16
|
+
|
|
17
|
+
One Rust binary runs the equivalence gate and the production runtime across
|
|
18
|
+
three compute tiers: CPU, any GPU through vendor-neutral wgpu, and CUDA.
|
|
19
|
+
Measured at one billion rows against the compiled COBOL reference: 28.1x on
|
|
20
|
+
CPU, 61.3x on wgpu, 68.8x on CUDA, every run byte-identical. Money stays
|
|
21
|
+
integer cents and is never a float.
|
|
22
|
+
|
|
23
|
+
- Homepage: https://bylazora.com
|
|
24
|
+
- Repository: https://github.com/bylazora/bylazora
|
|
25
|
+
- Evidence annex: https://bylazora.com/evidence.html
|
package/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// Reserves the `bylazora` package name on npm.
|
|
4
|
+
//
|
|
5
|
+
// Bylazora is the byte-exact mainframe migration standard: a migrated
|
|
6
|
+
// workload's outputs must equal the legacy COBOL reference byte for byte, or
|
|
7
|
+
// the gate fails it. The engine itself is a Rust crate, developed and released
|
|
8
|
+
// at https://github.com/bylazora/bylazora . This package will carry the MCP
|
|
9
|
+
// client and the agent rule packs that let a coding assistant drive the engine
|
|
10
|
+
// while the validator, and only the validator, decides what is proven.
|
|
11
|
+
|
|
12
|
+
module.exports = {
|
|
13
|
+
version: "0.4.1",
|
|
14
|
+
repository: "https://github.com/bylazora/bylazora",
|
|
15
|
+
homepage: "https://bylazora.com",
|
|
16
|
+
note: "Name reservation. The MCP client and rule packs ship here."
|
|
17
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bylazora",
|
|
3
|
+
"version": "0.4.1",
|
|
4
|
+
"description": "Byte-exact mainframe migration: MCP client and agent rule packs for the open-source Bylazora engine and gate.",
|
|
5
|
+
"license": "AGPL-3.0-or-later",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/bylazora/bylazora.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://bylazora.com",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"cobol",
|
|
13
|
+
"mainframe",
|
|
14
|
+
"migration",
|
|
15
|
+
"mcp",
|
|
16
|
+
"gate",
|
|
17
|
+
"byte-exact"
|
|
18
|
+
],
|
|
19
|
+
"main": "index.js",
|
|
20
|
+
"files": [
|
|
21
|
+
"index.js",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18"
|
|
26
|
+
}
|
|
27
|
+
}
|