@brik64/cli 0.1.0-beta.1 → 0.1.0-beta.3
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/CONTRIBUTING.md +38 -0
- package/LICENSE +70 -5
- package/NOTICE +9 -8
- package/README.md +169 -9
- package/SECURITY.md +54 -0
- package/docs/BRIK_METHODOLOGY_TRANSITION.md +17 -16
- package/docs/DISTRIBUTION_ROADMAP.md +41 -0
- package/docs/GITHUB_NPM_PUBLISHING.md +16 -5
- package/docs/GITHUB_PACKAGES_PUBLISHING.md +46 -0
- package/docs/GITHUB_REPO_GOVERNANCE.md +97 -0
- package/docs/LINUX_HETZNER_TESTING.md +17 -13
- package/docs/MACOS_LOCAL_TESTING.md +16 -13
- package/docs/PLATFORM_MATRIX.md +12 -7
- package/docs/RELEASE_COPY_MANUAL.md +64 -4
- package/docs/REPOSITORY_MAP.md +100 -0
- package/docs/REPO_BOUNDARY.md +15 -16
- package/docs/WIKI_HOME.md +50 -0
- package/evidence/pcd-certificates/cli_certify_emit.pcd.cert.json +1 -1
- package/evidence/pcd-certificates/cli_core.pcd.cert.json +2 -2
- package/evidence/pcd-certificates/cli_init_policy.pcd.cert.json +1 -1
- package/evidence/pcd-certificates/cli_polymer.pcd.cert.json +2 -2
- package/evidence/pcd-seed/README.md +16 -5
- package/package.json +4 -2
- package/packaging/macos-local/README.md +14 -7
- package/pcd/README.md +23 -18
- package/pcd/cli_core.pcd +2 -2
- package/pcd/cli_polymer.pcd +1 -1
- package/src/brik.js +6 -2
package/pcd/README.md
CHANGED
|
@@ -1,24 +1,29 @@
|
|
|
1
|
-
#
|
|
1
|
+
# BRIK64 CLI PCD Seeds
|
|
2
2
|
|
|
3
|
-
This directory contains
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
This directory contains the public beta PCD seed material for the local `brik`
|
|
4
|
+
CLI. These files describe the intended command structure and composition path
|
|
5
|
+
used to move the CLI toward a PCD-first BRIK64 methodology.
|
|
6
6
|
|
|
7
|
-
Current
|
|
7
|
+
## Current Role
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
|
|
12
|
-
- `cli_polymer.pcd`
|
|
13
|
-
command PCD seeds before
|
|
14
|
-
-
|
|
15
|
-
|
|
9
|
+
- `src/brik.js` remains the executable CLI source for the current beta.
|
|
10
|
+
- `cli_core.pcd`, `cli_init_policy.pcd`, and `cli_certify_emit.pcd` describe
|
|
11
|
+
candidate command contracts.
|
|
12
|
+
- `cli_polymer.pcd` describes the candidate composition contract that binds the
|
|
13
|
+
command PCD seeds before a future compile route.
|
|
14
|
+
- The files in this directory are review material for beta methodology, package
|
|
15
|
+
inspection, and future compiler-aligned work.
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
## Promotion Path
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
Before these seeds can support stronger public release language, BRIK64 must:
|
|
20
|
+
|
|
21
|
+
1. Complete candidate PCD coverage for CLI behavior.
|
|
22
|
+
2. Certify candidate PCDs with the active gate stack.
|
|
23
|
+
3. Validate the polymer/composition PCD against command PCDs.
|
|
22
24
|
4. Compile the CLI through the BRIK compiler path.
|
|
23
|
-
5. Run macOS, Linux distro, and Windows
|
|
24
|
-
6.
|
|
25
|
+
5. Run platform execution reports for macOS, Linux distro lanes, and Windows.
|
|
26
|
+
6. Publish release-boundary evidence from `brik64-prod`.
|
|
27
|
+
|
|
28
|
+
`brik64-prod` remains the authority for release gates, certificate boundaries,
|
|
29
|
+
compiler evidence, and public claim authorization.
|
package/pcd/cli_core.pcd
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
// certifiesTests: false
|
|
6
6
|
// certifiesFixpoint: false
|
|
7
7
|
// product = "brik64-cli"
|
|
8
|
-
// cli_version = "0.1.0-beta.
|
|
8
|
+
// cli_version = "0.1.0-beta.3"
|
|
9
9
|
// public_binary = "brik"
|
|
10
|
-
// execution_status = "
|
|
10
|
+
// execution_status = "public_beta"
|
|
11
11
|
// ascii_banner = "BRIK64"
|
|
12
12
|
// claim_boundary = "local_candidate_only"
|
|
13
13
|
|
package/pcd/cli_polymer.pcd
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// certifiesTests: false
|
|
6
6
|
// certifiesFixpoint: false
|
|
7
7
|
// product = "brik64-cli"
|
|
8
|
-
// cli_version = "0.1.0-beta.
|
|
8
|
+
// cli_version = "0.1.0-beta.3"
|
|
9
9
|
// composition_kind = "polymer"
|
|
10
10
|
// source_units = "cli_core.pcd,cli_init_policy.pcd,cli_certify_emit.pcd"
|
|
11
11
|
// compile_status = "not_compiled"
|
package/src/brik.js
CHANGED
|
@@ -8,7 +8,7 @@ process.stdout.on('error', (error) => {
|
|
|
8
8
|
throw error;
|
|
9
9
|
});
|
|
10
10
|
|
|
11
|
-
const version = '0.1.0-beta.
|
|
11
|
+
const version = '0.1.0-beta.3';
|
|
12
12
|
const ascii = [
|
|
13
13
|
' ____ ____ ___ _ __ __ _ _ ',
|
|
14
14
|
'| __ )| _ \\|_ _| |/ // /_ | || |',
|
|
@@ -24,7 +24,7 @@ function sha256(value) {
|
|
|
24
24
|
function printBanner() {
|
|
25
25
|
process.stdout.write(`${ascii}\n`);
|
|
26
26
|
process.stdout.write(`BRIK64 CLI ${version}\n`);
|
|
27
|
-
process.stdout.write('status=
|
|
27
|
+
process.stdout.write('status=public_beta\n');
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
function help() {
|
|
@@ -35,6 +35,10 @@ function help() {
|
|
|
35
35
|
process.stdout.write(' emit <file.pcd> emit only when local certificate exists\n');
|
|
36
36
|
process.stdout.write(' --target <ts|rust|python> --out <dir> --tests\n');
|
|
37
37
|
process.stdout.write(' --version print version\n');
|
|
38
|
+
process.stdout.write('\nreferences:\n');
|
|
39
|
+
process.stdout.write(' docs https://docs.brik64.com/cli/install\n');
|
|
40
|
+
process.stdout.write(' skill https://github.com/brik64/brik64-tools-skills\n');
|
|
41
|
+
process.stdout.write(' pcd standard https://github.com/brik64/pcd-standard\n');
|
|
38
42
|
}
|
|
39
43
|
|
|
40
44
|
function readFileRequired(file) {
|