Skip to main content

A from-scratch coding agent — bring your own OpenRouter API key

Project description

██╗     ███████╗████████╗███████╗ ██████╗ ██████╗ ██████╗ ███████╗
██║     ██╔════╝╚══██╔══╝██╔════╝██╔════╝██╔═══██╗██╔══██╗██╔════╝
██║     █████╗     ██║   ███████╗██║     ██║   ██║██║  ██║█████╗  
██║     ██╔══╝     ██║   ╚════██║██║     ██║   ██║██║  ██║██╔══╝  
███████╗███████╗   ██║   ███████║╚██████╗╚██████╔╝██████╔╝███████╗
╚══════╝╚══════╝   ╚═╝   ╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝╚══════╝

Building Claude Code from scratch — a minimal coding agent you own and understand.


What is this?

letscode is a coding agent built from first principles. It replicates the core loop of tools like Claude Code:

  • You describe a coding task in plain English
  • The agent calls tools (read files, list directories, edit files) to get the job done
  • It keeps looping — reading, reasoning, editing — until the task is complete

The entire agent fits in a single file. No magic, no abstractions you didn't write yourself.


Features

  • Model-agnostic — works with any model on OpenRouter: Claude, GPT-4o, Gemini, Llama, Mistral, DeepSeek, and more
  • Free tier support — defaults to meta-llama/llama-3.3-70b-instruct:free (no cost)
  • Three core tools built in: read files, list directories, edit files
  • Text-protocol tool-calling — no vendor lock-in; the LLM emits tool calls as plain text
  • Full conversation history — the agent remembers context across turns

Quickstart

1. Clone the repo

git clone https://github.com/srinivasankh/letscode.git
cd letscode

2. Set up your API key

Copy the example config and add your OpenRouter key:

cp .env.example .env

Edit .env:

OPENROUTER_API_KEY=sk-or-your-key-here

That's all you need. The default model is free — no credit card required.

3. Run it

uv run letscode

Or, if you prefer pip:

pip install -e .
letscode

Bring Your Own API Key (BYOK)

letscode routes all LLM calls through OpenRouter, which gives you a single API key that works with dozens of models.

Get a free key:

  1. Sign up at openrouter.ai
  2. Go to openrouter.ai/keys → create a key
  3. Paste it into your .env file as OPENROUTER_API_KEY

Choose your model by setting OPENROUTER_MODEL in .env:

# Free models (no cost)
OPENROUTER_MODEL=meta-llama/llama-3.3-70b-instruct:free
OPENROUTER_MODEL=google/gemma-3-27b-it:free
OPENROUTER_MODEL=deepseek/deepseek-r1:free

# Frontier models (paid, best quality)
OPENROUTER_MODEL=anthropic/claude-sonnet-4
OPENROUTER_MODEL=openai/gpt-4o
OPENROUTER_MODEL=google/gemini-2.5-pro

Browse all available models at openrouter.ai/models.


How it works

The agent runs a simple loop:

User input
    └─▶ LLM reasons about the task
            └─▶ Emits a tool call  (e.g. tool: read_file({"filename": "app.py"}))
                    └─▶ Agent executes the tool
                            └─▶ Result fed back to LLM
                                    └─▶ Repeat until done

Available tools:

Tool What it does
read_file(filename) Read the full content of a file
list_files(path) List files and directories at a path
edit_file(path, old_str, new_str) Replace text in a file, or create a new file

Project structure

src/letscode/
  agent.py       # the entire agent: tools, prompt, parser, loop
pyproject.toml   # package config
.env.example     # config template — copy to .env

Requirements

  • Python 3.12+
  • uv (recommended) or pip
  • A free OpenRouter API key

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

letscode_cli-0.1.2.tar.gz (28.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

letscode_cli-0.1.2-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file letscode_cli-0.1.2.tar.gz.

File metadata

  • Download URL: letscode_cli-0.1.2.tar.gz
  • Upload date:
  • Size: 28.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for letscode_cli-0.1.2.tar.gz
Algorithm Hash digest
SHA256 a47dbd38ee0adcdb30dc9d86fe8bf334354802e1f38c9a69127896d2f598e512
MD5 a691c1646658d8adbc8b3b6af412ce4a
BLAKE2b-256 e6cd2f82743d794531a549909df52455773087721d5a9a381def3afeeed97549

See more details on using hashes here.

File details

Details for the file letscode_cli-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: letscode_cli-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 8.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for letscode_cli-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9ff9e919257b5a0deaf375a69e8743cf81642f8b45e6322478c69fe028e2dda7
MD5 47a86795b8461bdead6f70e3ad83cb5f
BLAKE2b-256 09fd93a14370fd0b3ada3237b46f446aae75944d1fe73b376578cf1c6a321086

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page