Skip to content

Releases: ellipsis-dev/cli

v0.1.6

Choose a tag to compare

@github-actions github-actions released this 30 Jun 04:01
7a9b5d5
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

Choose a tag to compare

@github-actions github-actions released this 29 Jun 14:36
chore: release v0.1.5

v0.1.4

Choose a tag to compare

@github-actions github-actions released this 28 Jun 21:40
c4aae85
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

Choose a tag to compare

@github-actions github-actions released this 28 Jun 21:14
5ff6be1
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

Choose a tag to compare

@github-actions github-actions released this 25 Jun 18:18
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

Choose a tag to compare

@github-actions github-actions released this 25 Jun 17:27
617b605
CLI polish: v1 ping, YAML config get, table output, run --watch, conf…

v0.1.0

Choose a tag to compare

@github-actions github-actions released this 25 Jun 17:05
6234032
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>