Evolution CLI - a developer toolbox for setting up dev machines
Project description
Evolution CLI (Develop by Dev And for Dev)
Awesome evo_cli created by maycuatroi
Install it from PyPI
pip install evo-cli
Available Commands
evo is built with click and
rich. Run evo --help or evo <command> -h
for colorized help, option tables, and examples.
SSH Setup
Set up SSH with key-based authentication:
evo setupssh
Options:
-H, --host- SSH server hostname or IP address-u, --user- SSH username-p, --password- SSH password (prefer the interactive prompt)-P, --port- SSH port (default: 22)-i, --identity- Existing private key to install instead of generating one
Miniconda Installation
Install Miniconda with cross-platform support:
evo miniconda
Options:
-p, --prefix- Installation directory (default: ~/miniconda3 or %USERPROFILE%\miniconda3)-f, --force- Force reinstallation even if Miniconda is already installed
Cloudflare SSH Tunnel
Expose this Ubuntu machine's SSH server through a Cloudflare named tunnel, so you can reach it from anywhere without opening a public inbound port:
evo cfssh -H dev.example.com
It installs cloudflared, logs in to Cloudflare, creates a named tunnel, writes /etc/cloudflared/config.yml with an ssh:// ingress rule, routes a proxied DNS record, and installs the cloudflared systemd service. Requires a Cloudflare account with a domain managed in Cloudflare.
Options:
-H, --hostname- Public hostname for SSH, e.g.dev.example.com-n, --name- Tunnel name (default: first label of the hostname)-P, --ssh-port- Local SSH port to forward (default: 22)--no-service- Configure only, do not install the systemd service
To connect from a client machine, install cloudflared and add to ~/.ssh/config:
Host dev.example.com
User <your-user>
ProxyCommand cloudflared access ssh --hostname %h
Fix Claude Code
Detect and fix the Claude Code 2.1.154-2.1.158 tool-result delivery bug (commands run but their output is returned to the model empty, duplicated, or out of order):
evo f-claude
It checks the installed version against the affected range, disables the auto-updater in ~/.claude/settings.json (backing it up first), downgrades to a known-good build, respawns background sessions, and verifies the result.
Options:
-c, --check- Diagnose only; make no changes--pin-version- Known-good version to install when downgrading (default: 2.1.153)--no-downgrade- Only disable the auto-updater; skip the reinstall-y, --yes- Skip the confirmation prompt-f, --force- Apply the fix even if the version is not in the affected range--unpin- Undo the fix: re-enable the auto-updater and install the latest build
Credentials
evo owns the omelet credential store. The source of truth is a folder of one JSON file per service
(~/.omelet.d/credentials/), which compiles into a flat ~/.omelet.json that older consumers read
directly.
evo cred doctor # health + expiry of every credential, exit 1 if any expired
evo cred get openai_api_key # print one value by dotted path, nothing else on stdout
evo cred add openai_api_key # prompt with no echo, write the folder file, recompile
evo cred auth --service google-drive # first-time OAuth consent, stores the refresh token
evo cred refresh --all # refresh Google OAuth access tokens
evo cred compile # rebuild ~/.omelet.json from the folder
evo cred sync push # push the folder to a private GitHub repo via gh
Read a value into the environment without it reaching your shell history:
eval "$(evo cred get --export OPENAI_API_KEY openai_api_key)"
Configuration is env-driven, with no personal defaults baked in:
OMELET_DIR- store root (default~/.omelet.d; the folder is$OMELET_DIR/credentials)OMELET_CONFIG- compiled flat file (default~/.omelet.json)OMELET_SYNC_REPO- required forsync; a private GitHub repo asowner/repoOMELET_SYNC_DIR- folder name inside the sync repo (defaultcredentials)RCLONE_DRIVE_CLIENT_ID/RCLONE_DRIVE_CLIENT_SECRET- OAuth client for the rclone refresh
evo cred sync push refuses to push to a repo whose visibility is not PRIVATE. Never echo a value
into a shared terminal or a log; doctor and list only ever print a masked preview.
evo cred auth performs the initial OAuth consent that refresh cannot: it starts a loopback server,
opens the consent screen, and writes the resulting refresh token into the store. Create the OAuth
client in the Cloud Console first (APIs & Services -> Credentials -> Create OAuth client ID ->
Desktop app) and pass the downloaded JSON with --client-secrets; there is no gcloud equivalent
for creating an OAuth client.
evo gdrive reads its token from the google_drive entry through this store rather than parsing
~/.omelet.json itself, so a refresh writes to the folder and recompiles instead of racing whatever
else has the flat file open.
Harness Repositories
Fast-forward every available repository declared in a harness manifest:
evo harness pull
Run the command from a harness directory or any registered member repository. Use --harness PATH
when a repository belongs to multiple harnesses or the harness is not registered.
evo harness pull --harness ~/github/my-project-harness
evo harness pull --repo backend --repo frontend
evo harness pull --dry-run
The command reads harness.yaml and its optional harness.local.yaml overlay. Repositories marked
present: false are skipped. Repositories with uncommitted changes are not modified, and every pull
uses git pull --ff-only so the command never creates merge commits.
Text to Speech
Synthesise speech through Vbee (Vietnamese) or OpenAI gpt-4o-mini-tts, and play it right away:
evo tts speak "Xin chào, bản build đã xong"
evo tts speak -f notes.md -o notes.mp3
evo tts speak "hello there" -p openai -V nova --instructions "calm and encouraging"
git log -1 --format=%s | evo tts speak
speak is the realtime path. Text longer than the provider's per-request limit (Vbee 300
characters, OpenAI 4000) is split on sentence boundaries and the audio is joined back into one file,
so the first words start playing while the rest is still being synthesised.
For bulk work use the batch path, which goes through Vbee's async API and polls
/v1/tts/requests/{id} until each audio link appears:
evo tts batch chapters/ -o audio/ # one mp3 per .txt/.md file
evo tts batch a.txt b.txt -c 8 # 8 items in flight
evo tts batch --manifest jobs.jsonl # {"id":.., "text":.., "voice":..} per line
OpenAI has no batch speech endpoint, so with -p openai the items are parallelised locally instead.
Voice codes come from evo tts voices (-l en-US, --gender male, -p openai, --json).
Credentials live in the omelet store, never in flags or source:
evo cred add vbee.app_id --from-stdin # UUID from https://studio.vbee.vn/apps
evo cred add vbee.token --from-stdin # JWT from the same app page
evo cred add openai_api_key --from-stdin
VBEE_APP_ID, VBEE_TOKEN, and OPENAI_API_KEY override the store when set.
--provider auto (the default) resolves to EVO_TTS_PROVIDER when that is set, and otherwise to
whichever provider has credentials. Pick a machine default once:
export EVO_TTS_PROVIDER=openai # what `auto` means here
export EVO_TTS_VOICE_OPENAI=nova # default voice for that provider only
Prefer the provider-scoped EVO_TTS_VOICE_OPENAI / EVO_TTS_VOICE_VBEE over a bare
EVO_TTS_VOICE: a shared value breaks as soon as you pass --provider vbee, because an OpenAI
voice name is not a Vbee voice code.
Playback uses whichever of ffplay, mpv, cvlc, afplay, or paplay/aplay is on PATH, and
falls back to PowerShell's MediaPlayer on Windows. Without any of them the audio is still written
to disk and the command warns.
The same engine backs the evo-tts MCP server in
agent-skills, which gives an agent a speak tool.
evo harness - read a repo cluster
A harness is a repo that describes a cluster of repos: harness.yaml lists them, contracts.yaml
declares the seams between them (who owns what, who consumes it, what verifies it), and plans/
holds exec-plans for changes that span several repos at once.
evo harness finds that repo by walking up from the current directory to a harness.yaml, falling
back to ~/.claude/harness/registry.json, so every command works with no arguments from anywhere
inside the cluster. Pass --harness PATH to override.
evo harness serve # dashboard on http://127.0.0.1:8788
evo harness repos # repos in the manifest, with branch and dirty state
evo harness seams # contract seams; --graph for the owner -> consumer DAG
evo harness plans # progress across every exec-plan
evo harness show <plan>
evo harness check <plan> [--fetch] # what the plan claims vs what git says
evo harness graph <plan>:steps # the same DAG as an adjacency list
evo harness pull # fast-forward every repo
The dashboard
serve draws every dependency in the cluster as a DAG: seam ownership between repos, repo merge
order inside a plan, and step order built from depends_on / depends_on_step / blocked_by /
blocks. It detects cycles (Tarjan) and reports them, because a cycle means no merge order
satisfies every seam - which is exactly the thing a plan gets wrong silently.
Every graph has a table view beside it. A node-link diagram conveys nothing to a screen reader
and cannot be pasted into a document, so the adjacency list is a first-class view rather than a
fallback, and the terminal gets the same data from evo harness graph.
The dashboard is read-only. Plan YAML is folded block scalars and hand-written prose; re-emitting it with a YAML dumper would destroy the formatting. Writes go through the CLI, which splices the one line it needs and refuses to save if the reparsed file is not exactly the intended change:
evo harness step <plan> 3 done --note "..." # keyed by the step's `id` (or `order`)
evo harness debt <plan> 0 fixed
evo harness question <plan> 1 answered
evo harness repo <plan> 2 merged
The server is stdlib http.server, so serve needs no dependency beyond what pip install evo_cli
already brings.
Building the dashboard bundle
Release wheels ship the built bundle, so users never need Node. Only changing the UI does:
cd web && npm install && npm run build
That writes evo_cli/commands/harness/web/, which is committed. npm run dev serves the UI on
:5178 and proxies /api to a running evo harness serve for a live-reload loop.
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 evo_cli-0.14.4.tar.gz.
File metadata
- Download URL: evo_cli-0.14.4.tar.gz
- Upload date:
- Size: 618.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50709f87ae16d891ed2203f40912cf951a3b406150c1984d000e81c76eb76dab
|
|
| MD5 |
dab43c6e6ac42fd951d06b1745cc0bcf
|
|
| BLAKE2b-256 |
a4abd1a690dc69006402adeb4b05a6b6cc6b97b1863d05ec5218b579d8e0880b
|
File details
Details for the file evo_cli-0.14.4-py3-none-any.whl.
File metadata
- Download URL: evo_cli-0.14.4-py3-none-any.whl
- Upload date:
- Size: 618.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dca9991874ec4a6d583b8ab006ab6c9f89b87f9589fb4c1c282b9869d8bb717
|
|
| MD5 |
35c1896b841820ec3c7a70f82c6f6038
|
|
| BLAKE2b-256 |
934c2af186078b90244c7119cc7e86fe8ef1d515b6996e44f0617cad8aceb62c
|