@agi-cli/sdk 0.1.82 → 0.1.83

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": "@agi-cli/sdk",
3
- "version": "0.1.82",
3
+ "version": "0.1.83",
4
4
  "description": "AI agent SDK for building intelligent assistants - tree-shakable and comprehensive",
5
5
  "author": "ntishxyz",
6
6
  "license": "MIT",
@@ -234,10 +234,10 @@ function isHunkAlreadyApplied(
234
234
  }
235
235
 
236
236
  const removals = hunk.lines.filter((line) => line.kind === 'remove');
237
- const additions = hunk.lines
237
+ const _additions = hunk.lines
238
238
  .filter((line) => line.kind === 'add')
239
239
  .map((line) => line.content);
240
- const contextLines = hunk.lines
240
+ const _contextLines = hunk.lines
241
241
  .filter((line) => line.kind === 'context')
242
242
  .map((line) => line.content);
243
243
  if (removals.length === 0) return false;