Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,73 @@ jobs:
python-version: "3.12"
- name: Assert CLI and plugin manifest versions match
run: python3 scripts/check_versions.py

cli-wheel-assets:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install build tooling
run: python -m pip install --upgrade pip build
- name: Build sdist + wheel
working-directory: plugins/evo
run: python -m build
- name: Verify dashboard assets are in the wheel
working-directory: plugins/evo
run: |
whl=$(ls dist/*.whl)
for f in evo/static/index.html evo/static/app.js evo/static/style.css; do
unzip -l "$whl" | awk '{print $NF}' | grep -qx "$f" || {
echo "missing $f in $whl"; exit 1;
}
done
- name: Smoke-test installed CLI
working-directory: plugins/evo
run: |
python -m venv /tmp/smoke
/tmp/smoke/bin/pip install dist/*.whl
/tmp/smoke/bin/evo --version
/tmp/smoke/bin/python -c "from evo import dashboard; from pathlib import Path; p = Path(dashboard.__file__).parent / 'static' / 'index.html'; assert p.exists(), p"

sdk-python:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install build tooling
run: python -m pip install --upgrade pip build
- name: Build sdist + wheel
working-directory: sdk/python
run: python -m build
- name: Install built wheel
working-directory: sdk/python
run: python -m pip install dist/*.whl
- name: Run SDK tests
run: python sdk/python/test/test_run.py

sdk-node:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ["18", "20", "22", "24"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run SDK tests
working-directory: sdk/node
run: npm test
9 changes: 9 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,15 @@ jobs:
- name: Check distribution metadata
working-directory: plugins/evo
run: twine check dist/*
- name: Verify dashboard assets are in the wheel
working-directory: plugins/evo
run: |
whl=$(ls dist/*.whl)
for f in evo/static/index.html evo/static/app.js evo/static/style.css; do
unzip -l "$whl" | awk '{print $NF}' | grep -qx "$f" || {
echo "missing $f in $whl"; exit 1;
}
done
- name: Publish to PyPI
working-directory: plugins/evo
env:
Expand Down
2 changes: 1 addition & 1 deletion plugins/evo/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "evo",
"version": "0.2.1",
"version": "0.2.2",
"description": "Structured experiment-driven code optimization using tree search and parallel subagents"
}
2 changes: 1 addition & 1 deletion plugins/evo/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evo",
"version": "0.2.1",
"version": "0.2.2",
"description": "Structured experiment-driven code optimization using tree search and parallel subagents",
"author": {
"name": "evo-hq",
Expand Down
7 changes: 5 additions & 2 deletions plugins/evo/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[project]
name = "evo-hq-cli"
version = "0.2.1"
version = "0.2.2"
description = "Structured experiment-driven code optimization with git worktrees, traces, and a local dashboard. CLI for the evo plugin (Claude Code, Codex)."
requires-python = ">=3.12,<3.14"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
readme = "README.md"
Expand All @@ -29,3 +29,6 @@ package-dir = {"" = "src"}

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
evo = ["static/*"]
2 changes: 1 addition & 1 deletion plugins/evo/src/evo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# PyPI distribution name. Stable string used by skill checks to distinguish
# our binary from unrelated `evo` packages on PATH (e.g. the SLAM tool).
DISTRIBUTION_NAME = "evo-hq-cli"
__version__ = "0.2.1"
__version__ = "0.2.2"
84 changes: 82 additions & 2 deletions plugins/evo/uv.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sdk/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evo-hq/evo-agent",
"version": "0.2.1",
"version": "0.2.2",
"description": "Lightweight reporting SDK for evo experiments. Zero dependencies.",
"type": "module",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "evo-hq-agent"
version = "0.2.1"
version = "0.2.2"
description = "Lightweight reporting SDK for evo experiments. Zero dependencies."
requires-python = ">=3.10"
dependencies = []
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/src/evo_agent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from ._run import Run

__all__ = ["Backend", "Gate", "LocalBackend", "Run"]
__version__ = "0.2.1"
__version__ = "0.2.2"
Loading