julius
Cut LLM token usage on command output and API traffic — compress what enters your coding agent's context, meter what your apps spend.
File Explorer
- ci.yml
- linear-sync.yml
- release.yml
- main.go
- decisions.md
- filters.md
- nightly_batch.sh
- rag_pipeline.py
- support_bot.py
- .gitignore
- fake_providers.py
- README.md
- run.sh
- permissions.go
- permissions_test.go
- filterscmd.go
- filterscmd_test.go
- hookcmd.go
- initcmd.go
- pricingcmd.go
- proxycmd.go
- raw.go
- root.go
- route.go
- savings.go
- savings_test.go
- scancmd.go
- wrap.go
- wrap_test.go
- execx_test.go
- run.go
- signal_test.go
- stash.go
- aws.toml
- brew.toml
- cargo.toml
- curl.toml
- docker.toml
- gh.toml
- git-ack.toml
- git-log.toml
- git-status.toml
- go-test.toml
- js-build.toml
- js-test.toml
- kubectl.toml
- lint-tools.toml
- misc-build.toml
- pulumi.toml
- py-install.toml
- pytest.toml
- python.toml
- ruby.toml
- shell-tools.toml
- terraform.toml
- wget.toml
- catalog.toml
- catalog_test.go
- dsl.go
- errorsonly.go
- errorsonly_test.go
- filter.go
- jsoncompact.go
- jsoncompact_test.go
- pytraceback.go
- pytraceback_test.go
- registry.go
- savings_test.go
- sniff.go
- sniffmatch_test.go
- spec_test.go
- spectest.go
- claudepost.go
- claudepost_mcp_test.go
- claudepost_test.go
- claudepre.go
- claudepre_perm_test.go
- claudepre_test.go
- doctor.go
- doctor_test.go
- install.go
- install_test.go
- plugins.go
- apicall_persist_test.go
- busyretry_test.go
- ledger.go
- ledger_test.go
- default_pricing.toml
- pricing.go
- pricing_test.go
- cachehint.go
- cachehint_test.go
- compress.go
- compress_test.go
- proxy.go
- proxy_test.go
- usage.go
- usage_test.go
- router.go
- router_test.go
- coverage_test.go
- scan.go
- scan_test.go
- cache.go
- decide.go
- diff.go
- session_test.go
- tokens.go
- tokens_test.go
- ui.go
- ui_test.go
- .gitattributes
- .gitignore
- .golangci.yml
- .goreleaser.yaml
- go.mod
- go.sum
- install.sh
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
git status
View Details ▼
git status
Show the changes to files in a Git repository.
List changed, added, and deleted files compared to the currently checked-out commit.
git status
Show untracked and changed files which are not yet added for commit:
git status {{[-s|--short]}}
Give output in short format:
git status {{[-sb|--short --branch]}}
Show output in short format along with branch info:
go install
View Details ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
go test
View Details ▼
go test
Test Go packages (files have to end with `_test.go`).
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go test
Test the package found in the current directory:
go test -v
[v]erbosely test the package in the current directory:
go test -v ./...
Test the packages in the current directory and all subdirectories:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
