LucentraCode
AI coding agent for the terminal, powered by the LucentraCode gateway.
npm install -g lucentracode
lucentracode login
cd my-project && lucentracode
login opens the LucentraCode dashboard,
you click Authorize, and the CLI receives its own API key. You never type or
paste a credential.
What you get
A terminal coding agent: repository exploration, grep and glob, file reads, edits
and patches, shell execution, test runs, tool calling with a permission prompt,
plan mode, subagents, context compaction, and MCP.
The default model is Smart Auto, which routes each request to a model chosen
for the task. lucentracode models lists the catalogue if you want to pin one.
Usage and limits
lucentracode usage
lucentracode status
lucentracode dashboard
lucentracode logout
Install notes
This package contains no binary. On install npm pulls only the
lucentracode-<os>-<arch> packages matching your machine, not all twelve.
On arm64 that is one package. On x64 it is two or more: the -baseline build
exists for CPUs without AVX2, and package.json cannot express "requires AVX2" --
only os and cpu, which both x64 variants declare identically. npm therefore
fetches both and the postinstall picks the right one at runtime.
If you install with --ignore-scripts (or with pnpm, which defaults to that),
run the postinstall by hand:
cd node_modules/lucentracode && node postinstall.mjs
Licence and attribution
MIT. LucentraCode is a fork of OpenCode.