Skip to content

Releases: testomatio/explorbot

0.1.18

12 May 21:55
5eb11d7

Choose a tag to compare

What's Changed

Full Changelog: 0.1.17...0.1.18

0.1.17

11 May 00:22

Choose a tag to compare

Added --configure to explore command

0.1.16

08 May 21:39

Choose a tag to compare

  • Improved focused section detection on research

0.1.14

07 May 01:21

Choose a tag to compare

  • Improved analysis readability
  • Reduced token cost

0.1.13

05 May 22:56

Choose a tag to compare

See changelog

  • markdown output
  • post-analyzer for defects

0.1.12

29 Apr 13:04

Choose a tag to compare

Added screencatss output

0.1.11

26 Apr 22:03

Choose a tag to compare

  • Added Playwright output for test automation
  • See changelog

0.1.10

21 Apr 10:03

Choose a tag to compare

ci: fix format check and deterministic mergedFrom order

- bin/explorbot-cli.ts: replace tab with 2-space indent to satisfy biome format
- experience-compactor: order mergedFrom by AI decision urls instead of readdirSync order, which varied across filesystems and broke the CI test

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

0.1.9

20 Apr 23:27

Choose a tag to compare

explore: accept --focus in ExploreCommand.parseArgs

Commit 6c37b1c wired --focus on the outer commander layer but
the inner ExploreCommand.parseArgs() still rejected the flag.
Adds --focus to options and reads opts.focus before falling back
to positional args.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

0.1.8

20 Apr 23:02

Choose a tag to compare

cli: fix version lookup on Node.js (non-Bun) builds

import.meta.dir is Bun-only; under Node it is undefined and
path.resolve threw ERR_INVALID_ARG_TYPE in the published CLI,
failing tests/node/build.test.mjs. Switch to
fileURLToPath(import.meta.url) which works in both runtimes,
and copy package.json into dist/ so the relative path matches
the shipped layout.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>