Skip to content

CellScript 0.20.0

Latest

Choose a tag to compare

@a19q3 a19q3 released this 28 Jun 11:59

Installation

One-line install (Global)

curl -fsSL https://raw.githubusercontent.com/CellScript-Labs/CellScript/main/scripts/install.sh | sh

One-line install (China mainland)

If raw.githubusercontent.com is unreachable, use a GitHub proxy:

curl -fsSL https://ghgo.xyz/https://raw.githubusercontent.com/CellScript-Labs/CellScript/main/scripts/install.sh | sh

Or force a specific mirror for binary downloads:

CELLSCRIPT_MIRROR=ghgo curl -fsSL https://ghgo.xyz/https://raw.githubusercontent.com/CellScript-Labs/CellScript/main/scripts/install.sh | sh

Available mirrors: ghgo (ghgo.xyz), ghproxy (gh-proxy.com), ghfast (ghfast.top)

Install specific version

CELLSCRIPT_VERSION=0.20.0 curl -fsSL https://raw.githubusercontent.com/CellScript-Labs/CellScript/main/scripts/install.sh | sh

Alternative: cargo install

cargo install cellscript

Manual download

Platform Archive
macOS (Apple Silicon) cellscript-0.20.0-aarch64-apple-darwin.tar.gz
macOS (Intel) cellscript-0.20.0-x86_64-apple-darwin.tar.gz
Linux (x86_64) cellscript-0.20.0-x86_64-unknown-linux-musl.tar.gz
Linux (ARM64) cellscript-0.20.0-aarch64-unknown-linux-musl.tar.gz

Unpack and add to PATH:

tar xzf cellscript-*.tar.gz
mkdir -p ~/.cellscript/bin && mv cellc ~/.cellscript/bin/
export PATH="$HOME/.cellscript/bin:$PATH"

Verify: cellc --version


Environment variables

Variable Default Description
CELLSCRIPT_HOME ~/.cellscript Installation directory
CELLSCRIPT_VERSION latest Install a specific version
CELLSCRIPT_MIRROR auto Mirror: auto, direct, ghgo, ghproxy, ghfast
CELLSCRIPT_DRY_RUN 0 Set to 1 to preview without installing

What's Changed

  • Add agentic-loops wiki tutorial (Tutorial-13) by @toastmanAu in #2

New Contributors

Full Changelog: v0.16.2...v0.20.0