@crocoder-dev/sce 0.2.0-pre-alpha-v2 → 0.3.0-pre-alpha-v2
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 +22 -17
- 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
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@crocoder-dev/sce)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Shared Context Engineering is AI-assisted software delivery with explicit, versioned context.
|
|
6
6
|
|
|
7
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
22
|
-
|
|
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
|
-
|
|
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/)
|