@plot-ai/darwin-arm64 0.0.4 → 0.0.6

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": "@plot-ai/darwin-arm64",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "orchestrate coding agents against an issue tracker",
@@ -88,6 +88,7 @@ description: "merge an approved PR for plot. monitors CI, resolves conflicts, ha
88
88
  ```
89
89
 
90
90
  7. transition issue to `plot:done`:
91
+
91
92
  ```bash
92
93
  # extract issue number from PR body (Resolves #N)
93
94
  issue_number=$(gh pr view "$pr_number" --repo "$GITHUB_REPO" --json body -q '.body | capture("Resolves #(\d+)").["1"]')
@@ -67,6 +67,7 @@ description: "push branch and create/update pull request for plot. handles PR cr
67
67
  ```
68
68
 
69
69
  7. update existing PR if scope changed:
70
+
70
71
  ```bash
71
72
  gh pr edit --title "#<number>: <updated title>" --body-file /tmp/pr-body.md --repo "$GITHUB_REPO"
72
73
  ```