A private, frontier-grade coding & reasoning model โ drop-in for Claude Code, no VPN required.
Ask Lior for the shared API key (starts with sk-aitken-โฆ). Keep it private.
Paste this in your terminal, replacing YOUR_KEY:
curl -fsSL https://shemesh.liorruba.com/install.sh | bash -s -- YOUR_KEY
It checks your key, installs the Claude Code CLI if needed, and adds a shemesh command. Your normal claude is left untouched.
cd your/project shemesh
shemesh launches Claude Code against the Shemesh model. That's it.
Speaks both the Anthropic API (Claude Code) and the OpenAI API (opencode & others).
Claude Code โ set these env vars and run claude:
export ANTHROPIC_BASE_URL=https://shemesh.liorruba.com export ANTHROPIC_API_KEY=YOUR_KEY export ANTHROPIC_MODEL=shemesh export ANTHROPIC_SMALL_FAST_MODEL=shemesh
opencode / OpenAI-compatible:
https://shemesh.liorruba.com/v1 ยท Model shemesh ยท Key = your keyRaw test:
curl https://shemesh.liorruba.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_KEY" -H "Content-Type: application/json" \
-d '{"model":"shemesh","messages":[{"role":"user","content":"hello"}]}'