@xera-ai/skills 0.9.2 → 0.9.4
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 +8 -0
- package/package.json +1 -1
- package/xera-report.md +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @xera-ai/skills
|
|
2
2
|
|
|
3
|
+
## 0.9.4
|
|
4
|
+
|
|
5
|
+
## 0.9.3
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [#49](https://github.com/xera-ai/xera/pull/49) [`f1e9d90`](https://github.com/xera-ai/xera/commit/f1e9d903a923206d3d5603e033ceb968581655c9) Thanks [@thanhtrinity](https://github.com/thanhtrinity)! - copy graph templates into dist/bin/ during build (auto-generated from [#49](https://github.com/xera-ai/xera/issues/49))
|
|
10
|
+
|
|
3
11
|
## 0.9.2
|
|
4
12
|
|
|
5
13
|
## 0.9.1
|
package/package.json
CHANGED
package/xera-report.md
CHANGED
|
@@ -63,13 +63,16 @@ For every scenario in `classifier-input.json` whose `outcome === "FAIL"`:
|
|
|
63
63
|
- Output: JSON `{ classification, confidence, evidence }` per the prompt schema.
|
|
64
64
|
5. Aggregate all decisions into `.xera/<TICKET>/runs/<RUN_ID>/outdated-decisions.json` keyed by `scenarioId`.
|
|
65
65
|
|
|
66
|
-
**If lazy similarity is needed** (a candidate ticket exists but has no `similar` edges and is hot for many scenarios)
|
|
66
|
+
**If lazy similarity is needed** (a candidate ticket exists but has no `similar` edges and is hot for many scenarios):
|
|
67
|
+
|
|
68
|
+
1. Read `node_modules/@xera-ai/prompts/similarity-match.md`. Follow its rules to produce a JSON object `{ "similar": [{ "ticketId": "...", "confidence": 0.0–1.0, "reason": "..." }] }`. Write that object to `.xera/<CANDIDATE>/enrichment-input.json`.
|
|
69
|
+
2. Then run:
|
|
67
70
|
|
|
68
71
|
```bash
|
|
69
72
|
bun run xera:graph-enrich --ticket <CANDIDATE>
|
|
70
73
|
```
|
|
71
74
|
|
|
72
|
-
This populates `similar` edges so future graph queries are richer. Skip if not needed.
|
|
75
|
+
This populates `similar` edges so future graph queries are richer. Skip entirely if not needed.
|
|
73
76
|
|
|
74
77
|
4a. **Heal sub-flow (only if SELECTOR_DRIFT present).** If the user passed `--no-heal` in the invocation, skip this entire sub-flow and proceed directly to step 5.
|
|
75
78
|
|