@kylecheng3146/agent-ops 0.1.10 → 0.1.11

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.
@@ -268,6 +268,7 @@ else {
268
268
  args,
269
269
  authorized: args.yes,
270
270
  tasks: taskService,
271
+ ...(args.taskId === undefined ? {} : { taskId: args.taskId }),
271
272
  ...(reviewSessionId === undefined
272
273
  ? {}
273
274
  : { sessionId: reviewSessionId }),
@@ -64,7 +64,6 @@ export async function collectChangeSurface(runner) {
64
64
  "diff",
65
65
  "--cached",
66
66
  "--name-only",
67
- "--full-name",
68
67
  "--no-renames",
69
68
  "--no-ext-diff",
70
69
  "--no-textconv",
@@ -73,7 +72,6 @@ export async function collectChangeSurface(runner) {
73
72
  const unstaged = await collectPaths(runner, [
74
73
  "diff",
75
74
  "--name-only",
76
- "--full-name",
77
75
  "--no-renames",
78
76
  "--no-ext-diff",
79
77
  "--no-textconv",
@@ -116,7 +114,7 @@ export async function resolveGitCommit(runner, ref) {
116
114
  }
117
115
  export async function collectBaseChangePaths(runner, base) {
118
116
  return await collectPaths(runner, [
119
- "diff", "--name-only", "--full-name", "--no-renames", "--no-ext-diff",
117
+ "diff", "--name-only", "--no-renames", "--no-ext-diff",
120
118
  "--no-textconv", "-z", `${base}...HEAD`
121
119
  ]);
122
120
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kylecheng3146/agent-ops",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Evidence-driven development loops for Codex, Claude Code, and opencode",
5
5
  "type": "module",
6
6
  "license": "MIT",