@gr8ful/spf 0.10.0 → 0.10.1

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.
@@ -513,7 +513,10 @@ export async function finishReviews(deps) {
513
513
  deps.log(`watch: ${issue.id}'s PR #${marker.pr} merged — done`);
514
514
  deps.notify({
515
515
  kind: "issue_done",
516
- level: "info",
516
+ // Same reasoning as pr_opened above: a merge landing is a milestone
517
+ // worth a human's attention (it's what closes the loop on the PR
518
+ // that alerted them in the first place), not a routine "info" tick.
519
+ level: "notice",
517
520
  title: `issue ${issue.id} done`,
518
521
  detail: `PR #${marker.pr} merged.`,
519
522
  fields: [["issue", issue.id], ["title", issue.title], ["pr", `#${marker.pr}`]],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gr8ful/spf",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "Super Portable Factory — a global CLI for repeatable agents-plus-code workflows (ADWs)",
5
5
  "type": "module",
6
6
  "license": "MIT",