@xera-ai/skills 0.12.0 → 0.12.2

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @xera-ai/skills
2
2
 
3
+ ## 0.12.2
4
+
5
+ ## 0.12.1
6
+
7
+ ### Patch Changes
8
+
9
+ - [#100](https://github.com/xera-ai/xera/pull/100) [`40a1488`](https://github.com/xera-ai/xera/commit/40a1488a7f0e5bbf697361a250977c680aca0dd3) Thanks [@thanhtrinity](https://github.com/thanhtrinity)! - core,cli,skills: strict config schema + remove unwired `testOutdated` config docs
10
+
11
+ - `XeraConfigSchema` is now `strictObject` and rejects unknown top-level keys instead of silently stripping them. This surfaces config typos and aspirational keys (e.g. `testOutdated`, `report`) at parse time with a clear Zod error ([#94](https://github.com/xera-ai/xera/issues/94)).
12
+ - Docs (`CONFIGURATION.md`, `TROUBLESHOOTING.md`) and the `/xera-report` skill no longer reference the unwired `testOutdated.threshold` / `report.testOutdatedNotify` keys; those tuning hooks are tracked for a future release.
13
+ - Followup to [#95](https://github.com/xera-ai/xera/issues/95) / [#92](https://github.com/xera-ai/xera/issues/92): the http-only `.env.example` template comment now references `.env` (the canonical filename) instead of `.env.local`.
14
+
3
15
  ## 0.12.0
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xera-ai/skills",
3
- "version": "0.12.0",
3
+ "version": "0.12.2",
4
4
  "files": [
5
5
  "*.md",
6
6
  "version.json"
package/xera-report.md CHANGED
@@ -193,10 +193,7 @@ In the current QA's session, only show a summary line:
193
193
  3 impact tickets notified (ABC-100, ABC-145, ABC-178). No action required from you.
194
194
  ```
195
195
 
196
- **Config:** Respects `xera.config.report.testOutdatedNotify`:
197
- - `'jira-subtask'` (default) — post sub-task as above
198
- - `'comment'` — post comment instead
199
- - `'console-only'` — only print to terminal, no Jira write
196
+ **Routing:** Currently always posts a `jira-subtask`. Alternative routings (`comment`, `console-only`) are tracked for a future release.
200
197
 
201
198
  ## Step 11 — Dispute capture (v0.6.1, optional)
202
199