@crocoder-dev/sce 0.2.0-pre-alpha-v2 → 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +22 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,31 +1,36 @@
1
- # sce
1
+ # Shared Context Engineering npm package (`@crocoder-dev/sce`)
2
2
 
3
- Thin npm launcher package for the `sce` CLI.
3
+ [![npm](https://img.shields.io/npm/v/%40crocoder-dev%2Fsce?logo=npm)](https://www.npmjs.com/package/@crocoder-dev/sce)
4
4
 
5
- Published from the `crocoder-dev/shared-context-engineering` repository.
5
+ Shared Context Engineering is AI-assisted software delivery with explicit, versioned context.
6
6
 
7
- ## Install
7
+ This package publishes the `@crocoder-dev/sce` npm launcher for the `sce` CLI.
8
+
9
+ ## Documentation
10
+
11
+ - [Documentation site](https://sce.crocoder.dev/)
12
+ - [Getting started](https://sce.crocoder.dev/docs/getting-started)
13
+ - [GitHub repository](https://github.com/crocoder-dev/shared-context-engineering)
14
+
15
+ ## Install with npm
16
+
17
+ Published npm releases target the `@crocoder-dev/sce` package and install the `sce` launcher.
8
18
 
9
19
  ```bash
10
- npm install -g sce
20
+ npm install -g @crocoder-dev/sce
11
21
  ```
12
22
 
13
- Supported npm install targets:
23
+ ## Supported platforms
14
24
 
15
25
  - `darwin/arm64` → `aarch64-apple-darwin`
16
26
  - `linux/arm64` → `aarch64-unknown-linux-gnu`
17
27
  - `linux/x64` → `x86_64-unknown-linux-gnu`
18
28
 
19
- ## Release flow
29
+ Unsupported platforms fail with explicit guidance instead of attempting an alternate install channel inside the npm package.
30
+
31
+ ## Other supported install channels
20
32
 
21
- On install, this package downloads the matching platform release artifact for the
22
- current `sce` version from GitHub Releases, verifies the published SHA-256
23
- checksum, and installs the native `sce` binary for local execution. Linux ARM
24
- is an officially supported npm install target via `linux/arm64` mapping to the
25
- GitHub release artifact for `aarch64-unknown-linux-gnu`.
33
+ - Nix: `nix run github:crocoder-dev/shared-context-engineering -- --help`
34
+ - Cargo: `cargo install shared-context-engineering --locked`
26
35
 
27
- Repo-root `.version` is the canonical checked-in release version source. GitHub
28
- Releases publish the canonical signed release archives and manifest/checksum
29
- assets first; npm registry publication is a separate downstream publish stage
30
- for the already-versioned checked-in package and does not auto-bump the package
31
- version during publish.
36
+ Built by [CroCoder](https://www.crocoder.dev/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crocoder-dev/sce",
3
- "version": "0.2.0-pre-alpha-v2",
3
+ "version": "0.2.0",
4
4
  "description": "npm launcher package for the Shared Context Engineering CLI",
5
5
  "type": "module",
6
6
  "private": false,