@xera-ai/cli 0.10.0 → 0.11.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xera-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"xera": "./bin/xera"
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"typecheck": "tsc --noEmit"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@xera-ai/core": "^0.
|
|
19
|
-
"@xera-ai/skills": "^0.
|
|
18
|
+
"@xera-ai/core": "^0.11.0",
|
|
19
|
+
"@xera-ai/skills": "^0.11.0",
|
|
20
20
|
"@clack/prompts": "1.4.0",
|
|
21
21
|
"cac": "7.0.0",
|
|
22
22
|
"picocolors": "1.1.1"
|
|
@@ -22,4 +22,11 @@ export default defineConfig({
|
|
|
22
22
|
},
|
|
23
23
|
},
|
|
24
24
|
},
|
|
25
|
+
// Coverage gap report (v0.8.0+). Run `/xera-coverage` to see UNCOVERED /
|
|
26
|
+
// STALE areas and AC gaps. See docs/CONFIGURATION.md for `criticalAreas`.
|
|
27
|
+
coverage: {
|
|
28
|
+
staleAfterDays: 30,
|
|
29
|
+
criticalAreas: [],
|
|
30
|
+
autoSnapshotOnCoverage: true,
|
|
31
|
+
},
|
|
25
32
|
});
|
|
@@ -34,4 +34,11 @@ export default defineConfig({
|
|
|
34
34
|
},
|
|
35
35
|
},
|
|
36
36
|
},
|
|
37
|
+
// Coverage gap report (v0.8.0+). Run `/xera-coverage` to see UNCOVERED /
|
|
38
|
+
// STALE areas and AC gaps. See docs/CONFIGURATION.md for `criticalAreas`.
|
|
39
|
+
coverage: {
|
|
40
|
+
staleAfterDays: 30,
|
|
41
|
+
criticalAreas: [],
|
|
42
|
+
autoSnapshotOnCoverage: true,
|
|
43
|
+
},
|
|
37
44
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Auto-publish xera graph viewer on every PR.
|
|
2
|
-
# Generated by `xera init` (v0.6.3
|
|
2
|
+
# Generated by `xera init` (v0.6.3+, Coverage tab added in v0.8.1).
|
|
3
3
|
name: xera graph viewer
|
|
4
4
|
on:
|
|
5
5
|
pull_request:
|
|
@@ -18,8 +18,11 @@ jobs:
|
|
|
18
18
|
- name: Build graph snapshot
|
|
19
19
|
run: bun run xera:graph-snapshot
|
|
20
20
|
continue-on-error: true
|
|
21
|
-
- name:
|
|
22
|
-
run: bun run xera:
|
|
21
|
+
- name: Build coverage report (v0.8.0+)
|
|
22
|
+
run: bun run xera:coverage-prepare --no-emit-event
|
|
23
|
+
continue-on-error: true
|
|
24
|
+
- name: Render viewer with Coverage tab
|
|
25
|
+
run: bun run xera:graph-render --include-coverage --out graph.html
|
|
23
26
|
continue-on-error: true
|
|
24
27
|
- name: Upload artifact
|
|
25
28
|
uses: actions/upload-artifact@v4
|
|
@@ -31,4 +31,12 @@ export default defineConfig({
|
|
|
31
31
|
{{/if}}
|
|
32
32
|
},
|
|
33
33
|
adapters: ['web'],
|
|
34
|
+
// Coverage gap report (v0.8.0+). Run `/xera-coverage` to see UNCOVERED /
|
|
35
|
+
// STALE areas and AC gaps. Marking areas as critical doubles their risk
|
|
36
|
+
// weight so business-critical paths surface even on low ticket activity.
|
|
37
|
+
coverage: {
|
|
38
|
+
staleAfterDays: 30,
|
|
39
|
+
criticalAreas: [],
|
|
40
|
+
autoSnapshotOnCoverage: true,
|
|
41
|
+
},
|
|
34
42
|
});
|