@blogic-cz/agent-tools 0.14.36 → 0.14.37

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": "@blogic-cz/agent-tools",
3
- "version": "0.14.36",
3
+ "version": "0.14.37",
4
4
  "description": "CLI tools for AI coding agent workflows — GitHub, database, Kubernetes, Azure DevOps, logs, sessions, and audit",
5
5
  "keywords": [
6
6
  "agent",
@@ -246,7 +246,7 @@ export const viewPR = Effect.fn("pr.viewPR")(function* (prNumber: number | null)
246
246
  }
247
247
  args.push(
248
248
  "--json",
249
- "number,url,title,headRefName,baseRefName,state,isDraft,mergeable,body,reviewDecision,reviewRequests",
249
+ "number,url,title,headRefName,baseRefName,state,isDraft,mergeable,body,author,reviewDecision,reviewRequests",
250
250
  );
251
251
 
252
252
  const info = yield* gh.runGhJson<PRViewInfo>(args);
@@ -19,6 +19,7 @@ export type ReviewRequest =
19
19
 
20
20
  export type PRViewInfo = PRInfo & {
21
21
  body: string;
22
+ author: { login: string; is_bot: boolean };
22
23
  reviewDecision: "APPROVED" | "CHANGES_REQUESTED" | "REVIEW_REQUIRED" | "";
23
24
  reviewRequests: ReviewRequest[];
24
25
  };