CLI utility for parsing and managing algorithmic problems from platforms like LeetCode and CodeWars
Project description
Algorepo (α)
Algorepo is a CLI utility that scaffolds, organizes, and locally tests your algorithmic solutions — giving you a structured personal repository you control entirely.
Table of Contents
- The Idea
- How it Works
- Features
- Prerequisites
- Installation
- Quick Start
- A Note on Test Runners
- Roadmap
- Contributing
- License
The Idea
Solving DSA problems consistently is one of the most reliable ways to prepare for technical interviews. The harder part is building a habit and having something to show for it.
Algorepo's premise is simple: your solutions should live in your Git repository, structured the way you want, runnable from your terminal. LeetCode and CodeWars have their own tooling — sync integrations, notes, browser extensions. Algorepo is for those who prefer a local-first workflow: write in your editor, run tests in your terminal, commit to your own repo, and let the history speak for itself.
A well-maintained solutions repository is also something a potential employer can actually read — real code, organized and annotated the way you think.
How it Works
Pass a problem URL and Algorepo fetches the statement, extracts the function signature, and opens a ready-to-edit file in your editor:
❯ algorepo [https://leetcode.com/problems/zigzag-conversion/description/](https://leetcode.com/problems/zigzag-conversion/description/)
6. Zigzag Conversion [Medium]
Python3
/Users/you/Solutions/LeetCode/6. Zigzag Conversion.py
The generated file looks like this:
from lc import *
# ================================================
# 6. Zigzag Conversion
# https://leetcode.com/problems/zigzag-conversion/
# ================================================
class Solution:
def convert(self, s: str, numRows: int) -> str:
pass
test("""
Example 1:
Input: s = "PAYPALISHIRING", numRows = 3
Output: "PAHNAPLSIIGYIR"
Example 2:
Input: s = "PAYPALISHIRING", numRows = 4
Output: "PINALSIGYAHRPI"
# [truncated for readability]
""")
Write your solution, then test it with one command:
❯ algorepo test "6. Zigzag Conversion.py"
PASSED Test 1: args "PAYPALISHIRING", 3 result "PAHNAPLSIIGYIR" expected "PAHNAPLSIIGYIR"
PASSED Test 2: args "PAYPALISHIRING", 4 result "PINALSIGYAHRPI" expected "PINALSIGYAHRPI"
No compiler setup, no boilerplate main(), no copy-pasting.
Features
- Multi-platform — LeetCode and CodeWars.
- 10 language runners — C, C++, C#, Go, Java, JavaScript, Kotlin, Python, Rust, TypeScript. (more to come..)
- Smart scaffolding — function signature, type hints, and full problem statement extracted automatically.
- Flexible language selection — use your configured default priority list or override per problem with
--lang. - Editor integration — opens the new file in any editor (
vim,nvim,nano,code,notepad…). - Local test runner — isolated execution, data passed via JSON marshaling.
- Share-ready — consistent structure, ready to be shared after each session..
Prerequisites
- Python: 3.10+
- Supported environments: Linux, macOS, Windows (WSL recommended).
Installation
Recommended (Global / CLI-wide):
# Via uv (fastest)
uv tool install algorepo
# Via pipx (industry standard for CLIs)
pipx install algorepo
Development / Local:
# Clone and install dependencies
git clone https://github.com/elsmirroad/algorepo.git
cd algorepo
uv sync
Quick Start
1. Configure
On the first run, Algorepo creates a config.yaml. Edit it to set your solutions directory, preferred language, and editor:
general:
# The directory where your solutions will be saved
solutions_dir: ~/Solutions
# Custom templates directory (Optional)
# If not set, uses ~/.config/algorepo/templates
# templates_dir: ~/.config/algorepo/templates
# Priority list: if Python3 isn't available for a problem, it falls back to C++
language_priority:
- Python3
- C++
editor: vim # nano | vim | nvim | notepad | code | ...
open_editor: true
# LeetCode Authentication (RECOMMENDED)
# Without these tokens, Cloudflare protection may block requests (403 Forbidden).
# Required to bypass 403 on Premium problems and some public ones.
# How to get them: Browser DevTools -> Application -> Cookies
leetcode_session: ""
leetcode_csrf_token: ""
2. Download a problem
# Shortest form — uses your default language priority
algorepo https://leetcode.com/problems/two-sum/
# Explicit subcommand
algorepo download https://leetcode.com/problems/two-sum/
# Override language for this specific problem
algorepo download https://leetcode.com/problems/two-sum/ --lang Java
3. Solve and test
Algorepo automatically finds the file in your solutions_dir by its name and extension.
algorepo test "1. Two Sum.py"
# Test a problem from a specific platform
algorepo test "Two Sum" --platform leetcode
4. Review your solutions
❯ algorepo list
SOLUTIONS:
LeetCode
1. Two Sum.py
6. Zigzag Conversion.py
# Filter by platform
algorepo list --platform codewars
A Note on Test Runners
⚠️ The runner system was designed with AI assistance and covers the common cases well. Complex or unusual data structures — certain tree variants, custom graph formats — may need manual test case adjustments.
If you find a bug or want to make a runner more idiomatic for your language, contributions are very welcome. See Contributing.
Roadmap
Roughly in priority order:
- HackerRank, CodeRun, Codeforces support — third major platform.
- Interactive CLI — search and select problems in the terminal via
questionary. - Stats engine — generate a
STATS.mdwith activity graphs and progress over time.
Contributing
If you're experienced in one of the supported languages and see a way to improve its runner — that's the highest-value contribution right now. Issues and PRs are open.
Please check CONTRIBUTING.md for local setup instructions and architectural guidelines.
License
MIT © 2026.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file algorepo-0.1.1.tar.gz.
File metadata
- Download URL: algorepo-0.1.1.tar.gz
- Upload date:
- Size: 103.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
402866eb9cbd2e2afb6c530020d355bdaea4d6506fb99c94107a71dc06099ef2
|
|
| MD5 |
9a822e390520b6cea4eb9f88cf3ec0a3
|
|
| BLAKE2b-256 |
81fe8396fb1115615e709e57b5241cc412382e4307164a5bf11c1eb772cf383b
|
File details
Details for the file algorepo-0.1.1-py3-none-any.whl.
File metadata
- Download URL: algorepo-0.1.1-py3-none-any.whl
- Upload date:
- Size: 58.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92ab461665f8b13c63edbde260472cdb034bca3efd31ddfb1a783c65faf67258
|
|
| MD5 |
0222015d7398a6acc5b0bd9da73c831c
|
|
| BLAKE2b-256 |
d18b760b4dc1fe749a1b0abdcd7da6db95af35ccfa8d2d0de79bf1fb519d6a10
|