@agentskit/doc-bridge 1.6.2 → 1.6.3

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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.6.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Add configurable relation-coverage policy, invalidate workflow artifacts when analyzer logic changes, improve offline report readability on small screens, and ship the visual verification script used by the report command.
8
+
3
9
  ## 1.6.2
4
10
 
5
11
  ### Patch Changes
package/action.yml CHANGED
@@ -20,7 +20,7 @@ inputs:
20
20
  package-version:
21
21
  description: Exact @agentskit/doc-bridge npm version (kept in sync with this Action release)
22
22
  required: false
23
- default: '1.6.2'
23
+ default: '1.6.3'
24
24
 
25
25
  runs:
26
26
  using: composite
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+ import { main } from '../scripts/verification-harness.mjs'
3
+
4
+ try {
5
+ process.exitCode = await main(process.argv.slice(2))
6
+ } catch (error) {
7
+ process.stderr.write(`${error instanceof Error ? error.message : String(error)}\n`)
8
+ process.exitCode = 2
9
+ }