@xera-ai/skills 0.22.0 → 0.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @xera-ai/skills
|
|
2
2
|
|
|
3
|
+
## 0.23.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#237](https://github.com/xera-ai/xera/pull/237) [`fa9adc4`](https://github.com/xera-ai/xera/commit/fa9adc4a2e1bd1ff851a1fbe7321cf72804d2f36) Thanks [@thanhtrinity](https://github.com/thanhtrinity)! - feat: xera dashboard — cross-ticket aggregate of latest test results
|
|
8
|
+
|
|
9
|
+
New `xera dashboard` command aggregates `.xera/<TICKET>/status.json` across the project. Renders text (default, ANSI colors when TTY), `--json` (CI integration), `--html <path>` (file), and `--serve` (interactive HTML at 127.0.0.1:9323 with sortable/filterable table + click-through to per-ticket Playwright reports).
|
|
10
|
+
|
|
11
|
+
Filters: `--since`, `--classification` (repeatable), `--area` (repeatable), `--failing-only`. New optional `dashboard: { staleAfterDays, recentFailureLimit }` config block.
|
|
12
|
+
|
|
13
|
+
Companion to the v0.6 graph viewer (structure) and v0.8 coverage report (AC satisfaction). Closes the "no project-level test result view" gap surfaced by QA leads needing a daily standup readout.
|
|
14
|
+
|
|
15
|
+
Refactor: `serveHtmlFile` extracted from `xera show-report` into shared `packages/cli/src/serve.ts` so both commands use the same static-server implementation (and the `open` package dep is replaced with platform-native `open`/`start`/`xdg-open` spawn).
|
|
16
|
+
|
|
3
17
|
## 0.22.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|