Skip to main content

Getting Started

This guide covers installing and running your first session.

Install

curl -fsSL https://acolyte.sh/install | sh

Then initialize your provider:

acolyte init

See all commands: acolyte help

Development

Requires Bun.

git clone https://github.com/cniska/acolyte.git
cd acolyte
bun install
bun run dev           # starts server + CLI client
bun run verify        # lint + typecheck + all tests
bun test              # all tests
bun run test:unit     # unit tests only
bun run test:int      # integration tests
bun run test:tui      # visual regression tests
bun run test:perf     # performance baselines

Next steps