@mestreyoda/fabrica 0.2.27 → 0.2.28

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -113905,8 +113905,8 @@ import fsSync from "node:fs";
113905
113905
  import path5 from "node:path";
113906
113906
  import { fileURLToPath as fileURLToPath3 } from "node:url";
113907
113907
  function getCurrentVersion() {
113908
- if ("0.2.27") {
113909
- return "0.2.27";
113908
+ if ("0.2.28") {
113909
+ return "0.2.28";
113910
113910
  }
113911
113911
  try {
113912
113912
  const pkgPath = path5.join(THIS_DIR, "..", "..", "package.json");
@@ -125996,8 +125996,9 @@ async function executeCompletion(opts) {
125996
125996
  const donePolicy = resolveDonePolicy({ deliverable, qualityCriticality: qualityPolicy.qualityCriticalityFloor });
125997
125997
  const prSelector = issueRuntime?.currentPrNumber ? { prNumber: issueRuntime.currentPrNumber } : void 0;
125998
125998
  const closeRequested = completionRule.actions.includes(Action.CLOSE_ISSUE);
125999
- const hasEvidence = hasMeaningfulCompletionEvidence(effectiveSummary, prUrl, createdTasks);
126000
- const hasArchetypeEvidence = hasArchetypeSpecificEvidence(deliverable, effectiveSummary, prUrl, createdTasks);
125999
+ const canonicalPrEvidenceUrl = prUrl ?? issueRuntime?.currentPrUrl ?? issueRuntime?.artifactOfRecord?.url ?? void 0;
126000
+ const hasEvidence = hasMeaningfulCompletionEvidence(effectiveSummary, canonicalPrEvidenceUrl, createdTasks);
126001
+ const hasArchetypeEvidence = hasArchetypeSpecificEvidence(deliverable, effectiveSummary, canonicalPrEvidenceUrl, createdTasks);
126001
126002
  const finalAcceptance = buildFinalAcceptanceSummary({
126002
126003
  deliverable,
126003
126004
  qualityPolicy,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mestreyoda/fabrica",
3
- "version": "0.2.27",
3
+ "version": "0.2.28",
4
4
  "description": "Autonomous software engineering pipeline for OpenClaw. Turns ideas into deployed code via intake, dispatch, review, test, and merge.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",