@dzhechkov/harness-core 0.3.124 → 0.3.126

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/src/index.ts CHANGED
@@ -167,6 +167,38 @@ export type { PackageDownloads, DownloadsReport } from './downloads.js';
167
167
  export { discoverInstalled, checkUpgrades } from './upgrade.js';
168
168
  export type { InstalledSkill, UpgradeCheck, UpgradeReport } from './upgrade.js';
169
169
  export type { PublishResult, PublishReport, ProvenanceMode, ProvenanceDecision } from './publish.js';
170
+ // Verified-release engine (feature release-verified, ADR-001) — pure VERIFY-phase planner +
171
+ // classifier in front of the untouched publish path. formatPublishError is re-exported for the
172
+ // CLI executor's captured-output discipline.
173
+ export {
174
+ collectPackageFacts,
175
+ selectAffectedPackages,
176
+ planReleaseGates,
177
+ classifyGateExecutions,
178
+ buildFailureIssue,
179
+ buildReleaseNotes,
180
+ releaseTagName,
181
+ firstOutputLine,
182
+ RELEASE_GATE_ORDER,
183
+ RELEASE_TIMEOUTS,
184
+ } from './release.js';
185
+ export type {
186
+ ReleaseGateId,
187
+ ReleaseFailureClass,
188
+ ReleaseSkipClass,
189
+ ReleaseBinEntry,
190
+ ReleasePackageFacts,
191
+ GateStep,
192
+ GateSkip,
193
+ GatePlan,
194
+ GateExecution,
195
+ GateFailure,
196
+ GateResult,
197
+ ReleaseVerdict,
198
+ PlanReleaseGatesOptions,
199
+ FailureIssueContext,
200
+ } from './release.js';
201
+ export { formatPublishError } from './publish.js';
170
202
  export { computeRiskScore } from './risk-scoring.js';
171
203
  export type { RiskScore, RiskThresholds } from './risk-scoring.js';
172
204
  export {