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.
With the Claude Code extension installed, open VS Code's built-in terminal (Terminal โ New Terminal) and run this once:
curl -fsSL https://shemesh.liorruba.com/vscode.sh | bash -s -- YOUR_KEY
Then reload: Cmd/Ctrl+Shift+P โ Reload Window. Claude Code in VS Code now uses Shemesh.
Create ~/.claude/settings.json (or add to it):
{
"env": {
"ANTHROPIC_BASE_URL": "https://shemesh.liorruba.com",
"ANTHROPIC_AUTH_TOKEN": "YOUR_KEY",
"ANTHROPIC_MODEL": "shemesh",
"ANTHROPIC_SMALL_FAST_MODEL": "shemesh"
}
}Reload VS Code afterward. To undo, remove the ANTHROPIC_* lines.
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"}]}'