Releases: ellipsis-dev/cli
Releases · ellipsis-dev/cli
Release list
v0.1.6
chore: release v0.1.6 (#18) Bump to 0.1.6 and fix the release workflow's version stamping. Since #16, src/lib/constants.ts reads pkg.version, so the workflow's sed on "export const VERSION = ..." no longer matched and was a no-op: a tag would ship a binary reporting the old version and fail the Homebrew `agent --version` assertion. Stamp package.json via `npm version` instead.
v0.1.5
v0.1.4
feat: add --prompt flag to run start (#15) Adds a `-p, --prompt <text>` option to `agent run start`, wiring it through to the `prompt` field on the POST /v1/agents/runs request body. The API appends it to the initial user query at build time, after the config's shared `claude.system` prompt — per-run instructions distinct from the system prompt. Bumps version to 0.1.4. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
v0.1.3
feat: accept YAML or JSON agent config files for run start (#14) `agent run start --config-file` now picks the parser by extension: .json parses as JSON, .yaml/.yml (and any other extension) parse as YAML. The result is validated to be a top-level mapping, with a clear error otherwise. Bumps version to 0.1.3. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
v0.1.2
chore: release 0.1.2 Bump version to 0.1.2 for the headless env-token auth work (#5, #6) and run-streaming spec alignment (#4) landed since v0.1.1. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
v0.1.1
CLI polish: v1 ping, YAML config get, table output, run --watch, conf…
v0.1.0
Fix bun --compile release build: bundle react-devtools-core (#2) `bun build --compile` bundles everything into the single binary, so it follows ink's optional `react-devtools-core` import (a dev-only dynamic import guarded by `process.env.DEV === 'true'`) and fails to resolve it — breaking the release workflow. The tsup `build` doesn't hit this because tsup externalizes deps. Install react-devtools-core as a devDependency so bun can bundle it. It never executes at runtime (the DEV guard stays false), so the production binary is unaffected aside from including the module. Verified locally: `bun build src/cli.tsx --compile` now succeeds and `agent --version` runs. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>