@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/pcd/README.md CHANGED
@@ -1,24 +1,29 @@
1
- # BRIK CLI PCD Seed
1
+ # BRIK64 CLI PCD Seeds
2
2
 
3
- This directory contains candidate semantic PCD seeds for the local `brik` CLI.
4
- They are not release artifacts and do not certify formal correctness, N5 status,
5
- fixpoint, or Rust independence.
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 status:
7
+ ## Current Role
8
8
 
9
- - Source of truth for executable behavior remains `src/brik.js`.
10
- - These PCD files define the transition contract for moving CLI iteration to a
11
- PCD-first BRIK64 methodology.
12
- - `cli_polymer.pcd` is the candidate composition contract that binds the CLI
13
- command PCD seeds before any future compile route.
14
- - Any future public beta claim must be backed by fresh compiler, certificate,
15
- platform execution, and release-boundary reports.
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
- Required next methodology step:
17
+ ## Promotion Path
18
18
 
19
- 1. Complete candidate PCD coverage for all CLI behavior.
20
- 2. Certify candidate PCDs with the active private gate stack.
21
- 3. Validate the polymer/composition PCD against the certified command PCDs.
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 execution reports.
24
- 6. Promote only if the release claim boundary gate passes.
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.0"
8
+ // cli_version = "0.1.0-beta.3"
9
9
  // public_binary = "brik"
10
- // execution_status = "bootstrap_non_release"
10
+ // execution_status = "public_beta"
11
11
  // ascii_banner = "BRIK64"
12
12
  // claim_boundary = "local_candidate_only"
13
13
 
@@ -5,7 +5,7 @@
5
5
  // certifiesTests: false
6
6
  // certifiesFixpoint: false
7
7
  // product = "brik64-cli"
8
- // cli_version = "0.1.0-beta.0"
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.0';
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=bootstrap_non_release\n');
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) {